From 17b1d459687ec068dd5bd968196f8afc8660b14d Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 9 Sep 2015 22:42:31 +0200 Subject: [PATCH 001/443] Worker: New method for running background processes --- boot.php | 22 +++++++++++-- include/dbstructure.php | 14 +++++++++ include/worker.php | 68 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 101 insertions(+), 3 deletions(-) create mode 100755 include/worker.php diff --git a/boot.php b/boot.php index 7451891fef..7f3238013a 100644 --- a/boot.php +++ b/boot.php @@ -1432,8 +1432,25 @@ if(! function_exists('proc_run')) { if(! $arr['run_cmd']) return; - if(count($args) && $args[0] === 'php') + if(count($args) && $args[0] === 'php') { + $argv = $args; + array_shift($argv); + + $parameters = json_encode($argv); + $found = q("SELECT `id` FROM `workerqueue` WHERE `parameter` = '%s'", + dbesc($parameters)); + + if (!$found) + q("INSERT INTO `workerqueue` (`parameter`, `created`, `priority`) + VALUES ('%s', '%s', %d)", + dbesc($parameters), + dbesc(datetime_convert()), + intval(0)); + + // return; + $args[0] = ((x($a->config,'php_path')) && (strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php'); + } // add baseurl to args. cli scripts can't construct it $args[] = $a->get_baseurl(); @@ -1441,9 +1458,8 @@ if(! function_exists('proc_run')) { for($x = 0; $x < count($args); $x ++) $args[$x] = escapeshellarg($args[$x]); - - $cmdline = implode($args," "); + if(get_config('system','proc_windows')) proc_close(proc_open('cmd /c start /b ' . $cmdline,array(),$foo,dirname(__FILE__))); else diff --git a/include/dbstructure.php b/include/dbstructure.php index 2b1ee84fda..deb6ddf533 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -1382,6 +1382,20 @@ function db_definition() { "username" => array("username"), ) ); + $database["workerqueue"] = array( + "fields" => array( + "id" => array("type" => "int(11)", "not null" => "1", "extra" => "auto_increment", "primary" => "1"), + "parameter" => array("type" => "text", "not null" => "1"), + "priority" => array("type" => "tinyint(3) unsigned", "not null" => "1", "default" => "0"), + "created" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), + "pid" => array("type" => "int(11)", "not null" => "1", "default" => "0"), + "executed" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"), + ), + "indexes" => array( + "PRIMARY" => array("id"), + "created" => array("created"), + ) + ); return($database); } diff --git a/include/worker.php b/include/worker.php new file mode 100755 index 0000000000..e1eee388c9 --- /dev/null +++ b/include/worker.php @@ -0,0 +1,68 @@ +#!/usr/bin/php += $threads) + return; + +while ($r = q("SELECT * FROM `workerqueue` WHERE `executed` = '0000-00-00 00:00:00' ORDER BY `created` LIMIT 1")) { + q("UPDATE `workerqueue` SET `executed` = '%s', `pid` = %d WHERE `id` = %d", + dbesc(datetime_convert()), + intval(getmypid()), + intval($r[0]["id"])); + + $argv = json_decode($r[0]["parameter"]); + + $argc = count($argv); + + // To-Do: Check for existance + require_once(basename($argv[0])); + + $funcname=str_replace(".php", "", basename($argv[0]))."_run"; + + if (function_exists($funcname)) { + logger("Process ".getmypid().": ".$funcname." ".$r[0]["parameter"]); + //$funcname($argv, $argc); + sleep(10); + logger("Process ".getmypid().": ".$funcname." - done"); + + q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($r[0]["id"])); + } +} +?> From d3a6ebfe7e7ba2fca35968c0ffc602f332a7c4a1 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 10 Sep 2015 23:10:31 +0200 Subject: [PATCH 002/443] The worker is now working --- boot.php | 27 +++++++++++++++------------ include/onepoll.php | 2 +- include/poller.php | 19 ++----------------- include/socgraph.php | 6 ++++-- include/worker.php | 31 +++++++++++++++++++++++++++---- 5 files changed, 49 insertions(+), 36 deletions(-) diff --git a/boot.php b/boot.php index 7f3238013a..b3b9265219 100644 --- a/boot.php +++ b/boot.php @@ -1433,21 +1433,24 @@ if(! function_exists('proc_run')) { return; if(count($args) && $args[0] === 'php') { - $argv = $args; - array_shift($argv); - $parameters = json_encode($argv); - $found = q("SELECT `id` FROM `workerqueue` WHERE `parameter` = '%s'", - dbesc($parameters)); + if (get_config("system", "worker")) { + $argv = $args; + array_shift($argv); - if (!$found) - q("INSERT INTO `workerqueue` (`parameter`, `created`, `priority`) - VALUES ('%s', '%s', %d)", - dbesc($parameters), - dbesc(datetime_convert()), - intval(0)); + $parameters = json_encode($argv); + $found = q("SELECT `id` FROM `workerqueue` WHERE `parameter` = '%s'", + dbesc($parameters)); - // return; + if (!$found) + q("INSERT INTO `workerqueue` (`parameter`, `created`, `priority`) + VALUES ('%s', '%s', %d)", + dbesc($parameters), + dbesc(datetime_convert()), + intval(0)); + + return; + } $args[0] = ((x($a->config,'php_path')) && (strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php'); } diff --git a/include/onepoll.php b/include/onepoll.php index 1fc861afa2..e8fc97b21e 100644 --- a/include/onepoll.php +++ b/include/onepoll.php @@ -360,7 +360,7 @@ function onepoll_run(&$argv, &$argc){ ); logger("Mail: Connected to " . $mailconf[0]['user']); } else - logger("Mail: Connection error ".$mailconf[0]['user']." ".print_r(imap_errors())); + logger("Mail: Connection error ".$mailconf[0]['user']." ".print_r(imap_errors(), true)); } if($mbox) { diff --git a/include/poller.php b/include/poller.php index 28dc0c0cde..e47ab3782a 100644 --- a/include/poller.php +++ b/include/poller.php @@ -75,22 +75,6 @@ function poller_run(&$argv, &$argc){ logger('poller: start'); - // run queue delivery process in the background - - proc_run('php',"include/queue.php"); - - // run diaspora photo queue process in the background - - proc_run('php',"include/dsprphotoq.php"); - - // run the process to discover global contacts in the background - - proc_run('php',"include/discover_poco.php"); - - // run the process to update locally stored global contacts in the background - - proc_run('php',"include/discover_poco.php", "checkcontact"); - // expire any expired accounts q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0 @@ -119,7 +103,8 @@ function poller_run(&$argv, &$argc){ check_conversations(false); // Follow your friends from your legacy OStatus account - ostatus_check_follow_friends(); + // Doesn't work + // ostatus_check_follow_friends(); // update nodeinfo data nodeinfo_cron(); diff --git a/include/socgraph.php b/include/socgraph.php index 97daae1d2e..6e2b6ea158 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -1338,8 +1338,10 @@ function poco_discover($complete = false) { q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"])); if (!$complete AND (--$no_of_queries == 0)) break; - } else // If the server hadn't replied correctly, then force a sanity check - poco_check_server($server["url"], $server["network"], true); + // If the server hadn't replied correctly, then force a sanity check + } elseif (!poco_check_server($server["url"], $server["network"], true)) + q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"])); + } } diff --git a/include/worker.php b/include/worker.php index e1eee388c9..c1d9202baf 100755 --- a/include/worker.php +++ b/include/worker.php @@ -26,6 +26,25 @@ if(is_null($db)) { unset($db_host, $db_user, $db_pass, $db_data); }; +// run queue delivery process in the background + +proc_run('php',"include/queue.php"); + +// run diaspora photo queue process in the background + +proc_run('php',"include/dsprphotoq.php"); + +// run the process to discover global contacts in the background + +proc_run('php',"include/discover_poco.php"); + +// run the process to update locally stored global contacts in the background + +proc_run('php',"include/discover_poco.php", "checkcontact"); + +// When everything else is done ... +proc_run("php","include/poller.php"); + // Cleaning killed processes $r = q("SELECT DISTINCT(`pid`) FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'"); foreach($r AS $pid) @@ -36,9 +55,12 @@ foreach($r AS $pid) // Checking number of workers $workers = q("SELECT COUNT(*) AS `workers` FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'"); -$threads = 3; +$queues = intval(get_config("system", "worker_queues")); -if ($workers[0]["workers"] >= $threads) +if ($queues == 0) + $queues = 4; + +if ($workers[0]["workers"] >= $queues) return; while ($r = q("SELECT * FROM `workerqueue` WHERE `executed` = '0000-00-00 00:00:00' ORDER BY `created` LIMIT 1")) { @@ -58,11 +80,12 @@ while ($r = q("SELECT * FROM `workerqueue` WHERE `executed` = '0000-00-00 00:00: if (function_exists($funcname)) { logger("Process ".getmypid().": ".$funcname." ".$r[0]["parameter"]); - //$funcname($argv, $argc); - sleep(10); + $funcname($argv, $argc); + //sleep(10); logger("Process ".getmypid().": ".$funcname." - done"); q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($r[0]["id"])); } } + ?> From ff739b0a2320350e27cb5bbb9d915d81734363e3 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 10 Sep 2015 23:32:56 +0200 Subject: [PATCH 003/443] Just changed some script names --- include/cron.php | 308 +++++++++++++++++++++++++++++++++++++++++++++ include/poller.php | 299 +++++++------------------------------------ include/worker.php | 91 -------------- 3 files changed, 352 insertions(+), 346 deletions(-) create mode 100644 include/cron.php delete mode 100755 include/worker.php diff --git a/include/cron.php b/include/cron.php new file mode 100644 index 0000000000..ea7fd2c606 --- /dev/null +++ b/include/cron.php @@ -0,0 +1,308 @@ + $maxsysload) { + logger('system: load ' . $load[0] . ' too high. cron deferred to next scheduled run.'); + return; + } + } + + $lockpath = get_lockpath(); + if ($lockpath != '') { + $pidfile = new pidfile($lockpath, 'cron'); + if($pidfile->is_already_running()) { + logger("cron: Already running"); + if ($pidfile->running_time() > 9*60) { + $pidfile->kill(); + logger("cron: killed stale process"); + // Calling a new instance + proc_run('php','include/cron.php'); + } + exit; + } + } + + + + $a->set_baseurl(get_config('system','url')); + + load_hooks(); + + logger('cron: start'); + + // expire any expired accounts + + q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0 + AND `account_expires_on` != '0000-00-00 00:00:00' + AND `account_expires_on` < UTC_TIMESTAMP() "); + + // delete user and contact records for recently removed accounts + + $r = q("SELECT * FROM `user` WHERE `account_removed` = 1 AND `account_expires_on` < UTC_TIMESTAMP() - INTERVAL 3 DAY"); + if ($r) { + foreach($r as $user) { + q("DELETE FROM `contact` WHERE `uid` = %d", intval($user['uid'])); + q("DELETE FROM `user` WHERE `uid` = %d", intval($user['uid'])); + } + } + + $abandon_days = intval(get_config('system','account_abandon_days')); + if($abandon_days < 1) + $abandon_days = 0; + + // Check OStatus conversations + // Check only conversations with mentions (for a longer time) + check_conversations(true); + + // Check every conversation + check_conversations(false); + + // Follow your friends from your legacy OStatus account + // Doesn't work + // ostatus_check_follow_friends(); + + // update nodeinfo data + nodeinfo_cron(); + + // To-Do: Regenerate usage statistics + // q("ANALYZE TABLE `item`"); + + // once daily run birthday_updates and then expire in background + + $d1 = get_config('system','last_expire_day'); + $d2 = intval(datetime_convert('UTC','UTC','now','d')); + + if($d2 != intval($d1)) { + + update_contact_birthdays(); + + update_suggestions(); + + set_config('system','last_expire_day',$d2); + proc_run('php','include/expire.php'); + } + + $last = get_config('system','cache_last_cleared'); + + if($last) { + $next = $last + (3600); // Once per hour + $clear_cache = ($next <= time()); + } else + $clear_cache = true; + + if ($clear_cache) { + // clear old cache + Cache::clear(); + + // clear old item cache files + clear_cache(); + + // clear cache for photos + clear_cache($a->get_basepath(), $a->get_basepath()."/photo"); + + // clear smarty cache + clear_cache($a->get_basepath()."/view/smarty3/compiled", $a->get_basepath()."/view/smarty3/compiled"); + + // clear cache for image proxy + if (!get_config("system", "proxy_disabled")) { + clear_cache($a->get_basepath(), $a->get_basepath()."/proxy"); + + $cachetime = get_config('system','proxy_cache_time'); + if (!$cachetime) $cachetime = PROXY_DEFAULT_TIME; + + q('DELETE FROM `photo` WHERE `uid` = 0 AND `resource-id` LIKE "pic:%%" AND `created` < NOW() - INTERVAL %d SECOND', $cachetime); + } + + set_config('system','cache_last_cleared', time()); + } + + $manual_id = 0; + $generation = 0; + $force = false; + $restart = false; + + if(($argc > 1) && ($argv[1] == 'force')) + $force = true; + + if(($argc > 1) && ($argv[1] == 'restart')) { + $restart = true; + $generation = intval($argv[2]); + if(! $generation) + killme(); + } + + if(($argc > 1) && intval($argv[1])) { + $manual_id = intval($argv[1]); + $force = true; + } + + $interval = intval(get_config('system','poll_interval')); + if(! $interval) + $interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval'))); + + $sql_extra = (($manual_id) ? " AND `id` = $manual_id " : ""); + + reload_plugins(); + + $d = datetime_convert(); + + if(! $restart) + proc_run('php','include/cronhooks.php'); + + // Only poll from those with suitable relationships, + // and which have a polling address and ignore Diaspora since + // we are unable to match those posts with a Diaspora GUID and prevent duplicates. + + $abandon_sql = (($abandon_days) + ? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days)) + : '' + ); + + $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()", + intval(CONTACT_IS_SHARING), + intval(CONTACT_IS_FRIEND), + dbesc(NETWORK_DFRN), + dbesc(NETWORK_ZOT), + dbesc(NETWORK_OSTATUS), + dbesc(NETWORK_FEED), + dbesc(NETWORK_MAIL), + dbesc(NETWORK_MAIL2) + ); + + if(! count($contacts)) { + return; + } + + foreach($contacts as $c) { + + $res = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1", + intval($c['id']) + ); + + if((! $res) || (! count($res))) + continue; + + foreach($res as $contact) { + + $xml = false; + + if($manual_id) + $contact['last-update'] = '0000-00-00 00:00:00'; + + if(in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS))) + $contact['priority'] = 2; + + if($contact['subhub'] AND in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS))) { + // We should be getting everything via a hub. But just to be sure, let's check once a day. + // (You can make this more or less frequent if desired by setting 'pushpoll_frequency' appropriately) + // This also lets us update our subscription to the hub, and add or replace hubs in case it + // changed. We will only update hubs once a day, regardless of 'pushpoll_frequency'. + + $poll_interval = get_config('system','pushpoll_frequency'); + $contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3); + } + + if($contact['priority'] AND !$force) { + + $update = false; + + $t = $contact['last-update']; + + /** + * Based on $contact['priority'], should we poll this site now? Or later? + */ + + switch ($contact['priority']) { + case 5: + if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 month")) + $update = true; + break; + case 4: + if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 week")) + $update = true; + break; + case 3: + if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day")) + $update = true; + break; + case 2: + if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 12 hour")) + $update = true; + break; + case 1: + default: + if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 hour")) + $update = true; + break; + } + if(!$update) + continue; + } + + logger("Polling ".$contact["network"]." ".$contact["id"]." ".$contact["nick"]." ".$contact["name"]); + + proc_run('php','include/onepoll.php',$contact['id']); + + if($interval) + @time_sleep_until(microtime(true) + (float) $interval); + } + } + + logger('cron: end'); + + return; +} + +if (array_search(__file__,get_included_files())===0){ + cron_run($_SERVER["argv"],$_SERVER["argc"]); + killme(); +} diff --git a/include/poller.php b/include/poller.php index e47ab3782a..05e936936c 100644 --- a/include/poller.php +++ b/include/poller.php @@ -12,7 +12,6 @@ if (!file_exists("boot.php") AND (sizeof($_SERVER["argv"]) != 0)) { require_once("boot.php"); - function poller_run(&$argv, &$argc){ global $a, $db; @@ -21,288 +20,78 @@ function poller_run(&$argv, &$argc){ } if(is_null($db)) { - @include(".htconfig.php"); - require_once("include/dba.php"); - $db = new dba($db_host, $db_user, $db_pass, $db_data); - unset($db_host, $db_user, $db_pass, $db_data); - }; + @include(".htconfig.php"); + require_once("include/dba.php"); + $db = new dba($db_host, $db_user, $db_pass, $db_data); + unset($db_host, $db_user, $db_pass, $db_data); + }; + // run queue delivery process in the background - require_once('include/session.php'); - require_once('include/datetime.php'); - require_once('library/simplepie/simplepie.inc'); - require_once('include/items.php'); - require_once('include/Contact.php'); - require_once('include/email.php'); - require_once('include/socgraph.php'); - require_once('include/pidfile.php'); - require_once('mod/nodeinfo.php'); + proc_run('php',"include/queue.php"); - load_config('config'); - load_config('system'); + // run diaspora photo queue process in the background - $maxsysload = intval(get_config('system','maxloadavg')); - if($maxsysload < 1) - $maxsysload = 50; - if(function_exists('sys_getloadavg')) { - $load = sys_getloadavg(); - if(intval($load[0]) > $maxsysload) { - logger('system: load ' . $load[0] . ' too high. Poller deferred to next scheduled run.'); - return; - } - } + proc_run('php',"include/dsprphotoq.php"); - $lockpath = get_lockpath(); - if ($lockpath != '') { - $pidfile = new pidfile($lockpath, 'poller'); - if($pidfile->is_already_running()) { - logger("poller: Already running"); - if ($pidfile->running_time() > 9*60) { - $pidfile->kill(); - logger("poller: killed stale process"); - // Calling a new instance - proc_run('php','include/poller.php'); - } - exit; - } - } + // run the process to discover global contacts in the background + proc_run('php',"include/discover_poco.php"); + // run the process to update locally stored global contacts in the background - $a->set_baseurl(get_config('system','url')); + proc_run('php',"include/discover_poco.php", "checkcontact"); - load_hooks(); + // When everything else is done ... + proc_run("php","include/cron.php"); - logger('poller: start'); + // Cleaning killed processes + $r = q("SELECT DISTINCT(`pid`) FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'"); + foreach($r AS $pid) + if (!posix_kill($pid["pid"], 0)) + q("UPDATE `workerqueue` SET `executed` = '0000-00-00 00:00:00', `pid` = 0 WHERE `pid` = %d", + intval($pid["pid"])); - // expire any expired accounts + // Checking number of workers + $workers = q("SELECT COUNT(*) AS `workers` FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'"); - q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0 - AND `account_expires_on` != '0000-00-00 00:00:00' - AND `account_expires_on` < UTC_TIMESTAMP() "); + $queues = intval(get_config("system", "worker_queues")); - // delete user and contact records for recently removed accounts + if ($queues == 0) + $queues = 4; - $r = q("SELECT * FROM `user` WHERE `account_removed` = 1 AND `account_expires_on` < UTC_TIMESTAMP() - INTERVAL 3 DAY"); - if ($r) { - foreach($r as $user) { - q("DELETE FROM `contact` WHERE `uid` = %d", intval($user['uid'])); - q("DELETE FROM `user` WHERE `uid` = %d", intval($user['uid'])); - } - } - - $abandon_days = intval(get_config('system','account_abandon_days')); - if($abandon_days < 1) - $abandon_days = 0; - - // Check OStatus conversations - // Check only conversations with mentions (for a longer time) - check_conversations(true); - - // Check every conversation - check_conversations(false); - - // Follow your friends from your legacy OStatus account - // Doesn't work - // ostatus_check_follow_friends(); - - // update nodeinfo data - nodeinfo_cron(); - - // To-Do: Regenerate usage statistics - // q("ANALYZE TABLE `item`"); - - // once daily run birthday_updates and then expire in background - - $d1 = get_config('system','last_expire_day'); - $d2 = intval(datetime_convert('UTC','UTC','now','d')); - - if($d2 != intval($d1)) { - - update_contact_birthdays(); - - update_suggestions(); - - set_config('system','last_expire_day',$d2); - proc_run('php','include/expire.php'); - } - - $last = get_config('system','cache_last_cleared'); - - if($last) { - $next = $last + (3600); // Once per hour - $clear_cache = ($next <= time()); - } else - $clear_cache = true; - - if ($clear_cache) { - // clear old cache - Cache::clear(); - - // clear old item cache files - clear_cache(); - - // clear cache for photos - clear_cache($a->get_basepath(), $a->get_basepath()."/photo"); - - // clear smarty cache - clear_cache($a->get_basepath()."/view/smarty3/compiled", $a->get_basepath()."/view/smarty3/compiled"); - - // clear cache for image proxy - if (!get_config("system", "proxy_disabled")) { - clear_cache($a->get_basepath(), $a->get_basepath()."/proxy"); - - $cachetime = get_config('system','proxy_cache_time'); - if (!$cachetime) $cachetime = PROXY_DEFAULT_TIME; - - q('DELETE FROM `photo` WHERE `uid` = 0 AND `resource-id` LIKE "pic:%%" AND `created` < NOW() - INTERVAL %d SECOND', $cachetime); - } - - set_config('system','cache_last_cleared', time()); - } - - $manual_id = 0; - $generation = 0; - $force = false; - $restart = false; - - if(($argc > 1) && ($argv[1] == 'force')) - $force = true; - - if(($argc > 1) && ($argv[1] == 'restart')) { - $restart = true; - $generation = intval($argv[2]); - if(! $generation) - killme(); - } - - if(($argc > 1) && intval($argv[1])) { - $manual_id = intval($argv[1]); - $force = true; - } - - $interval = intval(get_config('system','poll_interval')); - if(! $interval) - $interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval'))); - - $sql_extra = (($manual_id) ? " AND `id` = $manual_id " : ""); - - reload_plugins(); - - $d = datetime_convert(); - - if(! $restart) - proc_run('php','include/cronhooks.php'); - - // Only poll from those with suitable relationships, - // and which have a polling address and ignore Diaspora since - // we are unable to match those posts with a Diaspora GUID and prevent duplicates. - - $abandon_sql = (($abandon_days) - ? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days)) - : '' - ); - - $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()", - intval(CONTACT_IS_SHARING), - intval(CONTACT_IS_FRIEND), - dbesc(NETWORK_DFRN), - dbesc(NETWORK_ZOT), - dbesc(NETWORK_OSTATUS), - dbesc(NETWORK_FEED), - dbesc(NETWORK_MAIL), - dbesc(NETWORK_MAIL2) - ); - - if(! count($contacts)) { + if ($workers[0]["workers"] >= $queues) return; - } - foreach($contacts as $c) { + while ($r = q("SELECT * FROM `workerqueue` WHERE `executed` = '0000-00-00 00:00:00' ORDER BY `created` LIMIT 1")) { + q("UPDATE `workerqueue` SET `executed` = '%s', `pid` = %d WHERE `id` = %d", + dbesc(datetime_convert()), + intval(getmypid()), + intval($r[0]["id"])); - $res = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1", - intval($c['id']) - ); + $argv = json_decode($r[0]["parameter"]); - if((! $res) || (! count($res))) - continue; + $argc = count($argv); - foreach($res as $contact) { + // To-Do: Check for existance + require_once(basename($argv[0])); - $xml = false; + $funcname=str_replace(".php", "", basename($argv[0]))."_run"; - if($manual_id) - $contact['last-update'] = '0000-00-00 00:00:00'; + if (function_exists($funcname)) { + logger("Process ".getmypid().": ".$funcname." ".$r[0]["parameter"]); + $funcname($argv, $argc); + //sleep(10); + logger("Process ".getmypid().": ".$funcname." - done"); - if(in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS))) - $contact['priority'] = 2; - - if($contact['subhub'] AND in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS))) { - // We should be getting everything via a hub. But just to be sure, let's check once a day. - // (You can make this more or less frequent if desired by setting 'pushpoll_frequency' appropriately) - // This also lets us update our subscription to the hub, and add or replace hubs in case it - // changed. We will only update hubs once a day, regardless of 'pushpoll_frequency'. - - $poll_interval = get_config('system','pushpoll_frequency'); - $contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3); - } - - if($contact['priority'] AND !$force) { - - $update = false; - - $t = $contact['last-update']; - - /** - * Based on $contact['priority'], should we poll this site now? Or later? - */ - - switch ($contact['priority']) { - case 5: - if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 month")) - $update = true; - break; - case 4: - if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 week")) - $update = true; - break; - case 3: - if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day")) - $update = true; - break; - case 2: - if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 12 hour")) - $update = true; - break; - case 1: - default: - if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 hour")) - $update = true; - break; - } - if(!$update) - continue; - } - - logger("Polling ".$contact["network"]." ".$contact["id"]." ".$contact["nick"]." ".$contact["name"]); - - proc_run('php','include/onepoll.php',$contact['id']); - - if($interval) - @time_sleep_until(microtime(true) + (float) $interval); + q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($r[0]["id"])); } } - logger('poller: end'); - - return; } if (array_search(__file__,get_included_files())===0){ poller_run($_SERVER["argv"],$_SERVER["argc"]); killme(); } +?> diff --git a/include/worker.php b/include/worker.php deleted file mode 100755 index c1d9202baf..0000000000 --- a/include/worker.php +++ /dev/null @@ -1,91 +0,0 @@ -#!/usr/bin/php -= $queues) - return; - -while ($r = q("SELECT * FROM `workerqueue` WHERE `executed` = '0000-00-00 00:00:00' ORDER BY `created` LIMIT 1")) { - q("UPDATE `workerqueue` SET `executed` = '%s', `pid` = %d WHERE `id` = %d", - dbesc(datetime_convert()), - intval(getmypid()), - intval($r[0]["id"])); - - $argv = json_decode($r[0]["parameter"]); - - $argc = count($argv); - - // To-Do: Check for existance - require_once(basename($argv[0])); - - $funcname=str_replace(".php", "", basename($argv[0]))."_run"; - - if (function_exists($funcname)) { - logger("Process ".getmypid().": ".$funcname." ".$r[0]["parameter"]); - $funcname($argv, $argc); - //sleep(10); - logger("Process ".getmypid().": ".$funcname." - done"); - - q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($r[0]["id"])); - } -} - -?> From 32e8f3468d17f9f84b308aa903f7efa1fa22441f Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 11 Sep 2015 21:35:58 +0200 Subject: [PATCH 004/443] Moved some functionality back to the cron. Speed up things --- include/cron.php | 32 ++++++++++++++++++++++++++++++++ include/follow.php | 8 +++++--- include/onepoll.php | 14 ++++++++++++-- include/poller.php | 20 ++------------------ include/queue.php | 23 +++++++++++++++-------- include/socgraph.php | 16 +++++++++++----- 6 files changed, 77 insertions(+), 36 deletions(-) diff --git a/include/cron.php b/include/cron.php index ea7fd2c606..712befb1ff 100644 --- a/include/cron.php +++ b/include/cron.php @@ -52,6 +52,20 @@ function cron_run(&$argv, &$argc){ } } + $last = get_config('system','last_cron'); + + $poll_interval = intval(get_config('system','cron_interval')); + if(! $poll_interval) + $poll_interval = 10; + + if($last) { + $next = $last + ($poll_interval * 60); + if($next > time()) { + logger('cron intervall not reached'); + return; + } + } + $lockpath = get_lockpath(); if ($lockpath != '') { $pidfile = new pidfile($lockpath, 'cron'); @@ -75,6 +89,22 @@ function cron_run(&$argv, &$argc){ logger('cron: start'); + // run queue delivery process in the background + + proc_run('php',"include/queue.php"); + + // run diaspora photo queue process in the background + + proc_run('php',"include/dsprphotoq.php"); + + // run the process to discover global contacts in the background + + proc_run('php',"include/discover_poco.php"); + + // run the process to update locally stored global contacts in the background + + proc_run('php',"include/discover_poco.php", "checkcontact"); + // expire any expired accounts q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0 @@ -299,6 +329,8 @@ function cron_run(&$argv, &$argc){ logger('cron: end'); + set_config('system','last_cron', time()); + return; } diff --git a/include/follow.php b/include/follow.php index 217b9d07b7..ca0228cc0f 100644 --- a/include/follow.php +++ b/include/follow.php @@ -9,13 +9,13 @@ function update_contact($id) { $r = q("SELECT `url`, `nurl`, `addr`, `alias`, `batch`, `notify`, `poll`, `poco`, `network` FROM `contact` WHERE `id` = %d", intval($id)); if (!$r) - return; + return false; $ret = probe_url($r[0]["url"]); // If probe_url fails the network code will be different if ($ret["network"] != $r[0]["network"]) - return; + return false; $update = false; @@ -29,7 +29,7 @@ function update_contact($id) { } if (!$update) - return; + return true; q("UPDATE `contact` SET `url` = '%s', `nurl` = '%s', `addr` = '%s', `alias` = '%s', `batch` = '%s', `notify` = '%s', `poll` = '%s', `poco` = '%s' WHERE `id` = %d", dbesc($ret['url']), @@ -42,6 +42,8 @@ function update_contact($id) { dbesc($ret['poco']), intval($id) ); + + return true; } // diff --git a/include/onepoll.php b/include/onepoll.php index e8fc97b21e..0e58a776ca 100644 --- a/include/onepoll.php +++ b/include/onepoll.php @@ -168,8 +168,18 @@ function onepoll_run(&$argv, &$argc){ ); // Update the contact entry - if(($contact['network'] === NETWORK_OSTATUS) || ($contact['network'] === NETWORK_DIASPORA) || ($contact['network'] === NETWORK_DFRN)) - update_contact($contact["id"]); + if(($contact['network'] === NETWORK_OSTATUS) || ($contact['network'] === NETWORK_DIASPORA) || ($contact['network'] === NETWORK_DFRN)) { + if (!poco_reachable($contact['url'])) { + logger("Skipping probably dead contact ".$contact['url']); + return; + } + + if (!update_contact($contact["id"])) { + mark_for_death($contact); + return; + } else + unmark_for_death($contact); + } if($contact['network'] === NETWORK_DFRN) { diff --git a/include/poller.php b/include/poller.php index 05e936936c..74d23a5482 100644 --- a/include/poller.php +++ b/include/poller.php @@ -26,23 +26,7 @@ function poller_run(&$argv, &$argc){ unset($db_host, $db_user, $db_pass, $db_data); }; - // run queue delivery process in the background - - proc_run('php',"include/queue.php"); - - // run diaspora photo queue process in the background - - proc_run('php',"include/dsprphotoq.php"); - - // run the process to discover global contacts in the background - - proc_run('php',"include/discover_poco.php"); - - // run the process to update locally stored global contacts in the background - - proc_run('php',"include/discover_poco.php", "checkcontact"); - - // When everything else is done ... + // Run the cron job that calls all other jobs proc_run("php","include/cron.php"); // Cleaning killed processes @@ -81,7 +65,7 @@ function poller_run(&$argv, &$argc){ if (function_exists($funcname)) { logger("Process ".getmypid().": ".$funcname." ".$r[0]["parameter"]); $funcname($argv, $argc); - //sleep(10); + logger("Process ".getmypid().": ".$funcname." - done"); q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($r[0]["id"])); diff --git a/include/queue.php b/include/queue.php index 0edd64fdb1..3f6686ec6e 100644 --- a/include/queue.php +++ b/include/queue.php @@ -22,6 +22,7 @@ function queue_run(&$argv, &$argc){ require_once('include/items.php'); require_once('include/bbcode.php'); require_once('include/pidfile.php'); + require_once('include/socgraph.php'); load_config('config'); load_config('system'); @@ -88,7 +89,7 @@ function queue_run(&$argv, &$argc){ else { // For the first 12 hours we'll try to deliver every 15 minutes - // After that, we'll only attempt delivery once per hour. + // After that, we'll only attempt delivery once per hour. $r = q("SELECT `id` FROM `queue` WHERE (( `created` > UTC_TIMESTAMP() - INTERVAL 12 HOUR && `last` < UTC_TIMESTAMP() - INTERVAL 15 MINUTE ) OR ( `last` < UTC_TIMESTAMP() - INTERVAL 1 HOUR ))"); } @@ -107,7 +108,7 @@ function queue_run(&$argv, &$argc){ foreach($r as $q_item) { - // queue_predeliver hooks may have changed the queue db details, + // queue_predeliver hooks may have changed the queue db details, // so check again if this entry still needs processing if($queue_id) { @@ -132,12 +133,18 @@ function queue_run(&$argv, &$argc){ continue; } if(in_array($c[0]['notify'],$deadguys)) { - logger('queue: skipping known dead url: ' . $c[0]['notify']); - update_queue_time($q_item['id']); - continue; + logger('queue: skipping known dead url: ' . $c[0]['notify']); + update_queue_time($q_item['id']); + continue; } - $u = q("SELECT `user`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey` + if (!poco_reachable($c[0]['url'])) { + logger('queue: skipping probably dead url: ' . $c[0]['url']); + update_queue_time($q_item['id']); + continue; + } + + $u = q("SELECT `user`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey` FROM `user` WHERE `uid` = %d LIMIT 1", intval($c[0]['uid']) ); @@ -194,9 +201,9 @@ function queue_run(&$argv, &$argc){ call_hooks('queue_deliver', $a, $params); if($params['result']) - remove_queue_item($q_item['id']); + remove_queue_item($q_item['id']); else - update_queue_time($q_item['id']); + update_queue_time($q_item['id']); break; diff --git a/include/socgraph.php b/include/socgraph.php index 6e2b6ea158..1a92a72566 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -234,7 +234,7 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca } if ((($network == "") OR ($name == "") OR ($profile_photo == "") OR ($server_url == "") OR $alternate) - AND poco_reachable($profile_url, $server_url, $network, true)) { + AND poco_reachable($profile_url, $server_url, $network, false)) { $data = probe_url($profile_url); $orig_profile = $profile_url; @@ -1296,8 +1296,11 @@ function poco_discover($complete = false) { if ($r) foreach ($r AS $server) { - if (!poco_check_server($server["url"], $server["network"])) + if (!poco_check_server($server["url"], $server["network"])) { + // The server is not reachable? Okay, then we will try it later + q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"])); continue; + } // Fetch all users from the other server $url = $server["poco"]."/?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation"; @@ -1338,10 +1341,13 @@ function poco_discover($complete = false) { q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"])); if (!$complete AND (--$no_of_queries == 0)) break; - // If the server hadn't replied correctly, then force a sanity check - } elseif (!poco_check_server($server["url"], $server["network"], true)) - q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"])); + } else { + // If the server hadn't replied correctly, then force a sanity check + poco_check_server($server["url"], $server["network"], true); + // If we couldn't reach the server, we will try it some time later + q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"])); + } } } From ce9b4e868b68269277a88bd34e9b05244366e9ab Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 11 Sep 2015 21:56:37 +0200 Subject: [PATCH 005/443] Database update for worker --- boot.php | 2 +- database.sql | 15 ++++++++++++++- update.php | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/boot.php b/boot.php index b3b9265219..3bbbef3c96 100644 --- a/boot.php +++ b/boot.php @@ -19,7 +19,7 @@ define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Lily of the valley'); define ( 'FRIENDICA_VERSION', '3.4.1' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); -define ( 'DB_UPDATE_VERSION', 1188 ); +define ( 'DB_UPDATE_VERSION', 1189 ); define ( 'EOL', "
\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); diff --git a/database.sql b/database.sql index 76df6aec19..a6eb71ef3b 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ -- Friendica 3.4.1 (Lily of the valley) --- DB_UPDATE_VERSION 1188 +-- DB_UPDATE_VERSION 1189 -- ------------------------------------------ @@ -1020,3 +1020,16 @@ CREATE TABLE IF NOT EXISTS `userd` ( INDEX `username` (`username`) ) DEFAULT CHARSET=utf8; +-- +-- TABLE workerqueue +-- +CREATE TABLE IF NOT EXISTS `workerqueue` ( + `id` int(11) NOT NULL auto_increment PRIMARY KEY, + `parameter` text NOT NULL, + `priority` tinyint(3) unsigned NOT NULL DEFAULT 0, + `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', + INDEX `created` (`created`) +) DEFAULT CHARSET=utf8; + diff --git a/update.php b/update.php index 761da7273d..06aab577a3 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ Date: Sat, 12 Sep 2015 17:51:27 +0200 Subject: [PATCH 006/443] Fork as many processes as possible from the start on. --- boot.php | 20 +++++++++++++++++++- include/poller.php | 21 +++++++++++++-------- 2 files changed, 32 insertions(+), 9 deletions(-) diff --git a/boot.php b/boot.php index 3bbbef3c96..3116bb94b9 100644 --- a/boot.php +++ b/boot.php @@ -1449,7 +1449,25 @@ if(! function_exists('proc_run')) { dbesc(datetime_convert()), intval(0)); - return; + // Should we quit and wait for the poller to be called as a cronjob? + if (get_config("system", "worker_dont_fork")) + return; + + // Checking number of workers + $workers = q("SELECT COUNT(*) AS `workers` FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'"); + + // Get number of allowed number of worker threads + $queues = intval(get_config("system", "worker_queues")); + + if ($queues == 0) + $queues = 4; + + // If there are already enough workers running, don't fork another one + if ($workers[0]["workers"] >= $queues) + return; + + // Now call the poller to execute the jobs that we just added to the queue + $args = array("php", "include/poller.php", "no_cron"); } $args[0] = ((x($a->config,'php_path')) && (strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php'); diff --git a/include/poller.php b/include/poller.php index 74d23a5482..bdf6ba84e9 100644 --- a/include/poller.php +++ b/include/poller.php @@ -26,15 +26,20 @@ function poller_run(&$argv, &$argc){ unset($db_host, $db_user, $db_pass, $db_data); }; - // Run the cron job that calls all other jobs - proc_run("php","include/cron.php"); + if(($argc <= 1) OR ($argv[1] != "no_cron")) { + // Run the cron job that calls all other jobs + proc_run("php","include/cron.php"); - // Cleaning killed processes - $r = q("SELECT DISTINCT(`pid`) FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'"); - foreach($r AS $pid) - if (!posix_kill($pid["pid"], 0)) - q("UPDATE `workerqueue` SET `executed` = '0000-00-00 00:00:00', `pid` = 0 WHERE `pid` = %d", - intval($pid["pid"])); + // Cleaning dead processes + $r = q("SELECT DISTINCT(`pid`) FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'"); + foreach($r AS $pid) + if (!posix_kill($pid["pid"], 0)) + q("UPDATE `workerqueue` SET `executed` = '0000-00-00 00:00:00', `pid` = 0 WHERE `pid` = %d", + intval($pid["pid"])); + + } else + // Sleep two seconds before checking for running processes to avoid having too many workers + sleep(2); // Checking number of workers $workers = q("SELECT COUNT(*) AS `workers` FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'"); From 7edce8e266259da095c181033ddfab9d259a7304 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 12 Sep 2015 18:08:03 +0200 Subject: [PATCH 007/443] Don't use a delivery interval when using the worker --- include/cron.php | 4 ++++ include/notifier.php | 4 ++++ include/poller.php | 2 +- include/queue.php | 4 ++++ 4 files changed, 13 insertions(+), 1 deletion(-) diff --git a/include/cron.php b/include/cron.php index 712befb1ff..0c9d6baa58 100644 --- a/include/cron.php +++ b/include/cron.php @@ -215,6 +215,10 @@ function cron_run(&$argv, &$argc){ if(! $interval) $interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval'))); + // If we are using the worker we don't need a delivery interval + if (get_config("system", "worker")) + $interval = false; + $sql_extra = (($manual_id) ? " AND `id` = $manual_id " : ""); reload_plugins(); diff --git a/include/notifier.php b/include/notifier.php index 002b3c8d74..593933b326 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -615,6 +615,10 @@ function notifier_run(&$argv, &$argc){ $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")) + $interval = false; + // delivery loop if(count($r)) { diff --git a/include/poller.php b/include/poller.php index bdf6ba84e9..053880bc59 100644 --- a/include/poller.php +++ b/include/poller.php @@ -39,7 +39,7 @@ function poller_run(&$argv, &$argc){ } else // Sleep two seconds before checking for running processes to avoid having too many workers - sleep(2); + sleep(4); // Checking number of workers $workers = q("SELECT COUNT(*) AS `workers` FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'"); diff --git a/include/queue.php b/include/queue.php index 3f6686ec6e..cb5fe28ad9 100644 --- a/include/queue.php +++ b/include/queue.php @@ -60,6 +60,10 @@ function queue_run(&$argv, &$argc){ $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")) + $interval = false; + $r = q("select * from deliverq where 1"); if($r) { foreach($r as $rr) { From 12659fc3a11b27ffe0647a1f73f5b4b23d9757ae Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 12 Sep 2015 20:22:58 +0200 Subject: [PATCH 008/443] Let the cronhook be called different from the cron job. --- include/cron.php | 7 ++----- include/cronhooks.php | 36 ++++++++++++++++++++++++++---------- include/poller.php | 3 +++ 3 files changed, 31 insertions(+), 15 deletions(-) diff --git a/include/cron.php b/include/cron.php index 0c9d6baa58..46067d76da 100644 --- a/include/cron.php +++ b/include/cron.php @@ -225,9 +225,6 @@ function cron_run(&$argv, &$argc){ $d = datetime_convert(); - if(! $restart) - proc_run('php','include/cronhooks.php'); - // Only poll from those with suitable relationships, // and which have a polling address and ignore Diaspora since // we are unable to match those posts with a Diaspora GUID and prevent duplicates. @@ -339,6 +336,6 @@ function cron_run(&$argv, &$argc){ } if (array_search(__file__,get_included_files())===0){ - cron_run($_SERVER["argv"],$_SERVER["argc"]); - killme(); + cron_run($_SERVER["argv"],$_SERVER["argc"]); + killme(); } diff --git a/include/cronhooks.php b/include/cronhooks.php index 26cab3cf92..d5b4f3bf6f 100644 --- a/include/cronhooks.php +++ b/include/cronhooks.php @@ -11,11 +11,11 @@ function cronhooks_run(&$argv, &$argc){ } if(is_null($db)) { - @include(".htconfig.php"); - require_once("include/dba.php"); - $db = new dba($db_host, $db_user, $db_pass, $db_data); - unset($db_host, $db_user, $db_pass, $db_data); - }; + @include(".htconfig.php"); + require_once("include/dba.php"); + $db = new dba($db_host, $db_user, $db_pass, $db_data); + unset($db_host, $db_user, $db_pass, $db_data); + }; require_once('include/session.php'); require_once('include/datetime.php'); @@ -35,17 +35,31 @@ function cronhooks_run(&$argv, &$argc){ } } + $last = get_config('system','last_cronhook'); + + $poll_interval = intval(get_config('system','cronhook_interval')); + if(! $poll_interval) + $poll_interval = 9; + + if($last) { + $next = $last + ($poll_interval * 60); + if($next > time()) { + logger('cronhook intervall not reached'); + return; + } + } + $lockpath = get_lockpath(); if ($lockpath != '') { $pidfile = new pidfile($lockpath, 'cronhooks'); if($pidfile->is_already_running()) { logger("cronhooks: Already running"); if ($pidfile->running_time() > 19*60) { - $pidfile->kill(); - logger("cronhooks: killed stale process"); + $pidfile->kill(); + logger("cronhooks: killed stale process"); // Calling a new instance proc_run('php','include/cronhooks.php'); - } + } exit; } } @@ -62,10 +76,12 @@ function cronhooks_run(&$argv, &$argc){ logger('cronhooks: end'); + set_config('system','last_cronhook', time()); + return; } if (array_search(__file__,get_included_files())===0){ - cronhooks_run($_SERVER["argv"],$_SERVER["argc"]); - killme(); + cronhooks_run($_SERVER["argv"],$_SERVER["argc"]); + killme(); } diff --git a/include/poller.php b/include/poller.php index 053880bc59..e4b0b092f4 100644 --- a/include/poller.php +++ b/include/poller.php @@ -30,6 +30,9 @@ function poller_run(&$argv, &$argc){ // Run the cron job that calls all other jobs proc_run("php","include/cron.php"); + // Run the cronhooks job separately from cron for being able to use a different timing + proc_run("php","include/cronhooks.php"); + // Cleaning dead processes $r = q("SELECT DISTINCT(`pid`) FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'"); foreach($r AS $pid) From 69daaa61ba1d1a6502835e9b1356b14c1fdc1cf5 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 13 Sep 2015 08:08:13 +0200 Subject: [PATCH 009/443] With the new queue we don't need "delivery_batch_count" anymore --- include/notifier.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/notifier.php b/include/notifier.php index 593933b326..d4d254f1c9 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -638,7 +638,7 @@ function notifier_run(&$argv, &$argc){ // This controls the number of deliveries to execute with each separate delivery process. // By default we'll perform one delivery per process. Assuming a hostile shared hosting - // provider, this provides the greatest chance of deliveries if processes start getting + // provider, this provides the greatest chance of deliveries if processes start getting // killed. We can also space them out with the delivery_interval to also help avoid them // getting whacked. @@ -646,8 +646,10 @@ function notifier_run(&$argv, &$argc){ // together into a single process. This will reduce the overall number of processes // spawned for each delivery, but they will run longer. + // 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) + if (($deliveries_per_process <= 0) OR get_config("system", "worker")) $deliveries_per_process = 1; $this_batch = array(); From 3ace2136f062bd7e2f42328460a9e08859c856d5 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 13 Sep 2015 18:47:10 +0200 Subject: [PATCH 010/443] Checking includes for valid paths --- boot.php | 28 ++++++++++++++++++++++++++++ include/poller.php | 15 ++++++++++++--- 2 files changed, 40 insertions(+), 3 deletions(-) diff --git a/boot.php b/boot.php index 3116bb94b9..22cd34e062 100644 --- a/boot.php +++ b/boot.php @@ -1893,3 +1893,31 @@ if(!function_exists('exif_imagetype')) { return($size[2]); } } + +function validate_include(&$file) { + $orig_file = $file; + + $file = realpath($file); + + if (strpos($file, getcwd()) !== 0) + return false; + + $file = str_replace(getcwd()."/", "", $file, $count); + if ($count != 1) + return false; + + if ($orig_file !== $file) + return false; + + $valid = false; + if (strpos($file, "include/") === 0) + $valid = true; + + if (strpos($file, "addon/") === 0) + $valid = true; + + if (!$valid) + return false; + + return true; +} diff --git a/include/poller.php b/include/poller.php index e4b0b092f4..b03dc84af7 100644 --- a/include/poller.php +++ b/include/poller.php @@ -65,8 +65,16 @@ function poller_run(&$argv, &$argc){ $argc = count($argv); - // To-Do: Check for existance - require_once(basename($argv[0])); + // Check for existance and validity of the include file + $include = $argv[0]; + + if (!validate_include($include)) { + logger("Include file ".$argv[0]." is not valid!"); + q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($r[0]["id"])); + continue; + } + + require_once($include); $funcname=str_replace(".php", "", basename($argv[0]))."_run"; @@ -77,7 +85,8 @@ function poller_run(&$argv, &$argc){ logger("Process ".getmypid().": ".$funcname." - done"); q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($r[0]["id"])); - } + } else + logger("Function ".$funcname." does not exist"); } } From f8e4a71edae2f7a0fef8690e173612f30cf3630a Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 23 Sep 2015 08:56:48 +0200 Subject: [PATCH 011/443] Do a load check during execution of the queue. --- include/poller.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/include/poller.php b/include/poller.php index b03dc84af7..c919b9d2ab 100644 --- a/include/poller.php +++ b/include/poller.php @@ -26,6 +26,17 @@ function poller_run(&$argv, &$argc){ unset($db_host, $db_user, $db_pass, $db_data); }; + $maxsysload = intval(get_config('system','maxloadavg')); + if($maxsysload < 1) + $maxsysload = 50; + if(function_exists('sys_getloadavg')) { + $load = sys_getloadavg(); + if(intval($load[0]) > $maxsysload) { + logger('system: load ' . $load[0] . ' too high. poller deferred to next scheduled run.'); + return; + } + } + if(($argc <= 1) OR ($argv[1] != "no_cron")) { // Run the cron job that calls all other jobs proc_run("php","include/cron.php"); @@ -56,6 +67,15 @@ function poller_run(&$argv, &$argc){ return; while ($r = q("SELECT * FROM `workerqueue` WHERE `executed` = '0000-00-00 00:00:00' ORDER BY `created` LIMIT 1")) { + + if(function_exists('sys_getloadavg')) { + $load = sys_getloadavg(); + if(intval($load[0]) > $maxsysload) { + logger('system: load ' . $load[0] . ' too high. poller deferred to next scheduled run.'); + return; + } + } + q("UPDATE `workerqueue` SET `executed` = '%s', `pid` = %d WHERE `id` = %d", dbesc(datetime_convert()), intval(getmypid()), From 2a2dd6a1b918b646e51cdca4c93d817ac11c2cf5 Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Wed, 23 Sep 2015 10:47:34 +0200 Subject: [PATCH 012/443] Remove duplicated calls to language detection Also avoids overriding existing "lang" specification in an item --- include/items.php | 66 ++++++++++++++++++++++++++++++----------------- mod/item.php | 29 ++------------------- 2 files changed, 45 insertions(+), 50 deletions(-) diff --git a/include/items.php b/include/items.php index 5915e2ecee..667353d320 100644 --- a/include/items.php +++ b/include/items.php @@ -1096,6 +1096,48 @@ function add_guid($item) { dbesc($item["uri"]), dbesc($item["network"])); } +// Adds a "lang" specification in a "postopts" element of given $arr, +// if possible and not already present. +// Expects "body" element to exist in $arr. +// TODO: add a parameter to request forcing override +function item_add_language_opt(&$arr) { + + if (version_compare(PHP_VERSION, '5.3.0', '<')) return; // LanguageDetect.php not available ? + + if ( $arr['postopts'] ) + { + if ( strstr($arr['postopts'], 'lang=') ) + { + // do not override + // TODO: add parameter to request overriding + return; + } + $postopts = $arr['postopts']; + } + else + { + $postopts = ""; + } + + require_once('library/langdet/Text/LanguageDetect.php'); + $naked_body = preg_replace('/\[(.+?)\]/','',$arr['body']); + $l = new Text_LanguageDetect; + //$lng = $l->detectConfidence($naked_body); + //$arr['postopts'] = (($lng['language']) ? 'lang=' . $lng['language'] . ';' . $lng['confidence'] : ''); + $lng = $l->detect($naked_body, 3); + + if (sizeof($lng) > 0) { + if ($postopts) $postopts .= '^'; // arbitrary separator, to be reviewed + $postopts .= 'lang='; + $sep = ""; + foreach ($lng as $language => $score) { + $postopts .= $sep . $language.";".$score; + $sep = ':'; + } + $arr['postopts'] = $postopts; + } +} + function item_store($arr,$force_parent = false, $notify = false, $dontcache = false) { // If it is a posting where users should get notifications, then define it as wall posting @@ -1185,29 +1227,7 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa //if((strpos($arr['body'],'<') !== false) || (strpos($arr['body'],'>') !== false)) // $arr['body'] = strip_tags($arr['body']); - - if (version_compare(PHP_VERSION, '5.3.0', '>=')) { - require_once('library/langdet/Text/LanguageDetect.php'); - $naked_body = preg_replace('/\[(.+?)\]/','',$arr['body']); - $l = new Text_LanguageDetect; - //$lng = $l->detectConfidence($naked_body); - //$arr['postopts'] = (($lng['language']) ? 'lang=' . $lng['language'] . ';' . $lng['confidence'] : ''); - $lng = $l->detect($naked_body, 3); - - if (sizeof($lng) > 0) { - $postopts = ""; - - foreach ($lng as $language => $score) { - if ($postopts == "") - $postopts = "lang="; - else - $postopts .= ":"; - - $postopts .= $language.";".$score; - } - $arr['postopts'] = $postopts; - } - } + item_add_language_opt($arr); $arr['wall'] = ((x($arr,'wall')) ? intval($arr['wall']) : 0); $arr['guid'] = ((x($arr,'guid')) ? notags(trim($arr['guid'])) : get_guid(32, $arr['network'])); diff --git a/mod/item.php b/mod/item.php index d203ce64d4..91a94974e9 100644 --- a/mod/item.php +++ b/mod/item.php @@ -18,7 +18,6 @@ require_once('include/crypto.php'); require_once('include/enotify.php'); require_once('include/email.php'); -require_once('library/langdet/Text/LanguageDetect.php'); require_once('include/tags.php'); require_once('include/files.php'); require_once('include/threads.php'); @@ -268,32 +267,8 @@ function item_post(&$a) { $guid = get_guid(32); - $naked_body = preg_replace('/\[(.+?)\]/','',$body); - - if (version_compare(PHP_VERSION, '5.3.0', '>=')) { - $l = new Text_LanguageDetect; - //$lng = $l->detectConfidence($naked_body); - //$postopts = (($lng['language']) ? 'lang=' . $lng['language'] . ';' . $lng['confidence'] : ''); - - $lng = $l->detect($naked_body, 3); - - if (sizeof($lng) > 0) { - $postopts = ""; - - foreach ($lng as $language => $score) { - if ($postopts == "") - $postopts = "lang="; - else - $postopts .= ":"; - - $postopts .= $language.";".$score; - } - } - - logger('mod_item: detect language' . print_r($lng,true) . $naked_body, LOGGER_DATA); - } - else - $postopts = ''; + item_add_language_opt($_REQUEST); + $postopts = $_REQUEST['postopts'] ? $_REQUEST['postopts'] : ""; $private = ((strlen($str_group_allow) || strlen($str_contact_allow) || strlen($str_group_deny) || strlen($str_contact_deny)) ? 1 : 0); From 741b82ccab71e179bd5522391736cf26117fe014 Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Wed, 23 Sep 2015 11:11:12 +0200 Subject: [PATCH 013/443] Use x() function to check for array containement (I think) this is response to @fabrixxxm comment --- include/items.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/items.php b/include/items.php index 667353d320..4c41ae115f 100644 --- a/include/items.php +++ b/include/items.php @@ -1104,7 +1104,7 @@ function item_add_language_opt(&$arr) { if (version_compare(PHP_VERSION, '5.3.0', '<')) return; // LanguageDetect.php not available ? - if ( $arr['postopts'] ) + if ( x($arr, 'postopts') ) { if ( strstr($arr['postopts'], 'lang=') ) { From e9f001aa5d45bb928af9332f1d24cb54bf9fdb86 Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Wed, 23 Sep 2015 11:39:36 +0200 Subject: [PATCH 014/443] Use ampersend to separate postopts, and explicit test for empty string --- include/items.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/items.php b/include/items.php index 4c41ae115f..40409bb897 100644 --- a/include/items.php +++ b/include/items.php @@ -1127,7 +1127,7 @@ function item_add_language_opt(&$arr) { $lng = $l->detect($naked_body, 3); if (sizeof($lng) > 0) { - if ($postopts) $postopts .= '^'; // arbitrary separator, to be reviewed + if ($postopts != "") $postopts .= '&'; // arbitrary separator, to be reviewed $postopts .= 'lang='; $sep = ""; foreach ($lng as $language => $score) { From 173d1390df9e7fbe1a23ce3e67c1b9ea6ddcb1f5 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 25 Sep 2015 17:38:56 +0200 Subject: [PATCH 015/443] Mute warnings in pidfile/Quit poller after an hour. --- include/pidfile.php | 8 ++++---- include/poller.php | 6 ++++++ 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/include/pidfile.php b/include/pidfile.php index 4f5b25ad75..3093e149ae 100644 --- a/include/pidfile.php +++ b/include/pidfile.php @@ -7,8 +7,8 @@ class pidfile { $this->_file = "$dir/$name.pid"; if (file_exists($this->_file)) { - $pid = trim(file_get_contents($this->_file)); - if (posix_kill($pid, 0)) { + $pid = trim(@file_get_contents($this->_file)); + if (($pid != "") AND posix_kill($pid, 0)) { $this->_running = true; } } @@ -21,7 +21,7 @@ class pidfile { public function __destruct() { if ((! $this->_running) && file_exists($this->_file)) { - unlink($this->_file); + @unlink($this->_file); } } @@ -30,7 +30,7 @@ class pidfile { } public function running_time() { - return(time() - filectime($this->_file)); + return(time() - @filectime($this->_file)); } public function kill() { diff --git a/include/poller.php b/include/poller.php index c919b9d2ab..7255eaa6e0 100644 --- a/include/poller.php +++ b/include/poller.php @@ -66,6 +66,8 @@ function poller_run(&$argv, &$argc){ if ($workers[0]["workers"] >= $queues) return; + $starttime = time(); + while ($r = q("SELECT * FROM `workerqueue` WHERE `executed` = '0000-00-00 00:00:00' ORDER BY `created` LIMIT 1")) { if(function_exists('sys_getloadavg')) { @@ -76,6 +78,10 @@ function poller_run(&$argv, &$argc){ } } + // Quit the poller once every hour + if (time() > ($starttime + 3600)) + return; + q("UPDATE `workerqueue` SET `executed` = '%s', `pid` = %d WHERE `id` = %d", dbesc(datetime_convert()), intval(getmypid()), From ae21c40f21ab4bb5a482d63ae35beff18efa13be Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 27 Sep 2015 13:56:20 +0200 Subject: [PATCH 016/443] Load depending number of workers --- include/poller.php | 44 ++++++++++++++++++++++++++++++++++++-------- 1 file changed, 36 insertions(+), 8 deletions(-) diff --git a/include/poller.php b/include/poller.php index 7255eaa6e0..e33167c5b1 100644 --- a/include/poller.php +++ b/include/poller.php @@ -56,14 +56,7 @@ function poller_run(&$argv, &$argc){ sleep(4); // Checking number of workers - $workers = q("SELECT COUNT(*) AS `workers` FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'"); - - $queues = intval(get_config("system", "worker_queues")); - - if ($queues == 0) - $queues = 4; - - if ($workers[0]["workers"] >= $queues) + if (poller_too_much_workers()) return; $starttime = time(); @@ -82,6 +75,9 @@ function poller_run(&$argv, &$argc){ if (time() > ($starttime + 3600)) return; + if (poller_too_much_workers()) + return; + q("UPDATE `workerqueue` SET `executed` = '%s', `pid` = %d WHERE `id` = %d", dbesc(datetime_convert()), intval(getmypid()), @@ -117,6 +113,38 @@ function poller_run(&$argv, &$argc){ } +function poller_too_much_workers() { + + if(function_exists('sys_getloadavg')) { + $load = sys_getloadavg(); + + // To-Do + if ($load < 1) + $queues = 10; + elseif ($load < 5) + $queues = 4; + elseif ($load < 10) + $queues = 2; + else + $queues = 1; + + } else { + $queues = intval(get_config("system", "worker_queues")); + + if ($queues == 0) + $queues = 4; + } + + if (poller_active_workers() >= $queues) + return; +} + +function poller_active_workers() { + $workers = q("SELECT COUNT(*) AS `workers` FROM `workerqueue` WHERE `executed` != '0000-00-00 00:00:00'"); + + return($workers[0]["workers"]); +} + if (array_search(__file__,get_included_files())===0){ poller_run($_SERVER["argv"],$_SERVER["argc"]); killme(); From c33957a6e9dc83e376db6712138da893f8c9fca7 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 27 Sep 2015 14:00:15 +0200 Subject: [PATCH 017/443] Internationalisation of events/Move events to the navigation bar --- include/nav.php | 2 ++ mod/events.php | 51 +++++++++++++++++++++++++++++++ view/templates/event_head.tpl | 39 +++++++++++++++-------- view/theme/vier/templates/nav.tpl | 5 +++ 4 files changed, 85 insertions(+), 12 deletions(-) diff --git a/include/nav.php b/include/nav.php index e7f51cc0c0..f3dec64bff 100644 --- a/include/nav.php +++ b/include/nav.php @@ -138,6 +138,8 @@ function nav_info(&$a) { elseif(get_config('system','community_page_style') == CP_GLOBAL_COMMUNITY) $nav['community'] = array('community', t('Community'), "", t('Conversations on the network')); + $nav['events'] = Array('events', t('Events'), "", t('Events and Calendar')); + $nav['directory'] = array($gdirpath, t('Directory'), "", t('People directory')); $nav['about'] = Array('friendica', t('Information'), "", t('Information about this friendica instance')); diff --git a/mod/events.php b/mod/events.php index 242f27f135..ff61514170 100644 --- a/mod/events.php +++ b/mod/events.php @@ -184,9 +184,60 @@ function events_content(&$a) { if( feature_enabled(local_user(), 'richtext') ) $editselect = 'textareas'; + // First day of the week (0 = Sunday) + // To-Do: Needs to be configurable + $firstDay = 0; + + $i18n = array( + "firstDay" => $firstDay, + "Sun" => t("Sun"), + "Mon" => t("Mon"), + "Tue" => t("Tue"), + "Wed" => t("Wed"), + "Thu" => t("Thu"), + "Fri" => t("Fri"), + "Sat" => t("Sat"), + "Sunday" => t("Sunday"), + "Monday" => t("Monday"), + "Tuesday" => t("Tuesday"), + "Wednesday" => t("Wednesday"), + "Thursday" => t("Thursday"), + "Friday" => t("Friday"), + "Saturday" => t("Saturday"), + "Jan" => t("Jan"), + "Feb" => t("Feb"), + "Mar" => t("Mar"), + "Apr" => t("Apr"), + "May" => t("May"), + "Jun" => t("Jun"), + "Jul" => t("Jul"), + "Aug" => t("Aug"), + "Sep" => t("Sept"), + "Oct" => t("Oct"), + "Nov" => t("Nov"), + "Dec" => t("Dec"), + "January" => t("January"), + "February" => t("February"), + "March" => t("March"), + "April" => t("April"), + "May" => t("May"), + "June" => t("June"), + "July" => t("July"), + "August" => t("August"), + "September" => t("September"), + "October" => t("October"), + "November" => t("November"), + "December" => t("December"), + "today" => t("today"), + "month" => t("month"), + "week" => t("week"), + "day" => t("day"), + ); + $htpl = get_markup_template('event_head.tpl'); $a->page['htmlhead'] .= replace_macros($htpl,array( '$baseurl' => $a->get_baseurl(), + '$i18n' => $i18n, '$editselect' => $editselect )); diff --git a/view/templates/event_head.tpl b/view/templates/event_head.tpl index a96e5aff31..ceb251a9e2 100644 --- a/view/templates/event_head.tpl +++ b/view/templates/event_head.tpl @@ -1,7 +1,7 @@ + src="{{$baseurl}}/library/fullcalendar/fullcalendar.min.js"> + src="{{$baseurl}}/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js"> EOT; + + // Hide the left menu bar + if (($a->page['aside'] == "") AND in_array($a->argv[0], array("community", "events", "help", "manage", "notifications", "probe", "webfinger", "login"))) + $a->page['htmlhead'] .= ""; } +function get_vier_config($key, $default = false) { + if (local_user()) { + $result = get_pconfig(local_user(), "vier", $key); + if ($result !== false) + return $result; + } + + $result = get_config("vier", $key); + if ($result !== false) + return $result; + + return $default; +} + +function vier_community_info() { + $a = get_app(); +/* + $close_pages = get_vier_config("close_pages", 1); + $close_profiles = get_vier_config("close_profiles", 0); + $close_helpers = get_vier_config("close_helpers", 0); + $close_services = get_vier_config("close_services", 0); + $close_friends = get_vier_config("close_friends", 0); + $close_lastusers = get_vier_config("close_lastusers", 0); + $close_lastphotos = get_vier_config("close_lastphotos", 0); + $close_lastlikes = get_vier_config("close_lastlikes", 0); +*/ + $close_pages = false; + $close_profiles = true; + $close_helpers = false; + $close_services = false; + $close_friends = false; + $close_lastusers = true; + $close_lastphotos = true; + $close_lastlikes = true; + + // comunity_profiles + if(!$close_profiles) { + $aside['$comunity_profiles_title'] = t('Community Profiles'); + $aside['$comunity_profiles_items'] = array(); + $r = q("select gcontact.* from gcontact left join glink on glink.gcid = gcontact.id + where glink.cid = 0 and glink.uid = 0 order by rand() limit 9"); + $tpl = get_markup_template('ch_directory_item.tpl'); + if(count($r)) { + $photo = 'photo'; + foreach($r as $rr) { + $profile_link = $a->get_baseurl() . '/profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']); + $entry = replace_macros($tpl,array( + '$id' => $rr['id'], + '$profile_link' => zrl($rr['url']), + '$photo' => $rr[$photo], + '$alt_text' => $rr['name'], + )); + $aside['$comunity_profiles_items'][] = $entry; + } + } + } + + // last 12 users + if(!$close_lastusers) { + $aside['$lastusers_title'] = t('Last users'); + $aside['$lastusers_items'] = array(); + $sql_extra = ""; + $publish = (get_config('system','publish_all') ? '' : " AND `publish` = 1 "); + $order = " ORDER BY `register_date` DESC "; + + $r = q("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname` + FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` + WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $sql_extra $order LIMIT %d , %d ", + 0, 9); + + $tpl = get_markup_template('ch_directory_item.tpl'); + if(count($r)) { + $photo = 'thumb'; + foreach($r as $rr) { + $profile_link = $a->get_baseurl() . '/profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']); + $entry = replace_macros($tpl,array( + '$id' => $rr['id'], + '$profile_link' => $profile_link, + '$photo' => $a->get_cached_avatar_image($rr[$photo]), + '$alt_text' => $rr['name'])); + $aside['$lastusers_items'][] = $entry; + } + } + } + + // last 10 liked items +/* + if(!$close_lastlikes) { + $aside['$like_title'] = t('Last likes'); + $aside['$like_items'] = array(); + $r = q("SELECT `T1`.`created`, `T1`.`liker`, `T1`.`liker-link`, `item`.* FROM + (SELECT `parent-uri`, `created`, `author-name` AS `liker`,`author-link` AS `liker-link` + FROM `item` WHERE `verb`='http://activitystrea.ms/schema/1.0/like' GROUP BY `parent-uri` ORDER BY `created` DESC) AS T1 + INNER JOIN `item` ON `item`.`uri`=`T1`.`parent-uri` + WHERE `T1`.`liker-link` LIKE '%s%%' OR `item`.`author-link` LIKE '%s%%' + GROUP BY `uri` + ORDER BY `T1`.`created` DESC + LIMIT 0,5", + $a->get_baseurl(),$a->get_baseurl()); + + foreach ($r as $rr) { + $author = '' . $rr['liker'] . ''; + $objauthor = '' . $rr['author-name'] . ''; + + //var_dump($rr['verb'],$rr['object-type']); killme(); + switch($rr['verb']){ + case 'http://activitystrea.ms/schema/1.0/post': + switch ($rr['object-type']){ + case 'http://activitystrea.ms/schema/1.0/event': + $post_type = t('event'); + break; + default: + $post_type = t('status'); + } + break; + default: + if ($rr['resource-id']){ + $post_type = t('photo'); + $m=array(); + preg_match("/\[url=([^]]*)\]/", $rr['body'], $m); + $rr['plink'] = $m[1]; + } else + $post_type = t('status'); + } + $plink = '' . $post_type . ''; + + $aside['$like_items'][] = sprintf( t('%1$s likes %2$s\'s %3$s'), $author, $objauthor, $plink); + + } + } + + // last 12 photos + if(!$close_lastphotos) { + $aside['$photos_title'] = t('Last photos'); + $aside['$photos_items'] = array(); + $r = q("SELECT `photo`.`id`, `photo`.`resource-id`, `photo`.`scale`, `photo`.`desc`, `user`.`nickname`, `user`.`username` FROM + (SELECT `resource-id`, MAX(`scale`) as maxscale FROM `photo` + WHERE `profile`=0 AND `contact-id`=0 AND `album` NOT IN ('Contact Photos', '%s', 'Profile Photos', '%s') + AND `allow_cid`='' AND `allow_gid`='' AND `deny_cid`='' AND `deny_gid`='' GROUP BY `resource-id`) AS `t1` + INNER JOIN `photo` ON `photo`.`resource-id`=`t1`.`resource-id` AND `photo`.`scale` = `t1`.`maxscale`, + `user` + WHERE `user`.`uid` = `photo`.`uid` + AND `user`.`blockwall`=0 + AND `user`.`hidewall`=0 + ORDER BY `photo`.`edited` DESC + LIMIT 0, 9", + dbesc(t('Contact Photos')), + dbesc(t('Profile Photos')) + ); + if(count($r)) { + $tpl = get_markup_template('ch_directory_item.tpl'); + foreach($r as $rr) { + $photo_page = $a->get_baseurl() . '/photos/' . $rr['nickname'] . '/image/' . $rr['resource-id']; + $photo_url = $a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['scale'] .'.jpg'; + + $entry = replace_macros($tpl,array( + '$id' => $rr['id'], + '$profile_link' => $photo_page, + '$photo' => $photo_url, + '$alt_text' => $rr['username']." : ".$rr['desc'])); + + $aside['$photos_items'][] = $entry; + } + } + } +*/ + //right_aside FIND FRIENDS + if (!$close_friends AND local_user()) { + $nv = array(); + $nv['title'] = Array("", t('Find Friends'), "", ""); + $nv['directory'] = Array('directory', t('Local Directory'), "", ""); + $nv['global_directory'] = Array('http://dir.friendica.com/', t('Global Directory'), "", ""); + $nv['match'] = Array('match', t('Similar Interests'), "", ""); + $nv['suggest'] = Array('suggest', t('Friend Suggestions'), "", ""); + $nv['invite'] = Array('invite', t('Invite Friends'), "", ""); + + $nv['search'] = '
+ + + + + '; + + $aside['$nv'] = $nv; + } + + //Community_Pages at right_aside + if(!$close_pages AND local_user()) { + $page = ' +

'.t("Community Pages").'

+
    '; + + $pagelist = array(); + + $contacts = q("SELECT `id`, `url`, `name`, `micro`FROM `contact` + WHERE `network`= 'dfrn' AND `forum` = 1 AND `uid` = %d + ORDER BY `name` ASC", + intval($a->user['uid'])); + + $pageD = array(); + + // Look if the profile is a community page + foreach($contacts as $contact) { + $pageD[] = array("url"=>$contact["url"], "name"=>$contact["name"], "id"=>$contact["id"], "micro"=>$contact['micro']); + }; + + + $contacts = $pageD; + + foreach($contacts as $contact) { + $page .= '
  • ' . $contact['url'] . ' '. + $contact["name"]."
  • "; + } + $page .= '
'; + //if (sizeof($contacts) > 0) + $aside['$page'] = $page; + } + //END Community Page + + //helpers + if(!$close_helpers) { + $helpers = array(); + $helpers['title'] = Array("", t('Help or @NewHere ?'), "", ""); + $aside['$helpers'] = $helpers; + } + //end helpers + + //connectable services + if (!$close_services) { + $con_services = array(); + $con_services['title'] = Array("", t('Connect Services'), "", ""); + $aside['$con_services'] = $con_services; + } + //end connectable services + +/* + if($ccCookie != "9") { + $close_pages = get_vier_config( "close_pages", 1 ); + $close_profiles = get_vier_config( "close_profiles", 0 ); + $close_helpers = get_vier_config( "close_helpers", 0 ); + $close_services = get_vier_config( "close_services", 0 ); + $close_friends = get_vier_config( "close_friends", 0 ); + $close_lastusers = get_vier_config( "close_lastusers", 0 ); + $close_lastphotos = get_vier_config( "close_lastphotos", 0 ); + $close_lastlikes = get_vier_config( "close_lastlikes", 0 ); + $close_or_not = array('1'=>t("don't show"), '0'=>t("show"),); + $boxsettings['title'] = Array("", t('Show/hide boxes at right-hand column:'), "", ""); + $aside['$boxsettings'] = $boxsettings; + $aside['$close_pages'] = array('vier_close_pages', t('Community Pages'), $close_pages, '', $close_or_not); + $aside['$close_profiles'] = array('vier_close_profiles', t('Community Profiles'), $close_profiles, '', $close_or_not); + $aside['$close_helpers'] = array('vier_close_helpers', t('Help or @NewHere ?'), $close_helpers, '', $close_or_not); + $aside['$close_services'] = array('vier_close_services', t('Connect Services'), $close_services, '', $close_or_not); + $aside['$close_friends'] = array('vier_close_friends', t('Find Friends'), $close_friends, '', $close_or_not); + $aside['$close_lastusers'] = array('vier_close_lastusers', t('Last users'), $close_lastusers, '', $close_or_not); + $aside['$close_lastphotos'] = array('vier_close_lastphotos', t('Last photos'), $close_lastphotos, '', $close_or_not); + $aside['$close_lastlikes'] = array('vier_close_lastlikes', t('Last likes'), $close_lastlikes, '', $close_or_not); + $aside['$sub'] = t('Submit'); + $baseurl = $a->get_baseurl($ssl_state); + $aside['$baseurl'] = $baseurl; + + if (isset($_POST['vier-settings-box-sub']) && $_POST['vier-settings-box-sub']!=''){ + set_pconfig(local_user(), 'vier', 'close_pages', $_POST['vier_close_pages']); + set_pconfig(local_user(), 'vier', 'close_profiles', $_POST['vier_close_profiles']); + set_pconfig(local_user(), 'vier', 'close_helpers', $_POST['vier_close_helpers']); + set_pconfig(local_user(), 'vier', 'close_services', $_POST['vier_close_services']); + set_pconfig(local_user(), 'vier', 'close_friends', $_POST['vier_close_friends']); + set_pconfig(local_user(), 'vier', 'close_lastusers', $_POST['vier_close_lastusers']); + set_pconfig(local_user(), 'vier', 'close_lastphotos', $_POST['vier_close_lastphotos']); + set_pconfig(local_user(), 'vier', 'close_lastlikes', $_POST['vier_close_lastlikes']); + } + } + $close = t('Settings'); + $aside['$close'] = $close; +*/ + //get_baseurl + $url = $a->get_baseurl($ssl_state); + $aside['$url'] = $url; + + //print right_aside + $tpl = get_markup_template('communityhome.tpl'); + $a->page['right_aside'] = replace_macros($tpl, $aside); +} diff --git a/view/theme/vier/wide.css b/view/theme/vier/wide.css new file mode 100644 index 0000000000..7c703a4af5 --- /dev/null +++ b/view/theme/vier/wide.css @@ -0,0 +1,23 @@ +right_aside { + vertical-align: top; + width: 185px; + padding-top: 10px; + padding-right: 20px; + padding-bottom: 0px; + padding-left: 10px; + background-color: #FFFFFF; + font-size: 13px; + overflow-y: auto; + z-index: 2; + line-height: 17px; + position: fixed; + color: #737373; + top: 44px; + height: calc(100% - 54px); + display: block; + margin-left: calc(100% - 215px); +} + +#forumlist-sidebar { + display: none; +} From 3ae0deadb681b39228640f2aa2f67125327306de Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 3 Oct 2015 12:55:55 +0200 Subject: [PATCH 038/443] The right side now contains much stuff from diabook - but completely reworked. --- view/theme/vier/config.php | 58 ++- view/theme/vier/style.css | 10 +- view/theme/vier/templates/ch_connectors.tpl | 2 + view/theme/vier/templates/ch_helpers.tpl | 1 + view/theme/vier/templates/communityhome.tpl | 83 ++--- .../vier/templates/theme_admin_settings.tpl | 1 + view/theme/vier/templates/theme_settings.tpl | 6 + view/theme/vier/theme.php | 350 +++++++++--------- view/theme/vier/wide.css | 33 +- 9 files changed, 288 insertions(+), 256 deletions(-) create mode 100644 view/theme/vier/templates/ch_connectors.tpl create mode 100644 view/theme/vier/templates/ch_helpers.tpl create mode 100644 view/theme/vier/templates/theme_admin_settings.tpl diff --git a/view/theme/vier/config.php b/view/theme/vier/config.php index 9df9088ed8..5084a26053 100644 --- a/view/theme/vier/config.php +++ b/view/theme/vier/config.php @@ -17,7 +17,15 @@ function theme_content(&$a){ if ($style == "") $style = "plus"; - return vier_form($a,$style); + $show_pages = get_vier_config('show_pages', true); + $show_profiles = get_vier_config('show_profiles', true); + $show_helpers = get_vier_config('show_helpers', true); + $show_services = get_vier_config('show_services', true); + $show_friends = get_vier_config('show_friends', true); + $show_lastusers = get_vier_config('show_lastusers', true); + + return vier_form($a,$style, $show_pages, $show_profiles, $show_helpers, + $show_services, $show_friends, $show_lastusers); } function theme_post(&$a){ @@ -26,23 +34,56 @@ function theme_post(&$a){ if (isset($_POST['vier-settings-submit'])){ set_pconfig(local_user(), 'vier', 'style', $_POST['vier_style']); + set_pconfig(local_user(), 'vier', 'show_pages', $_POST['vier_show_pages']); + set_pconfig(local_user(), 'vier', 'show_profiles', $_POST['vier_show_profiles']); + set_pconfig(local_user(), 'vier', 'show_helpers', $_POST['vier_show_helpers']); + set_pconfig(local_user(), 'vier', 'show_services', $_POST['vier_show_services']); + set_pconfig(local_user(), 'vier', 'show_friends', $_POST['vier_show_friends']); + set_pconfig(local_user(), 'vier', 'show_lastusers', $_POST['vier_show_lastusers']); } } function theme_admin(&$a){ $style = get_config('vier', 'style'); - return vier_form($a,$style); + + $helperlist = get_config('vier', 'helperlist'); + + if ($helperlist == "") + $helperlist = "https://helpers.pyxis.uberspace.de/profile/helpers"; + + $t = get_markup_template("theme_admin_settings.tpl"); + $o .= replace_macros($t, array( + '$helperlist' => array('vier_helperlist', t('Comma separated list of helper forums'), $helperlist, '', ''), + )); + + $show_pages = get_vier_config('show_pages', true, true); + $show_profiles = get_vier_config('show_profiles', true, true); + $show_helpers = get_vier_config('show_helpers', true, true); + $show_services = get_vier_config('show_services', true, true); + $show_friends = get_vier_config('show_friends', true, true); + $show_lastusers = get_vier_config('show_lastusers', true, true); + $o .= vier_form($a,$style, $show_pages, $show_profiles, $show_helpers, $show_services, + $show_friends, $show_lastusers); + + return $o; } function theme_admin_post(&$a){ if (isset($_POST['vier-settings-submit'])){ set_config('vier', 'style', $_POST['vier_style']); + set_config('vier', 'show_pages', $_POST['vier_show_pages']); + set_config('vier', 'show_profiles', $_POST['vier_show_profiles']); + set_config('vier', 'show_helpers', $_POST['vier_show_helpers']); + set_config('vier', 'show_services', $_POST['vier_show_services']); + set_config('vier', 'show_friends', $_POST['vier_show_friends']); + set_config('vier', 'show_lastusers', $_POST['vier_show_lastusers']); + set_config('vier', 'helperlist', $_POST['vier_helperlist']); } } -function vier_form(&$a, $style){ +function vier_form(&$a, $style, $show_pages, $show_profiles, $show_helpers, $show_services, $show_friends, $show_lastusers){ $styles = array( "plus"=>"Plus", "breathe"=>"Breathe", @@ -51,12 +92,21 @@ function vier_form(&$a, $style){ "netcolour"=>"Coloured Networks", "flat"=>"Flat" ); - $t = get_markup_template("theme_settings.tpl" ); + + $show_or_not = array('0'=>t("don't show"), '1'=>t("show"),); + + $t = get_markup_template("theme_settings.tpl"); $o .= replace_macros($t, array( '$submit' => t('Submit'), '$baseurl' => $a->get_baseurl(), '$title' => t("Theme settings"), '$style' => array('vier_style',t ('Set style'),$style,'',$styles), + '$show_pages' => array('vier_show_pages', t('Community Pages'), $show_pages, '', $show_or_not), + '$show_profiles' => array('vier_show_profiles', t('Community Profiles'), $show_profiles, '', $show_or_not), + '$show_helpers' => array('vier_show_helpers', t('Help or @NewHere ?'), $show_helpers, '', $show_or_not), + '$show_services' => array('vier_show_services', t('Connect Services'), $show_services, '', $show_or_not), + '$show_friends' => array('vier_show_friends', t('Find Friends'), $show_friends, '', $show_or_not), + '$show_lastusers' => array('vier_show_lastusers', t('Last users'), $show_lastusers, '', $show_or_not) )); return $o; } diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index 031413ea9e..aadd09c61d 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -390,7 +390,7 @@ code { } .sidebar-group-li:hover, #sidebar-new-group:hover, #hide-forum-list:hover, -#sidebar-ungrouped:hover, .side-link:hover, .nets-ul li:hover, #forum-list div:hover, +#sidebar-ungrouped:hover, .side-link:hover, .nets-ul li:hover, #forum-list div:hover, #forum-list-right div:hover, .nets-all:hover, .saved-search-li:hover, li.tool:hover, .admin.link:hover, aside h4 a:hover, right_aside h4 a:hover, #message-new:hover { /* background-color: #ddd; */ /* background-color: #e5e5e5; */ @@ -409,7 +409,7 @@ code { font-weight: bold; } -#sidebar-new-group, #hide-forum-list, #forum-list, #sidebar-ungrouped, +#sidebar-new-group, #hide-forum-list, #forum-list, #forum-list-right, #sidebar-ungrouped, .side-link, #peoplefind-desc, #connect-desc, .nets-all, .admin.link, #message-new { padding-left: 10px; padding-top: 3px; @@ -445,11 +445,11 @@ a.sidebar-group-element { color: black; } -#forum-list a, .tool a, .admin.link a { +#forum-list a, #forum-list-right a, .tool a, .admin.link a { color: #737373; } -#forum-list { +#forum-list, #forum-list-right { margin-top: 2px; } @@ -970,7 +970,7 @@ aside #profiles-menu { left: 10px; } -aside #search-text, aside #side-follow-url, aside #side-peoplefind-url { +aside #search-text, aside #side-follow-url, aside #side-peoplefind-url, right_aside input { width: 140px; height: 17px; padding-left: 10px; diff --git a/view/theme/vier/templates/ch_connectors.tpl b/view/theme/vier/templates/ch_connectors.tpl new file mode 100644 index 0000000000..2ca114807b --- /dev/null +++ b/view/theme/vier/templates/ch_connectors.tpl @@ -0,0 +1,2 @@ +{{$alt_text}} + diff --git a/view/theme/vier/templates/ch_helpers.tpl b/view/theme/vier/templates/ch_helpers.tpl new file mode 100644 index 0000000000..e10011e04d --- /dev/null +++ b/view/theme/vier/templates/ch_helpers.tpl @@ -0,0 +1 @@ + diff --git a/view/theme/vier/templates/communityhome.tpl b/view/theme/vier/templates/communityhome.tpl index 92e56b3227..54be327aa2 100644 --- a/view/theme/vier/templates/communityhome.tpl +++ b/view/theme/vier/templates/communityhome.tpl @@ -1,76 +1,66 @@ -
-
- -
- -
{{if $page}} +
{{$page}}
-{{/if}}
+{{/if}} -
{{if $comunity_profiles_title}} +

{{$comunity_profiles_title}}

{{foreach $comunity_profiles_items as $i}} {{$i}} {{/foreach}}
-{{/if}}
+{{/if}} -
{{if $helpers}} +

{{$helpers.title.1}}

-{{/if}}
+{{/if}} -
{{if $con_services}} +

{{$con_services.title.1}}

-
-Facebook -StatusNet -LiveJournal -Posterous -Tumblr -Twitter -WordPress -E-Mail +
+{{foreach $connector_items as $i}} + {{$i}} +{{/foreach}} +
{{/if}} -
-
{{if $nv}} + +{{/if}} -
{{if $lastusers_title}} +

{{$lastusers_title}}

{{foreach $lastusers_items as $i}} {{$i}} {{/foreach}}
-{{/if}}
+{{/if}} {{if $activeusers_title}}

{{$activeusers_title}}

@@ -80,28 +70,3 @@ {{/foreach}}
{{/if}} - -
-{{if $photos_title}} -

{{$photos_title}}

-
-{{foreach $photos_items as $i}} - {{$i}} -{{/foreach}} -
-{{/if}} -
- -
-{{if $like_title}} -

{{$like_title}}

-
    -{{foreach $like_items as $i}} -
  • {{$i}}
  • -{{/foreach}} -
-{{/if}} -
- -
-
diff --git a/view/theme/vier/templates/theme_admin_settings.tpl b/view/theme/vier/templates/theme_admin_settings.tpl new file mode 100644 index 0000000000..21b8867e29 --- /dev/null +++ b/view/theme/vier/templates/theme_admin_settings.tpl @@ -0,0 +1 @@ +{{include file="field_input.tpl" field=$helperlist}} diff --git a/view/theme/vier/templates/theme_settings.tpl b/view/theme/vier/templates/theme_settings.tpl index 412978ea2f..3e957e39ca 100644 --- a/view/theme/vier/templates/theme_settings.tpl +++ b/view/theme/vier/templates/theme_settings.tpl @@ -1,5 +1,11 @@ {{include file="field_select.tpl" field=$style}} +{{include file="field_select.tpl" field=$show_pages}} +{{include file="field_select.tpl" field=$show_profiles}} +{{include file="field_select.tpl" field=$show_helpers}} +{{include file="field_select.tpl" field=$show_services}} +{{include file="field_select.tpl" field=$show_friends}} +{{include file="field_select.tpl" field=$show_lastusers}}
diff --git a/view/theme/vier/theme.php b/view/theme/vier/theme.php index 0b01b3db80..df28c0689e 100644 --- a/view/theme/vier/theme.php +++ b/view/theme/vier/theme.php @@ -9,6 +9,10 @@ * Description: "Vier" is a very compact and modern theme. It uses the font awesome font library: http://fortawesome.github.com/Font-Awesome/ */ +require_once("mod/nodeinfo.php"); +require_once("mod/proxy.php"); +require_once("include/socgraph.php"); + function vier_init(&$a) { $a->theme_events_in_profile = false; @@ -84,8 +88,8 @@ EOT; $a->page['htmlhead'] .= ""; } -function get_vier_config($key, $default = false) { - if (local_user()) { +function get_vier_config($key, $default = false, $admin = false) { + if (local_user() AND !$admin) { $result = get_pconfig(local_user(), "vier", $key); if ($result !== false) return $result; @@ -100,40 +104,34 @@ function get_vier_config($key, $default = false) { function vier_community_info() { $a = get_app(); -/* - $close_pages = get_vier_config("close_pages", 1); - $close_profiles = get_vier_config("close_profiles", 0); - $close_helpers = get_vier_config("close_helpers", 0); - $close_services = get_vier_config("close_services", 0); - $close_friends = get_vier_config("close_friends", 0); - $close_lastusers = get_vier_config("close_lastusers", 0); - $close_lastphotos = get_vier_config("close_lastphotos", 0); - $close_lastlikes = get_vier_config("close_lastlikes", 0); -*/ - $close_pages = false; - $close_profiles = true; - $close_helpers = false; - $close_services = false; - $close_friends = false; - $close_lastusers = true; - $close_lastphotos = true; - $close_lastlikes = true; + + $show_pages = get_vier_config("show_pages", 1); + $show_profiles = get_vier_config("show_profiles", 1); + $show_helpers = get_vier_config("show_helpers", 1); + $show_services = get_vier_config("show_services", 1); + $show_friends = get_vier_config("show_friends", 1); + $show_lastusers = get_vier_config("show_lastusers", 1); + + //get_baseurl + $url = $a->get_baseurl($ssl_state); + $aside['$url'] = $url; // comunity_profiles - if(!$close_profiles) { - $aside['$comunity_profiles_title'] = t('Community Profiles'); - $aside['$comunity_profiles_items'] = array(); - $r = q("select gcontact.* from gcontact left join glink on glink.gcid = gcontact.id - where glink.cid = 0 and glink.uid = 0 order by rand() limit 9"); + if($show_profiles) { + + $r = suggestion_query(local_user(), 0, 9); + $tpl = get_markup_template('ch_directory_item.tpl'); if(count($r)) { - $photo = 'photo'; + + $aside['$comunity_profiles_title'] = t('Community Profiles'); + $aside['$comunity_profiles_items'] = array(); + foreach($r as $rr) { - $profile_link = $a->get_baseurl() . '/profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']); $entry = replace_macros($tpl,array( '$id' => $rr['id'], '$profile_link' => zrl($rr['url']), - '$photo' => $rr[$photo], + '$photo' => proxy_url($rr['photo']), '$alt_text' => $rr['name'], )); $aside['$comunity_profiles_items'][] = $entry; @@ -141,126 +139,45 @@ function vier_community_info() { } } - // last 12 users - if(!$close_lastusers) { - $aside['$lastusers_title'] = t('Last users'); - $aside['$lastusers_items'] = array(); - $sql_extra = ""; + // last 9 users + if($show_lastusers) { $publish = (get_config('system','publish_all') ? '' : " AND `publish` = 1 "); $order = " ORDER BY `register_date` DESC "; $r = q("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname` FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` - WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $sql_extra $order LIMIT %d , %d ", + WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $order LIMIT %d , %d ", 0, 9); $tpl = get_markup_template('ch_directory_item.tpl'); if(count($r)) { - $photo = 'thumb'; + + $aside['$lastusers_title'] = t('Last users'); + $aside['$lastusers_items'] = array(); + foreach($r as $rr) { $profile_link = $a->get_baseurl() . '/profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']); $entry = replace_macros($tpl,array( '$id' => $rr['id'], '$profile_link' => $profile_link, - '$photo' => $a->get_cached_avatar_image($rr[$photo]), + '$photo' => $a->get_cached_avatar_image($rr['thumb']), '$alt_text' => $rr['name'])); $aside['$lastusers_items'][] = $entry; } } } - // last 10 liked items -/* - if(!$close_lastlikes) { - $aside['$like_title'] = t('Last likes'); - $aside['$like_items'] = array(); - $r = q("SELECT `T1`.`created`, `T1`.`liker`, `T1`.`liker-link`, `item`.* FROM - (SELECT `parent-uri`, `created`, `author-name` AS `liker`,`author-link` AS `liker-link` - FROM `item` WHERE `verb`='http://activitystrea.ms/schema/1.0/like' GROUP BY `parent-uri` ORDER BY `created` DESC) AS T1 - INNER JOIN `item` ON `item`.`uri`=`T1`.`parent-uri` - WHERE `T1`.`liker-link` LIKE '%s%%' OR `item`.`author-link` LIKE '%s%%' - GROUP BY `uri` - ORDER BY `T1`.`created` DESC - LIMIT 0,5", - $a->get_baseurl(),$a->get_baseurl()); - - foreach ($r as $rr) { - $author = '' . $rr['liker'] . ''; - $objauthor = '' . $rr['author-name'] . ''; - - //var_dump($rr['verb'],$rr['object-type']); killme(); - switch($rr['verb']){ - case 'http://activitystrea.ms/schema/1.0/post': - switch ($rr['object-type']){ - case 'http://activitystrea.ms/schema/1.0/event': - $post_type = t('event'); - break; - default: - $post_type = t('status'); - } - break; - default: - if ($rr['resource-id']){ - $post_type = t('photo'); - $m=array(); - preg_match("/\[url=([^]]*)\]/", $rr['body'], $m); - $rr['plink'] = $m[1]; - } else - $post_type = t('status'); - } - $plink = '' . $post_type . ''; - - $aside['$like_items'][] = sprintf( t('%1$s likes %2$s\'s %3$s'), $author, $objauthor, $plink); - - } - } - - // last 12 photos - if(!$close_lastphotos) { - $aside['$photos_title'] = t('Last photos'); - $aside['$photos_items'] = array(); - $r = q("SELECT `photo`.`id`, `photo`.`resource-id`, `photo`.`scale`, `photo`.`desc`, `user`.`nickname`, `user`.`username` FROM - (SELECT `resource-id`, MAX(`scale`) as maxscale FROM `photo` - WHERE `profile`=0 AND `contact-id`=0 AND `album` NOT IN ('Contact Photos', '%s', 'Profile Photos', '%s') - AND `allow_cid`='' AND `allow_gid`='' AND `deny_cid`='' AND `deny_gid`='' GROUP BY `resource-id`) AS `t1` - INNER JOIN `photo` ON `photo`.`resource-id`=`t1`.`resource-id` AND `photo`.`scale` = `t1`.`maxscale`, - `user` - WHERE `user`.`uid` = `photo`.`uid` - AND `user`.`blockwall`=0 - AND `user`.`hidewall`=0 - ORDER BY `photo`.`edited` DESC - LIMIT 0, 9", - dbesc(t('Contact Photos')), - dbesc(t('Profile Photos')) - ); - if(count($r)) { - $tpl = get_markup_template('ch_directory_item.tpl'); - foreach($r as $rr) { - $photo_page = $a->get_baseurl() . '/photos/' . $rr['nickname'] . '/image/' . $rr['resource-id']; - $photo_url = $a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['scale'] .'.jpg'; - - $entry = replace_macros($tpl,array( - '$id' => $rr['id'], - '$profile_link' => $photo_page, - '$photo' => $photo_url, - '$alt_text' => $rr['username']." : ".$rr['desc'])); - - $aside['$photos_items'][] = $entry; - } - } - } -*/ //right_aside FIND FRIENDS - if (!$close_friends AND local_user()) { + if ($show_friends AND local_user()) { $nv = array(); $nv['title'] = Array("", t('Find Friends'), "", ""); $nv['directory'] = Array('directory', t('Local Directory'), "", ""); - $nv['global_directory'] = Array('http://dir.friendica.com/', t('Global Directory'), "", ""); + $nv['global_directory'] = Array(get_server(), t('Global Directory'), "", ""); $nv['match'] = Array('match', t('Similar Interests'), "", ""); $nv['suggest'] = Array('suggest', t('Friend Suggestions'), "", ""); $nv['invite'] = Array('invite', t('Invite Friends'), "", ""); - $nv['search'] = ' + $nv['search'] = ' @@ -271,17 +188,17 @@ function vier_community_info() { } //Community_Pages at right_aside - if(!$close_pages AND local_user()) { - $page = ' -

'.t("Community Pages").'

-
    '; + if($show_pages AND local_user()) { $pagelist = array(); - $contacts = q("SELECT `id`, `url`, `name`, `micro`FROM `contact` - WHERE `network`= 'dfrn' AND `forum` = 1 AND `uid` = %d + $contacts = q("SELECT `id`, `url`, `name`, `micro` FROM `contact` + WHERE `network`= '%s' AND `forum` AND `uid` = %d AND + NOT `hidden` AND NOT `blocked` AND + NOT `archive` AND NOT `pending` AND + `success_update` > `failure_update` ORDER BY `name` ASC", - intval($a->user['uid'])); + dbesc(NETWORK_DFRN), intval($a->user['uid'])); $pageD = array(); @@ -290,78 +207,141 @@ function vier_community_info() { $pageD[] = array("url"=>$contact["url"], "name"=>$contact["name"], "id"=>$contact["id"], "micro"=>$contact['micro']); }; - $contacts = $pageD; - foreach($contacts as $contact) { - $page .= '
  • ' . $contact['url'] . ' '. - $contact["name"]."
  • "; - } - $page .= '
'; - //if (sizeof($contacts) > 0) + if ($contacts) { + $page = ' +

'.t("Community Pages").'

+
'; + + foreach($contacts as $contact) { + $page .= '"; + } + + $page .= '
'; $aside['$page'] = $page; + } } //END Community Page //helpers - if(!$close_helpers) { - $helpers = array(); - $helpers['title'] = Array("", t('Help or @NewHere ?'), "", ""); - $aside['$helpers'] = $helpers; + if($show_helpers) { + $r = array(); + + $helperlist = get_config("vier", "helperlist"); + + $helpers = explode(",",$helperlist); + + if ($helpers) { + $query = ""; + foreach ($helpers AS $index=>$helper) { + if ($query != "") + $query .= ","; + + $query .= "'".dbesc(normalise_link(trim($helper)))."'"; + } + + $r = q("SELECT `url`, `name` FROM `gcontact` WHERE `nurl` IN (%s)", $query); + } + + foreach ($r AS $index => $helper) + $r[$index]["url"] = zrl($helper["url"]); + + $r[] = Array("url" => "help/Quick-Start-guide", "name" => t("Quick Start")); + + $tpl = get_markup_template('ch_helpers.tpl'); + + if ($r) { + + $helpers = array(); + $helpers['title'] = Array("", t('Help'), "", ""); + + $aside['$helpers_items'] = array(); + + foreach($r as $rr) { + $entry = replace_macros($tpl,array( + '$url' => $rr['url'], + '$title' => $rr['name'], + )); + $aside['$helpers_items'][] = $entry; + } + + $aside['$helpers'] = $helpers; + } } //end helpers //connectable services - if (!$close_services) { - $con_services = array(); - $con_services['title'] = Array("", t('Connect Services'), "", ""); - $aside['$con_services'] = $con_services; + if ($show_services) { + + $r = array(); + + if (nodeinfo_plugin_enabled("appnet")) + $r[] = array("photo" => "images/appnet.png", "name" => "App.net"); + + if (nodeinfo_plugin_enabled("buffer")) + $r[] = array("photo" => "images/buffer.png", "name" => "Buffer"); + + if (nodeinfo_plugin_enabled("blogger")) + $r[] = array("photo" => "images/blogger.png", "name" => "Blogger"); + + if (nodeinfo_plugin_enabled("dwpost")) + $r[] = array("photo" => "images/dreamwidth.png", "name" => "Dreamwidth"); + + if (nodeinfo_plugin_enabled("fbpost")) + $r[] = array("photo" => "images/facebook.png", "name" => "Facebook"); + + if (nodeinfo_plugin_enabled("statusnet")) + $r[] = array("photo" => "images/gnusocial.png", "name" => "GNU Social"); + + if (nodeinfo_plugin_enabled("gpluspost")) + $r[] = array("photo" => "images/googleplus.png", "name" => "Google+"); + + //if (nodeinfo_plugin_enabled("ijpost")) + // $r[] = array("photo" => "images/", "name" => ""); + + if (nodeinfo_plugin_enabled("libertree")) + $r[] = array("photo" => "images/libertree.png", "name" => "Libertree"); + + //if (nodeinfo_plugin_enabled("ljpost")) + // $r[] = array("photo" => "images/", "name" => ""); + + if (nodeinfo_plugin_enabled("pumpio")) + $r[] = array("photo" => "images/pumpio.png", "name" => "pump.io"); + + if (nodeinfo_plugin_enabled("tumblr")) + $r[] = array("photo" => "images/tumblr.png", "name" => "Tumblr"); + + if (nodeinfo_plugin_enabled("twitter")) + $r[] = array("photo" => "images/twitter.png", "name" => "Twitter"); + + if (nodeinfo_plugin_enabled("wppost")) + $r[] = array("photo" => "images/wordpress", "name" => "Wordpress"); + + if(function_exists("imap_open") AND !get_config("system","imap_disabled") AND !get_config("system","dfrn_only")) + $r[] = array("photo" => "images/mail", "name" => "E-Mail"); + + $tpl = get_markup_template('ch_connectors.tpl'); + + if(count($r)) { + + $con_services = array(); + $con_services['title'] = Array("", t('Connect Services'), "", ""); + $aside['$con_services'] = $con_services; + + foreach($r as $rr) { + $entry = replace_macros($tpl,array( + '$url' => $url, + '$photo' => $rr['photo'], + '$alt_text' => $rr['name'], + )); + $aside['$connector_items'][] = $entry; + } + } + } //end connectable services -/* - if($ccCookie != "9") { - $close_pages = get_vier_config( "close_pages", 1 ); - $close_profiles = get_vier_config( "close_profiles", 0 ); - $close_helpers = get_vier_config( "close_helpers", 0 ); - $close_services = get_vier_config( "close_services", 0 ); - $close_friends = get_vier_config( "close_friends", 0 ); - $close_lastusers = get_vier_config( "close_lastusers", 0 ); - $close_lastphotos = get_vier_config( "close_lastphotos", 0 ); - $close_lastlikes = get_vier_config( "close_lastlikes", 0 ); - $close_or_not = array('1'=>t("don't show"), '0'=>t("show"),); - $boxsettings['title'] = Array("", t('Show/hide boxes at right-hand column:'), "", ""); - $aside['$boxsettings'] = $boxsettings; - $aside['$close_pages'] = array('vier_close_pages', t('Community Pages'), $close_pages, '', $close_or_not); - $aside['$close_profiles'] = array('vier_close_profiles', t('Community Profiles'), $close_profiles, '', $close_or_not); - $aside['$close_helpers'] = array('vier_close_helpers', t('Help or @NewHere ?'), $close_helpers, '', $close_or_not); - $aside['$close_services'] = array('vier_close_services', t('Connect Services'), $close_services, '', $close_or_not); - $aside['$close_friends'] = array('vier_close_friends', t('Find Friends'), $close_friends, '', $close_or_not); - $aside['$close_lastusers'] = array('vier_close_lastusers', t('Last users'), $close_lastusers, '', $close_or_not); - $aside['$close_lastphotos'] = array('vier_close_lastphotos', t('Last photos'), $close_lastphotos, '', $close_or_not); - $aside['$close_lastlikes'] = array('vier_close_lastlikes', t('Last likes'), $close_lastlikes, '', $close_or_not); - $aside['$sub'] = t('Submit'); - $baseurl = $a->get_baseurl($ssl_state); - $aside['$baseurl'] = $baseurl; - - if (isset($_POST['vier-settings-box-sub']) && $_POST['vier-settings-box-sub']!=''){ - set_pconfig(local_user(), 'vier', 'close_pages', $_POST['vier_close_pages']); - set_pconfig(local_user(), 'vier', 'close_profiles', $_POST['vier_close_profiles']); - set_pconfig(local_user(), 'vier', 'close_helpers', $_POST['vier_close_helpers']); - set_pconfig(local_user(), 'vier', 'close_services', $_POST['vier_close_services']); - set_pconfig(local_user(), 'vier', 'close_friends', $_POST['vier_close_friends']); - set_pconfig(local_user(), 'vier', 'close_lastusers', $_POST['vier_close_lastusers']); - set_pconfig(local_user(), 'vier', 'close_lastphotos', $_POST['vier_close_lastphotos']); - set_pconfig(local_user(), 'vier', 'close_lastlikes', $_POST['vier_close_lastlikes']); - } - } - $close = t('Settings'); - $aside['$close'] = $close; -*/ - //get_baseurl - $url = $a->get_baseurl($ssl_state); - $aside['$url'] = $url; - //print right_aside $tpl = get_markup_template('communityhome.tpl'); $a->page['right_aside'] = replace_macros($tpl, $aside); diff --git a/view/theme/vier/wide.css b/view/theme/vier/wide.css index 7c703a4af5..ecffd485e0 100644 --- a/view/theme/vier/wide.css +++ b/view/theme/vier/wide.css @@ -10,14 +10,41 @@ right_aside { overflow-y: auto; z-index: 2; line-height: 17px; - position: fixed; color: #737373; - top: 44px; - height: calc(100% - 54px); + top: 44px; + position: absolute; +/* position: fixed; + height: calc(100% - 54px); */ display: block; margin-left: calc(100% - 215px); + box-shadow: 1px 2px 0px 0px #D8D8D8; } #forumlist-sidebar { display: none; } + +right_aside span.sbox { + margin-left: 10px; +} + +right_aside .directory-item { + width: 50px; + height: 50px; +} + +right_aside img.directory-photo-img { + width: 45px; + height: 45px; +} + +right_aside #right_services img { + width: 32px; +} + +right_aside #lastusers-wrapper, +right_aside div.itens-wrapper, +right_aside #right_services_icons { + margin-left: 10px; + margin-top: 5px; +} From f92a2539468cb2c8ec303baec0e390f6baac5ca7 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 3 Oct 2015 13:58:10 +0200 Subject: [PATCH 039/443] Bugfix: Remote self worked anymore --- include/feed.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/feed.php b/include/feed.php index 18d96e6abb..dd360a07b5 100644 --- a/include/feed.php +++ b/include/feed.php @@ -106,9 +106,17 @@ function feed_import($xml,$importer,&$contact, &$hub) { $header["wall"] = 0; $header["origin"] = 0; $header["gravity"] = GRAVITY_PARENT; + $header["private"] = 2; + $header["verb"] = ACTIVITY_POST; + $header["object-type"] = ACTIVITY_OBJ_NOTE; $header["contact-id"] = $contact["id"]; + if(!strlen($contact["notify"])) { + // one way feed - no remote comment ability + $header["last-child"] = 0; + } + if (!is_object($entries)) return; From c775d6885bd464da8f998585fa1077d9e75701d5 Mon Sep 17 00:00:00 2001 From: rabuzarus Date: Wed, 30 Sep 2015 00:19:54 +0200 Subject: [PATCH 040/443] port of reds geotag feature --- include/Photo.php | 51 +++++++++++++++++++++++--------------------- include/features.php | 1 + include/photos.php | 27 +++++++++++++++++++++++ mod/photos.php | 50 ++++++++++++++++++++++++++++++++++++------- 4 files changed, 97 insertions(+), 32 deletions(-) create mode 100644 include/photos.php diff --git a/include/Photo.php b/include/Photo.php index 785601c7e4..9732801c9a 100644 --- a/include/Photo.php +++ b/include/Photo.php @@ -345,38 +345,37 @@ class Photo { } public function orient($filename) { - if ($this->is_imagick()) { - // based off comment on http://php.net/manual/en/imagick.getimageorientation.php - $orientation = $this->image->getImageOrientation(); - switch ($orientation) { - case imagick::ORIENTATION_BOTTOMRIGHT: - $this->image->rotateimage("#000", 180); - break; - case imagick::ORIENTATION_RIGHTTOP: - $this->image->rotateimage("#000", 90); - break; - case imagick::ORIENTATION_LEFTBOTTOM: - $this->image->rotateimage("#000", -90); - break; - } + if ($this->is_imagick()) { + // based off comment on http://php.net/manual/en/imagick.getimageorientation.php + $orientation = $this->image->getImageOrientation(); + switch ($orientation) { + case imagick::ORIENTATION_BOTTOMRIGHT: + $this->image->rotateimage("#000", 180); + break; + case imagick::ORIENTATION_RIGHTTOP: + $this->image->rotateimage("#000", 90); + break; + case imagick::ORIENTATION_LEFTBOTTOM: + $this->image->rotateimage("#000", -90); + break; + } - $this->image->setImageOrientation(imagick::ORIENTATION_TOPLEFT); - return TRUE; - } + $this->image->setImageOrientation(imagick::ORIENTATION_TOPLEFT); + return TRUE; + } // based off comment on http://php.net/manual/en/function.imagerotate.php if(!$this->is_valid()) - return FALSE; + return FALSE; if( (! function_exists('exif_read_data')) || ($this->getType() !== 'image/jpeg') ) - return; + return; - $exif = @exif_read_data($filename); + $exif = @exif_read_data($filename,null,true); + if(! $exif) + return; - if(! $exif) - return; - - $ort = $exif['Orientation']; + $ort = $exif['IFD0']['Orientation']; switch($ort) { @@ -413,6 +412,10 @@ class Photo { $this->rotate(90); break; } + + // logger('exif: ' . print_r($exif,true)); + return $exif; + } diff --git a/include/features.php b/include/features.php index 091dfc6e9d..5450c7fab0 100644 --- a/include/features.php +++ b/include/features.php @@ -23,6 +23,7 @@ function get_features() { t('General Features'), //array('expire', t('Content Expiration'), t('Remove old posts/comments after a period of time')), array('multi_profiles', t('Multiple Profiles'), t('Ability to create multiple profiles')), + array('photo_location', t('Photo Location'), t('Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map.'),false), ), // Post composition diff --git a/include/photos.php b/include/photos.php new file mode 100644 index 0000000000..93a565b511 --- /dev/null +++ b/include/photos.php @@ -0,0 +1,27 @@ + 0 ? gps2Num($exifCoord[0]) : 0; + $minutes = count($exifCoord) > 1 ? gps2Num($exifCoord[1]) : 0; + $seconds = count($exifCoord) > 2 ? gps2Num($exifCoord[2]) : 0; + + $flip = ($hemi == 'W' or $hemi == 'S') ? -1 : 1; + + return floatval($flip * ($degrees + ($minutes / 60) + ($seconds / 3600))); +} + +function gps2Num($coordPart) { + $parts = explode('/', $coordPart); + + if (count($parts) <= 0) + return 0; + + if (count($parts) == 1) + return $parts[0]; + + return floatval($parts[0]) / floatval($parts[1]); +} diff --git a/mod/photos.php b/mod/photos.php index 6d147a6f55..03021e5501 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -1,5 +1,6 @@ get_baseurl() . '/' . $_SESSION['photo_return']); } + /* + * RENAME photo album + */ + $newalbum = notags(trim($_POST['albumname'])); if($newalbum != $album) { q("UPDATE `photo` SET `album` = '%s' WHERE `album` = '%s' AND `uid` = %d", @@ -212,6 +217,9 @@ function photos_post(&$a) { return; // NOTREACHED } + /* + * DELETE photo album and all its photos + */ if($_POST['dropalbum'] == t('Delete Album')) { @@ -540,7 +548,7 @@ function photos_post(&$a) { if(count($links)) { foreach($links as $link) { if($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page') - $profile = $link['@attributes']['href']; + $profile = $link['@attributes']['href']; if($link['@attributes']['rel'] === 'salmon') { $salmon = '$url:' . str_replace(',','%sc',$link['@attributes']['href']); if(strlen($inform)) @@ -839,7 +847,7 @@ function photos_post(&$a) { killme(); } - $ph->orient($src); + $exif = $ph->orient($src); @unlink($src); $max_length = get_config('system','max_image_length'); @@ -880,8 +888,20 @@ function photos_post(&$a) { // Create item container + $lat = $lon = null; + + if($exif && $exif['GPS']) { + if(feature_enabled($channel_id,'photo_location')) { + $lat = getGps($exif['GPS']['GPSLatitude'], $exif['GPS']['GPSLatitudeRef']); + $lon = getGps($exif['GPS']['GPSLongitude'], $exif['GPS']['GPSLongitudeRef']); + } + } + $arr = array(); + if($lat && $lon) + $arr['coord'] = $lat . ' ' . $lon; + $arr['uid'] = $page_owner_uid; $arr['uri'] = $uri; $arr['parent-uri'] = $uri; @@ -1068,10 +1088,9 @@ function photos_content(&$a) { $is_owner = (local_user() && (local_user() == $owner_uid)); $o .= profile_tabs($a,$is_owner, $a->data['user']['nickname']); - // - // dispatch request - // - + /** + * Display upload form + */ if($datatype === 'upload') { if(! ($can_post)) { @@ -1182,6 +1201,10 @@ function photos_content(&$a) { return $o; } + /* + * Display a single photo album + */ + if($datatype === 'album') { $album = hex2bin($datum); @@ -1209,6 +1232,7 @@ function photos_content(&$a) { intval($a->pager['itemspage']) ); + //edit album name if($cmd === 'edit') { if(($album !== t('Profile Photos')) && ($album !== 'Contact Photos') && ($album !== t('Contact Photos'))) { if($can_post) { @@ -1296,11 +1320,12 @@ function photos_content(&$a) { } + /** + * Display one photo + */ if($datatype === 'image') { - - //$o = ''; // fetch image, item containing image, then comments @@ -1424,6 +1449,9 @@ function photos_content(&$a) { $linked_items = q("SELECT * FROM `item` WHERE `resource-id` = '%s' $sql_extra LIMIT 1", dbesc($datum) ); + + $map = null; + if(count($linked_items)) { $link_item = $linked_items[0]; $r = q("SELECT COUNT(*) AS `total` @@ -1467,6 +1495,10 @@ function photos_content(&$a) { ); update_thread($link_item['parent']); } + + if($link_item['coord']) { + $map = generate_map($link_item['coord']); + } } $tags=Null; @@ -1759,6 +1791,8 @@ function photos_content(&$a) { '$desc' => $ph[0]['desc'], '$tags' => $tags_e, '$edit' => $edit, + '$map' => $map, + '$map_text' => t('Map'), '$likebuttons' => $likebuttons, '$like' => $like_e, '$dislike' => $dikslike_e, From 2840bf22931acc060b57d2da99eb65ae3cf338e7 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 3 Oct 2015 23:16:40 +0200 Subject: [PATCH 041/443] New option to permit crawlers --- include/network.php | 15 ++++++++++++--- mod/search.php | 27 +++++++++++++++++++++++---- 2 files changed, 35 insertions(+), 7 deletions(-) diff --git a/include/network.php b/include/network.php index 02b2d7c2ae..2815e1ab85 100644 --- a/include/network.php +++ b/include/network.php @@ -309,16 +309,25 @@ function xml_status($st, $message = '') { if(! function_exists('http_status_exit')) { -function http_status_exit($val) { - +function http_status_exit($val, $description = array()) { $err = ''; - if($val >= 400) + if($val >= 400) { $err = 'Error'; + if (!isset($description["title"])) + $description["title"] = $err." ".$val; + } if($val >= 200 && $val < 300) $err = 'OK'; logger('http_status_exit ' . $val); header($_SERVER["SERVER_PROTOCOL"] . ' ' . $val . ' ' . $err); + + if (isset($description["title"])) { + $tpl = get_markup_template('http_status.tpl'); + echo replace_macros($tpl, array('$title' => $description["title"], + '$description' => $description["description"])); + } + killme(); }} diff --git a/mod/search.php b/mod/search.php index 251dd4778f..c15dfae3fe 100644 --- a/mod/search.php +++ b/mod/search.php @@ -95,10 +95,29 @@ function search_content(&$a) { } if(get_config('system','local_search') AND !local_user()) { - notice(t('Public access denied.').EOL); - return; - //http_status_exit(403); - //killme(); + http_status_exit(403, + array("title" => t("Public access denied."), + "description" => t("Only logged in users are permitted to perform a search."))); + killme(); + //notice(t('Public access denied.').EOL); + //return; + } + + if (get_config('system','permit_crawling') AND !local_user()) { + // To-Do: + // - 10 requests are "free", after the 11th only a call per minute is allowed + + $remote = $_SERVER["REMOTE_ADDR"]; + $result = Cache::get("remote_search:".$remote); + if (!is_null($result)) { + if ($result > (time() - 60)) { + http_status_exit(429, + array("title" => t("Too Many Requests"), + "description" => t("Only one search per minute is permitted for not logged in users."))); + killme(); + } + } + Cache::set("remote_search:".$remote, time(), CACHE_HOUR); } nav_set_selected('search'); From 42ad8c2b25ddc33398c8fc268b2cccae11da5de7 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 3 Oct 2015 23:19:09 +0200 Subject: [PATCH 042/443] New template for http status messages --- view/templates/http_status.tpl | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 view/templates/http_status.tpl diff --git a/view/templates/http_status.tpl b/view/templates/http_status.tpl new file mode 100644 index 0000000000..55cc133ff0 --- /dev/null +++ b/view/templates/http_status.tpl @@ -0,0 +1,9 @@ + + + {{$title}} + + +

{{$title}}

+

{{$description}}

+ + From 4e1bffd0a935b7bc047917bc188257f61c7557a2 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 3 Oct 2015 23:57:00 +0200 Subject: [PATCH 043/443] Issue 1914: A feed was falsely detected as OStatus --- include/Scrape.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Scrape.php b/include/Scrape.php index 93d68be22b..ce20350772 100644 --- a/include/Scrape.php +++ b/include/Scrape.php @@ -552,7 +552,7 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { if($network !== NETWORK_ZOT && $network !== NETWORK_DFRN && $network !== NETWORK_MAIL) { if($diaspora) $network = NETWORK_DIASPORA; - elseif($has_lrdd) + elseif($has_lrdd AND ($notify)) $network = NETWORK_OSTATUS; if(strpos($url,'@')) From c0e277cec84a3e26c95ac98a8b27246120030927 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 00:28:15 +0200 Subject: [PATCH 044/443] Issue 1913: Report invalid feed --- include/Scrape.php | 5 +++-- include/gprobe.php | 2 +- include/identity.php | 2 +- include/socgraph.php | 2 +- mod/follow.php | 6 ++++++ 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/include/Scrape.php b/include/Scrape.php index 93d68be22b..5e26c461ae 100644 --- a/include/Scrape.php +++ b/include/Scrape.php @@ -652,9 +652,10 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { $feed->set_raw_data(($xml) ? $xml : ''); $feed->init(); - if($feed->error()) + if($feed->error()) { logger('probe_url: scrape_feed: Error parsing XML: ' . $feed->error()); - + $network = NETWORK_PHANTOM; + } if(! x($vcard,'photo')) $vcard['photo'] = $feed->get_image_url(); diff --git a/include/gprobe.php b/include/gprobe.php index 03cdbd072b..84292f263a 100644 --- a/include/gprobe.php +++ b/include/gprobe.php @@ -47,7 +47,7 @@ function gprobe_run(&$argv, &$argc){ $result = Cache::get("gprobe:".$urlparts["host"]); if (!is_null($result)) { $result = unserialize($result); - if ($result["network"] == NETWORK_FEED) { + if (in_array($result["network"], array(NETWORK_FEED, NETWORK_PHANTOM))) { logger("DDoS attempt detected for ".$urlparts["host"]." by ".$_SERVER["REMOTE_ADDR"].". server data: ".print_r($_SERVER, true), LOGGER_DEBUG); return; } diff --git a/include/identity.php b/include/identity.php index b4bc79e00f..6faddffd3c 100644 --- a/include/identity.php +++ b/include/identity.php @@ -710,7 +710,7 @@ function zrl_init(&$a) { $result = Cache::get("gprobe:".$urlparts["host"]); if (!is_null($result)) { $result = unserialize($result); - if ($result["network"] == NETWORK_FEED) { + if (in_array($result["network"], array(NETWORK_FEED, NETWORK_PHANTOM))) { logger("DDoS attempt detected for ".$urlparts["host"]." by ".$_SERVER["REMOTE_ADDR"].". server data: ".print_r($_SERVER, true), LOGGER_DEBUG); return; } diff --git a/include/socgraph.php b/include/socgraph.php index d380af4344..b0f0c8672f 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -570,7 +570,7 @@ function poco_last_updated($profile, $force = false) { return false; } - if (($data["poll"] == "") OR ($data["network"] == NETWORK_FEED)) { + if (($data["poll"] == "") OR (in_array($data["network"], array(NETWORK_FEED, NETWORK_PHANTOM)))) { q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc(normalise_link($profile))); return false; diff --git a/mod/follow.php b/mod/follow.php index bdcde77435..dd717aacd9 100755 --- a/mod/follow.php +++ b/mod/follow.php @@ -31,6 +31,12 @@ function follow_content(&$a) { $ret = probe_url($url); + if ($ret["network"] == NETWORK_PHANTOM) { + notice( t("The network type couldn't be detected. Contact can't be added.") . EOL); + goaway($_SESSION['return_url']); + // NOTREACHED + } + if ($ret["network"] == NETWORK_MAIL) $ret["url"] = $ret["addr"]; From f93a2242e03377f9ae1c866be05c219434611e72 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sun, 4 Oct 2015 01:00:24 +0200 Subject: [PATCH 045/443] missed one to delete --- mod/editpost.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/mod/editpost.php b/mod/editpost.php index c1f23800a3..0cf6d0d4cf 100644 --- a/mod/editpost.php +++ b/mod/editpost.php @@ -102,8 +102,6 @@ function editpost_content(&$a) { //$tpl = replace_macros($tpl,array('$jotplugins' => $jotplugins)); - $voting = feature_enabled(local_user(),'consensus_tools'); - $o .= replace_macros($tpl,array( '$return_path' => $_SESSION['return_url'], '$action' => 'item', @@ -122,7 +120,6 @@ function editpost_content(&$a) { '$shortsetloc' => t('set location'), '$noloc' => t('Clear browser location'), '$shortnoloc' => t('clear location'), - '$voting' => t('Toggle voting'), '$wait' => t('Please wait'), '$permset' => t('Permission settings'), '$ptyp' => $itm[0]['type'], From 01d38a353ca080a169a832f05dca1236d9d230ab Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 4 Oct 2015 09:23:58 +0200 Subject: [PATCH 046/443] DE update to the translation --- view/de/messages.po | 11200 +++++++++++++++++++++--------------------- view/de/strings.php | 2006 ++++---- 2 files changed, 6701 insertions(+), 6505 deletions(-) diff --git a/view/de/messages.po b/view/de/messages.po index e1d3d54f81..3a7a5d53b4 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -31,9 +31,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-16 17:08+0000\n" -"Last-Translator: Abrax \n" +"POT-Creation-Date: 2015-09-22 09:58+0200\n" +"PO-Revision-Date: 2015-10-04 07:21+0000\n" +"Last-Translator: bavatar \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,6 +41,3084 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: object/Item.php:95 +msgid "This entry was edited" +msgstr "Dieser Beitrag wurde bearbeitet." + +#: object/Item.php:117 mod/photos.php:1379 mod/content.php:622 +msgid "Private Message" +msgstr "Private Nachricht" + +#: object/Item.php:121 mod/settings.php:694 mod/content.php:730 +msgid "Edit" +msgstr "Bearbeiten" + +#: object/Item.php:130 mod/photos.php:1672 mod/content.php:439 +#: mod/content.php:742 include/conversation.php:612 +msgid "Select" +msgstr "Auswählen" + +#: object/Item.php:131 mod/admin.php:1087 mod/photos.php:1673 +#: mod/contacts.php:801 mod/settings.php:695 mod/group.php:171 +#: mod/content.php:440 mod/content.php:743 include/conversation.php:613 +msgid "Delete" +msgstr "Löschen" + +#: object/Item.php:134 mod/content.php:765 +msgid "save to folder" +msgstr "In Ordner speichern" + +#: object/Item.php:196 mod/content.php:755 +msgid "add star" +msgstr "markieren" + +#: object/Item.php:197 mod/content.php:756 +msgid "remove star" +msgstr "Markierung entfernen" + +#: object/Item.php:198 mod/content.php:757 +msgid "toggle star status" +msgstr "Markierung umschalten" + +#: object/Item.php:201 mod/content.php:760 +msgid "starred" +msgstr "markiert" + +#: object/Item.php:209 +msgid "ignore thread" +msgstr "Thread ignorieren" + +#: object/Item.php:210 +msgid "unignore thread" +msgstr "Thread nicht mehr ignorieren" + +#: object/Item.php:211 +msgid "toggle ignore status" +msgstr "Ignoriert-Status ein-/ausschalten" + +#: object/Item.php:214 mod/ostatus_subscribe.php:69 +msgid "ignored" +msgstr "Ignoriert" + +#: object/Item.php:221 mod/content.php:761 +msgid "add tag" +msgstr "Tag hinzufügen" + +#: object/Item.php:232 mod/photos.php:1561 mod/content.php:686 +msgid "I like this (toggle)" +msgstr "Ich mag das (toggle)" + +#: object/Item.php:232 mod/content.php:686 +msgid "like" +msgstr "mag ich" + +#: object/Item.php:233 mod/photos.php:1562 mod/content.php:687 +msgid "I don't like this (toggle)" +msgstr "Ich mag das nicht (toggle)" + +#: object/Item.php:233 mod/content.php:687 +msgid "dislike" +msgstr "mag ich nicht" + +#: object/Item.php:235 mod/content.php:689 +msgid "Share this" +msgstr "Weitersagen" + +#: object/Item.php:235 mod/content.php:689 +msgid "share" +msgstr "Teilen" + +#: object/Item.php:318 include/conversation.php:665 +msgid "Categories:" +msgstr "Kategorien:" + +#: object/Item.php:319 include/conversation.php:666 +msgid "Filed under:" +msgstr "Abgelegt unter:" + +#: object/Item.php:328 object/Item.php:329 mod/content.php:473 +#: mod/content.php:854 mod/content.php:855 include/conversation.php:653 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Das Profil von %s auf %s betrachten." + +#: object/Item.php:330 mod/content.php:856 +msgid "to" +msgstr "zu" + +#: object/Item.php:331 +msgid "via" +msgstr "via" + +#: object/Item.php:332 mod/content.php:857 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" + +#: object/Item.php:333 mod/content.php:858 +msgid "via Wall-To-Wall:" +msgstr "via Wall-To-Wall:" + +#: object/Item.php:342 mod/content.php:483 mod/content.php:866 +#: include/conversation.php:673 +#, php-format +msgid "%s from %s" +msgstr "%s von %s" + +#: object/Item.php:363 object/Item.php:679 mod/photos.php:1583 +#: mod/photos.php:1627 mod/photos.php:1715 mod/content.php:711 boot.php:764 +msgid "Comment" +msgstr "Kommentar" + +#: object/Item.php:366 mod/message.php:335 mod/message.php:566 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/photos.php:1564 +#: mod/content.php:501 mod/content.php:885 include/conversation.php:691 +#: include/conversation.php:1074 +msgid "Please wait" +msgstr "Bitte warten" + +#: object/Item.php:389 mod/content.php:605 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d Kommentar" +msgstr[1] "%d Kommentare" + +#: object/Item.php:391 object/Item.php:404 mod/content.php:607 +#: include/text.php:2038 +msgid "comment" +msgid_plural "comments" +msgstr[0] "Kommentar" +msgstr[1] "Kommentare" + +#: object/Item.php:392 mod/content.php:608 boot.php:765 include/items.php:5147 +#: include/contact_widgets.php:205 +msgid "show more" +msgstr "mehr anzeigen" + +#: object/Item.php:677 mod/photos.php:1581 mod/photos.php:1625 +#: mod/photos.php:1713 mod/content.php:709 +msgid "This is you" +msgstr "Das bist Du" + +#: object/Item.php:680 mod/fsuggest.php:107 mod/message.php:336 +#: mod/message.php:565 mod/events.php:511 mod/photos.php:1104 +#: mod/photos.php:1223 mod/photos.php:1533 mod/photos.php:1584 +#: mod/photos.php:1628 mod/photos.php:1716 mod/contacts.php:596 +#: mod/invite.php:140 mod/profiles.php:683 mod/manage.php:110 mod/poke.php:199 +#: mod/localtime.php:45 mod/install.php:250 mod/install.php:288 +#: mod/content.php:712 mod/mood.php:137 mod/crepair.php:191 +#: view/theme/diabook/theme.php:633 view/theme/diabook/config.php:148 +#: view/theme/vier/config.php:56 view/theme/dispy/config.php:70 +#: view/theme/duepuntozero/config.php:59 view/theme/quattro/config.php:64 +#: view/theme/cleanzero/config.php:80 +msgid "Submit" +msgstr "Senden" + +#: object/Item.php:681 mod/content.php:713 +msgid "Bold" +msgstr "Fett" + +#: object/Item.php:682 mod/content.php:714 +msgid "Italic" +msgstr "Kursiv" + +#: object/Item.php:683 mod/content.php:715 +msgid "Underline" +msgstr "Unterstrichen" + +#: object/Item.php:684 mod/content.php:716 +msgid "Quote" +msgstr "Zitat" + +#: object/Item.php:685 mod/content.php:717 +msgid "Code" +msgstr "Code" + +#: object/Item.php:686 mod/content.php:718 +msgid "Image" +msgstr "Bild" + +#: object/Item.php:687 mod/content.php:719 +msgid "Link" +msgstr "Link" + +#: object/Item.php:688 mod/content.php:720 +msgid "Video" +msgstr "Video" + +#: object/Item.php:689 mod/editpost.php:145 mod/events.php:509 +#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 +#: mod/content.php:721 include/conversation.php:1089 +msgid "Preview" +msgstr "Vorschau" + +#: index.php:225 mod/apps.php:7 +msgid "You must be logged in to use addons. " +msgstr "Sie müssen angemeldet sein um Addons benutzen zu können." + +#: index.php:269 mod/help.php:42 mod/p.php:16 mod/p.php:25 +msgid "Not Found" +msgstr "Nicht gefunden" + +#: index.php:272 mod/help.php:45 +msgid "Page not found." +msgstr "Seite nicht gefunden." + +#: index.php:381 mod/profperm.php:19 mod/group.php:72 +msgid "Permission denied" +msgstr "Zugriff verweigert" + +#: index.php:382 mod/fsuggest.php:78 mod/files.php:170 +#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 +#: mod/editpost.php:10 mod/dfrn_confirm.php:55 mod/events.php:164 +#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79 +#: mod/wallmessage.php:103 mod/nogroup.php:25 mod/wall_upload.php:70 +#: mod/wall_upload.php:71 mod/api.php:26 mod/api.php:31 mod/photos.php:156 +#: mod/photos.php:1072 mod/register.php:42 mod/attach.php:33 +#: mod/contacts.php:350 mod/follow.php:9 mod/follow.php:44 mod/follow.php:83 +#: mod/uimport.php:23 mod/allfriends.php:9 mod/invite.php:15 +#: mod/invite.php:101 mod/settings.php:20 mod/settings.php:116 +#: mod/settings.php:619 mod/display.php:508 mod/profiles.php:165 +#: mod/profiles.php:615 mod/wall_attach.php:60 mod/wall_attach.php:61 +#: mod/suggest.php:58 mod/repair_ostatus.php:9 mod/manage.php:96 +#: mod/delegate.php:12 mod/viewcontacts.php:24 mod/notes.php:20 +#: mod/poke.php:135 mod/ostatus_subscribe.php:9 mod/profile_photo.php:19 +#: mod/profile_photo.php:169 mod/profile_photo.php:180 +#: mod/profile_photo.php:193 mod/group.php:19 mod/regmod.php:110 +#: mod/item.php:170 mod/item.php:186 mod/mood.php:114 mod/network.php:4 +#: mod/crepair.php:120 include/items.php:5036 +msgid "Permission denied." +msgstr "Zugriff verweigert." + +#: index.php:441 +msgid "toggle mobile" +msgstr "auf/von Mobile Ansicht wechseln" + +#: mod/update_notes.php:37 mod/update_profile.php:41 +#: mod/update_community.php:18 mod/update_network.php:25 +#: mod/update_display.php:22 +msgid "[Embedded content - reload page to view]" +msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]" + +#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/dfrn_confirm.php:120 +#: mod/crepair.php:134 +msgid "Contact not found." +msgstr "Kontakt nicht gefunden." + +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Kontaktvorschlag gesendet." + +#: mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Kontakte vorschlagen" + +#: mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Schlage %s einen Kontakt vor" + +#: mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." + +#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung." + +#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden." + +#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse." + +#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden" +msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden" + +#: mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Kontaktanfrage abgeschlossen." + +#: mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Nicht behebbarer Protokollfehler." + +#: mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profil nicht verfügbar." + +#: mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten." + +#: mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Maßnahmen zum Spamschutz wurden ergriffen." + +#: mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen." + +#: mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Ungültiger Locator" + +#: mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Ungültige E-Mail-Adresse." + +#: mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen." + +#: mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "Konnte Deinen Namen an der angegebenen Stelle nicht finden." + +#: mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Du hast Dich hier bereits vorgestellt." + +#: mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Es scheint so, als ob Du bereits mit %s befreundet bist." + +#: mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Ungültige Profil-URL." + +#: mod/dfrn_request.php:507 include/follow.php:70 +msgid "Disallowed profile URL." +msgstr "Nicht erlaubte Profil-URL." + +#: mod/dfrn_request.php:576 mod/contacts.php:194 +msgid "Failed to update contact record." +msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." + +#: mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "Deine Kontaktanfrage wurde gesendet." + +#: mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen." + +#: mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an." + +#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "Bestätigen" + +#: mod/dfrn_request.php:686 +msgid "Hide this contact" +msgstr "Verberge diesen Kontakt" + +#: mod/dfrn_request.php:689 +#, php-format +msgid "Welcome home %s." +msgstr "Willkommen zurück %s." + +#: mod/dfrn_request.php:690 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Bitte bestätige Deine Kontaktanfrage bei %s." + +#: mod/dfrn_request.php:732 mod/dfrn_confirm.php:753 include/items.php:4250 +msgid "[Name Withheld]" +msgstr "[Name unterdrückt]" + +#: mod/dfrn_request.php:777 mod/photos.php:942 mod/videos.php:187 +#: mod/search.php:93 mod/search.php:98 mod/display.php:223 +#: mod/community.php:18 mod/viewcontacts.php:19 mod/directory.php:35 +msgid "Public access denied." +msgstr "Öffentlicher Zugriff verweigert." + +#: mod/dfrn_request.php:819 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:" + +#: mod/dfrn_request.php: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 "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten." + +#: mod/dfrn_request.php:845 +msgid "Friend/Connection Request" +msgstr "Freundschafts-/Kontaktanfrage" + +#: mod/dfrn_request.php:846 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: mod/dfrn_request.php:847 mod/follow.php:58 +msgid "Please answer the following:" +msgstr "Bitte beantworte folgendes:" + +#: mod/dfrn_request.php:848 mod/follow.php:59 +#, php-format +msgid "Does %s know you?" +msgstr "Kennt %s Dich?" + +#: mod/dfrn_request.php:848 mod/api.php:106 mod/register.php:236 +#: mod/follow.php:59 mod/settings.php:1068 mod/settings.php:1074 +#: mod/settings.php:1082 mod/settings.php:1086 mod/settings.php:1091 +#: mod/settings.php:1097 mod/settings.php:1103 mod/settings.php:1109 +#: mod/settings.php:1135 mod/settings.php:1136 mod/settings.php:1137 +#: mod/settings.php:1138 mod/settings.php:1139 mod/profiles.php:658 +#: mod/profiles.php:662 +msgid "No" +msgstr "Nein" + +#: mod/dfrn_request.php:848 mod/message.php:210 mod/api.php:105 +#: mod/register.php:235 mod/contacts.php:441 mod/follow.php:59 +#: mod/settings.php:1068 mod/settings.php:1074 mod/settings.php:1082 +#: mod/settings.php:1086 mod/settings.php:1091 mod/settings.php:1097 +#: mod/settings.php:1103 mod/settings.php:1109 mod/settings.php:1135 +#: mod/settings.php:1136 mod/settings.php:1137 mod/settings.php:1138 +#: mod/settings.php:1139 mod/profiles.php:658 mod/profiles.php:661 +#: mod/suggest.php:29 include/items.php:4868 +msgid "Yes" +msgstr "Ja" + +#: mod/dfrn_request.php:852 mod/follow.php:60 +msgid "Add a personal note:" +msgstr "Eine persönliche Notiz beifügen:" + +#: 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 Social Web" + +#: mod/dfrn_request.php:856 mod/settings.php:793 +#: include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: mod/dfrn_request.php:857 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste." + +#: mod/dfrn_request.php:858 mod/follow.php:66 +msgid "Your Identity Address:" +msgstr "Adresse Deines Profils:" + +#: mod/dfrn_request.php:861 mod/follow.php:69 +msgid "Submit Request" +msgstr "Anfrage abschicken" + +#: mod/dfrn_request.php:862 mod/message.php:213 mod/editpost.php:148 +#: mod/fbrowser.php:89 mod/fbrowser.php:125 mod/photos.php:225 +#: mod/photos.php:314 mod/contacts.php:444 mod/videos.php:121 +#: mod/follow.php:70 mod/tagrm.php:11 mod/tagrm.php:94 mod/settings.php:633 +#: mod/settings.php:659 mod/suggest.php:32 include/items.php:4871 +#: include/conversation.php:1093 +msgid "Cancel" +msgstr "Abbrechen" + +#: mod/files.php:156 mod/videos.php:373 include/text.php:1460 +msgid "View Video" +msgstr "Video ansehen" + +#: mod/profile.php:21 include/identity.php:77 +msgid "Requested profile is not available." +msgstr "Das angefragte Profil ist nicht vorhanden." + +#: mod/profile.php:155 mod/display.php:343 +msgid "Access to this profile has been restricted." +msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Tipps für neue Nutzer" + +#: mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Invalid request identifier." + +#: mod/notifications.php:35 mod/notifications.php:175 +#: mod/notifications.php:234 +msgid "Discard" +msgstr "Verwerfen" + +#: mod/notifications.php:51 mod/notifications.php:174 +#: mod/notifications.php:233 mod/contacts.php:556 mod/contacts.php:623 +#: mod/contacts.php:799 +msgid "Ignore" +msgstr "Ignorieren" + +#: mod/notifications.php:78 +msgid "System" +msgstr "System" + +#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 +msgid "Network" +msgstr "Netzwerk" + +#: mod/notifications.php:90 mod/network.php:375 +msgid "Personal" +msgstr "Persönlich" + +#: mod/notifications.php:96 view/theme/diabook/theme.php:123 +#: include/nav.php:105 include/nav.php:156 +msgid "Home" +msgstr "Pinnwand" + +#: mod/notifications.php:102 include/nav.php:161 +msgid "Introductions" +msgstr "Kontaktanfragen" + +#: mod/notifications.php:127 +msgid "Show Ignored Requests" +msgstr "Zeige ignorierte Anfragen" + +#: mod/notifications.php:127 +msgid "Hide Ignored Requests" +msgstr "Verberge ignorierte Anfragen" + +#: mod/notifications.php:159 mod/notifications.php:209 +msgid "Notification type: " +msgstr "Benachrichtigungstyp: " + +#: mod/notifications.php:160 +msgid "Friend Suggestion" +msgstr "Kontaktvorschlag" + +#: mod/notifications.php:162 +#, php-format +msgid "suggested by %s" +msgstr "vorgeschlagen von %s" + +#: mod/notifications.php:167 mod/notifications.php:227 mod/contacts.php:629 +msgid "Hide this contact from others" +msgstr "Verbirg diesen Kontakt vor andere" + +#: mod/notifications.php:168 mod/notifications.php:228 +msgid "Post a new friend activity" +msgstr "Neue-Kontakt Nachricht senden" + +#: mod/notifications.php:168 mod/notifications.php:228 +msgid "if applicable" +msgstr "falls anwendbar" + +#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1085 +msgid "Approve" +msgstr "Genehmigen" + +#: mod/notifications.php:191 +msgid "Claims to be known to you: " +msgstr "Behauptet Dich zu kennen: " + +#: mod/notifications.php:191 +msgid "yes" +msgstr "ja" + +#: mod/notifications.php:191 +msgid "no" +msgstr "nein" + +#: 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 "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" + +#: mod/notifications.php: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 "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" + +#: mod/notifications.php:203 +msgid "Friend" +msgstr "Freund" + +#: mod/notifications.php:204 +msgid "Sharer" +msgstr "Teilenden" + +#: mod/notifications.php:204 +msgid "Fan/Admirer" +msgstr "Fan/Verehrer" + +#: mod/notifications.php:210 +msgid "Friend/Connect Request" +msgstr "Kontakt-/Freundschaftsanfrage" + +#: mod/notifications.php:210 +msgid "New Follower" +msgstr "Neuer Bewunderer" + +#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 +#: mod/directory.php:152 include/event.php:42 include/identity.php:268 +#: include/bb2diaspora.php:170 +msgid "Location:" +msgstr "Ort:" + +#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 +#: include/identity.php:582 +msgid "About:" +msgstr "Über:" + +#: mod/notifications.php:224 include/identity.php:576 +msgid "Tags:" +msgstr "Tags" + +#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 +#: include/identity.php:541 +msgid "Gender:" +msgstr "Geschlecht:" + +#: mod/notifications.php:240 +msgid "No introductions." +msgstr "Keine Kontaktanfragen." + +#: mod/notifications.php:243 include/nav.php:164 +msgid "Notifications" +msgstr "Benachrichtigungen" + +#: mod/notifications.php:281 mod/notifications.php:410 +#: mod/notifications.php:501 +#, php-format +msgid "%s liked %s's post" +msgstr "%s mag %ss Beitrag" + +#: mod/notifications.php:291 mod/notifications.php:420 +#: mod/notifications.php:511 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s mag %ss Beitrag nicht" + +#: mod/notifications.php:306 mod/notifications.php:435 +#: mod/notifications.php:526 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s ist jetzt mit %s befreundet" + +#: mod/notifications.php:313 mod/notifications.php:442 +#, php-format +msgid "%s created a new post" +msgstr "%s hat einen neuen Beitrag erstellt" + +#: mod/notifications.php:314 mod/notifications.php:443 +#: mod/notifications.php:536 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s hat %ss Beitrag kommentiert" + +#: mod/notifications.php:329 +msgid "No more network notifications." +msgstr "Keine weiteren Netzwerk-Benachrichtigungen." + +#: mod/notifications.php:333 +msgid "Network Notifications" +msgstr "Netzwerk Benachrichtigungen" + +#: mod/notifications.php:359 mod/notify.php:72 +msgid "No more system notifications." +msgstr "Keine weiteren Systembenachrichtigungen." + +#: mod/notifications.php:363 mod/notify.php:76 +msgid "System Notifications" +msgstr "Systembenachrichtigungen" + +#: mod/notifications.php:458 +msgid "No more personal notifications." +msgstr "Keine weiteren persönlichen Benachrichtigungen" + +#: mod/notifications.php:462 +msgid "Personal Notifications" +msgstr "Persönliche Benachrichtigungen" + +#: mod/notifications.php:543 +msgid "No more home notifications." +msgstr "Keine weiteren Pinnwand-Benachrichtigungen" + +#: mod/notifications.php:547 +msgid "Home Notifications" +msgstr "Pinnwand Benachrichtigungen" + +#: mod/like.php:149 mod/tagger.php:62 mod/subthread.php:87 +#: view/theme/diabook/theme.php:471 include/text.php:2034 +#: include/diaspora.php:2134 include/conversation.php:126 +#: include/conversation.php:253 +msgid "photo" +msgstr "Foto" + +#: mod/like.php:149 mod/like.php:319 mod/tagger.php:62 mod/subthread.php:87 +#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 +#: include/diaspora.php:2134 include/conversation.php:121 +#: include/conversation.php:130 include/conversation.php:248 +#: include/conversation.php:257 +msgid "status" +msgstr "Status" + +#: mod/like.php:166 view/theme/diabook/theme.php:480 include/diaspora.php:2150 +#: include/conversation.php:137 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s mag %2$ss %3$s" + +#: mod/like.php:168 include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s mag %2$ss %3$s nicht" + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." + +#: mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet." + +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 +msgid "Login failed." +msgstr "Anmeldung fehlgeschlagen." + +#: mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Quelle (bbcode) Text:" + +#: mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:" + +#: mod/babel.php:31 +msgid "Source input: " +msgstr "Originaltext:" + +#: mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (reines HTML): " + +#: mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html: " + +#: mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " + +#: mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Originaltext (Diaspora Format): " + +#: mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: mod/admin.php:57 +msgid "Theme settings updated." +msgstr "Themeneinstellungen aktualisiert." + +#: mod/admin.php:104 mod/admin.php:687 +msgid "Site" +msgstr "Seite" + +#: mod/admin.php:105 mod/admin.php:633 mod/admin.php:1078 mod/admin.php:1093 +msgid "Users" +msgstr "Nutzer" + +#: mod/admin.php:106 mod/admin.php:1182 mod/admin.php:1242 mod/settings.php:66 +msgid "Plugins" +msgstr "Plugins" + +#: mod/admin.php:107 mod/admin.php:1410 mod/admin.php:1444 +msgid "Themes" +msgstr "Themen" + +#: mod/admin.php:108 +msgid "DB updates" +msgstr "DB Updates" + +#: mod/admin.php:109 mod/admin.php:200 +msgid "Inspect Queue" +msgstr "Warteschlange Inspizieren" + +#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1531 +msgid "Logs" +msgstr "Protokolle" + +#: mod/admin.php:125 +msgid "probe address" +msgstr "Adresse untersuchen" + +#: mod/admin.php:126 +msgid "check webfinger" +msgstr "Webfinger überprüfen" + +#: mod/admin.php:131 include/nav.php:193 +msgid "Admin" +msgstr "Administration" + +#: mod/admin.php:132 +msgid "Plugin Features" +msgstr "Plugin Features" + +#: mod/admin.php:134 +msgid "diagnostics" +msgstr "Diagnose" + +#: mod/admin.php:135 +msgid "User registrations waiting for confirmation" +msgstr "Nutzeranmeldungen die auf Bestätigung warten" + +#: mod/admin.php:173 mod/admin.php:1132 mod/admin.php:1352 mod/notice.php:15 +#: mod/display.php:82 mod/display.php:295 mod/display.php:512 +#: mod/viewsrc.php:15 include/items.php:4827 +msgid "Item not found." +msgstr "Beitrag nicht gefunden." + +#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:686 mod/admin.php:1077 +#: mod/admin.php:1181 mod/admin.php:1241 mod/admin.php:1409 mod/admin.php:1443 +#: mod/admin.php:1530 +msgid "Administration" +msgstr "Administration" + +#: mod/admin.php:202 +msgid "ID" +msgstr "ID" + +#: mod/admin.php:203 +msgid "Recipient Name" +msgstr "Empfänger Name" + +#: mod/admin.php:204 +msgid "Recipient Profile" +msgstr "Empfänger Profil" + +#: mod/admin.php:206 +msgid "Created" +msgstr "Erstellt" + +#: mod/admin.php:207 +msgid "Last Tried" +msgstr "Zuletzt versucht" + +#: 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 "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden." + +#: mod/admin.php:220 mod/admin.php:1031 +msgid "Normal Account" +msgstr "Normales Konto" + +#: mod/admin.php:221 mod/admin.php:1032 +msgid "Soapbox Account" +msgstr "Marktschreier-Konto" + +#: mod/admin.php:222 mod/admin.php:1033 +msgid "Community/Celebrity Account" +msgstr "Forum/Promi-Konto" + +#: mod/admin.php:223 mod/admin.php:1034 +msgid "Automatic Friend Account" +msgstr "Automatisches Freundekonto" + +#: mod/admin.php:224 +msgid "Blog Account" +msgstr "Blog-Konto" + +#: mod/admin.php:225 +msgid "Private Forum" +msgstr "Privates Forum" + +#: mod/admin.php:244 +msgid "Message queues" +msgstr "Nachrichten-Warteschlangen" + +#: mod/admin.php:250 +msgid "Summary" +msgstr "Zusammenfassung" + +#: mod/admin.php:252 +msgid "Registered users" +msgstr "Registrierte Nutzer" + +#: mod/admin.php:254 +msgid "Pending registrations" +msgstr "Anstehende Anmeldungen" + +#: mod/admin.php:255 +msgid "Version" +msgstr "Version" + +#: mod/admin.php:260 +msgid "Active plugins" +msgstr "Aktive Plugins" + +#: mod/admin.php:283 +msgid "Can not parse base url. Must have at least ://" +msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen" + +#: mod/admin.php:556 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "RINO2 benötigt die PHP Extension mcrypt." + +#: mod/admin.php:564 +msgid "Site settings updated." +msgstr "Seiteneinstellungen aktualisiert." + +#: mod/admin.php:599 mod/settings.php:885 +msgid "No special theme for mobile devices" +msgstr "Kein spezielles Theme für mobile Geräte verwenden." + +#: mod/admin.php:616 +msgid "No community page" +msgstr "Keine Gemeinschaftsseite" + +#: mod/admin.php:617 +msgid "Public postings from users of this site" +msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite" + +#: mod/admin.php:618 +msgid "Global community page" +msgstr "Globale Gemeinschaftsseite" + +#: mod/admin.php:623 mod/contacts.php:526 +msgid "Never" +msgstr "Niemals" + +#: mod/admin.php:624 +msgid "At post arrival" +msgstr "Beim Empfang von Nachrichten" + +#: mod/admin.php:625 include/contact_selectors.php:56 +msgid "Frequently" +msgstr "immer wieder" + +#: mod/admin.php:626 include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Stündlich" + +#: mod/admin.php:627 include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Zweimal täglich" + +#: mod/admin.php:628 include/contact_selectors.php:59 +msgid "Daily" +msgstr "Täglich" + +#: mod/admin.php:632 mod/contacts.php:585 +msgid "Disabled" +msgstr "Deaktiviert" + +#: mod/admin.php:634 +msgid "Users, Global Contacts" +msgstr "Nutzer, globale Kontakte" + +#: mod/admin.php:635 +msgid "Users, Global Contacts/fallback" +msgstr "Nutzer, globale Kontakte / Fallback" + +#: mod/admin.php:639 +msgid "One month" +msgstr "ein Monat" + +#: mod/admin.php:640 +msgid "Three months" +msgstr "drei Monate" + +#: mod/admin.php:641 +msgid "Half a year" +msgstr "ein halbes Jahr" + +#: mod/admin.php:642 +msgid "One year" +msgstr "ein Jahr" + +#: mod/admin.php:647 +msgid "Multi user instance" +msgstr "Mehrbenutzer Instanz" + +#: mod/admin.php:670 +msgid "Closed" +msgstr "Geschlossen" + +#: mod/admin.php:671 +msgid "Requires approval" +msgstr "Bedarf der Zustimmung" + +#: mod/admin.php:672 +msgid "Open" +msgstr "Offen" + +#: mod/admin.php:676 +msgid "No SSL policy, links will track page SSL state" +msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten" + +#: mod/admin.php:677 +msgid "Force all links to use SSL" +msgstr "SSL für alle Links erzwingen" + +#: mod/admin.php:678 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)" + +#: mod/admin.php:688 mod/admin.php:1243 mod/admin.php:1445 mod/admin.php:1532 +#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:786 +#: mod/settings.php:855 mod/settings.php:937 mod/settings.php:1167 +msgid "Save Settings" +msgstr "Einstellungen speichern" + +#: mod/admin.php:689 mod/register.php:260 +msgid "Registration" +msgstr "Registrierung" + +#: mod/admin.php:690 +msgid "File upload" +msgstr "Datei hochladen" + +#: mod/admin.php:691 +msgid "Policies" +msgstr "Regeln" + +#: mod/admin.php:692 +msgid "Advanced" +msgstr "Erweitert" + +#: mod/admin.php:693 +msgid "Auto Discovered Contact Directory" +msgstr "Automatisch ein Kontaktverzeichnis erstellen" + +#: mod/admin.php:694 +msgid "Performance" +msgstr "Performance" + +#: mod/admin.php:695 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen." + +#: mod/admin.php:698 +msgid "Site name" +msgstr "Seitenname" + +#: mod/admin.php:699 +msgid "Host name" +msgstr "Host Name" + +#: mod/admin.php:700 +msgid "Sender Email" +msgstr "Absender für Emails" + +#: mod/admin.php:700 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "Die E-Mail Adresse die dein Server zum Versenden von Benachrichtigungen verwenden soll." + +#: mod/admin.php:701 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: mod/admin.php:702 +msgid "Shortcut icon" +msgstr "Shortcut Icon" + +#: mod/admin.php:702 +msgid "Link to an icon that will be used for browsers." +msgstr "Link zu einem Icon, das Browser verwenden werden." + +#: mod/admin.php:703 +msgid "Touch icon" +msgstr "Touch Icon" + +#: mod/admin.php:703 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Link zu einem Icon das Tablets und Handies verwenden sollen." + +#: mod/admin.php:704 +msgid "Additional Info" +msgstr "Zusätzliche Informationen" + +#: mod/admin.php:704 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/siteinfo." +msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden." + +#: mod/admin.php:705 +msgid "System language" +msgstr "Systemsprache" + +#: mod/admin.php:706 +msgid "System theme" +msgstr "Systemweites Theme" + +#: mod/admin.php:706 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - Theme-Einstellungen ändern" + +#: mod/admin.php:707 +msgid "Mobile system theme" +msgstr "Systemweites mobiles Theme" + +#: mod/admin.php:707 +msgid "Theme for mobile devices" +msgstr "Thema für mobile Geräte" + +#: mod/admin.php:708 +msgid "SSL link policy" +msgstr "Regeln für SSL Links" + +#: mod/admin.php:708 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Bestimmt, ob generierte Links SSL verwenden müssen" + +#: mod/admin.php:709 +msgid "Force SSL" +msgstr "Erzwinge SSL" + +#: mod/admin.php:709 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife." + +#: mod/admin.php:710 +msgid "Old style 'Share'" +msgstr "Altes \"Teilen\" Element" + +#: mod/admin.php:710 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen." + +#: mod/admin.php:711 +msgid "Hide help entry from navigation menu" +msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü" + +#: mod/admin.php:711 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden." + +#: mod/admin.php:712 +msgid "Single user instance" +msgstr "Ein-Nutzer Instanz" + +#: mod/admin.php:712 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt." + +#: mod/admin.php:713 +msgid "Maximum image size" +msgstr "Maximale Bildgröße" + +#: mod/admin.php:713 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit." + +#: mod/admin.php:714 +msgid "Maximum image length" +msgstr "Maximale Bildlänge" + +#: mod/admin.php:714 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet." + +#: mod/admin.php:715 +msgid "JPEG image quality" +msgstr "Qualität des JPEG Bildes" + +#: mod/admin.php:715 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust." + +#: mod/admin.php:717 +msgid "Register policy" +msgstr "Registrierungsmethode" + +#: mod/admin.php:718 +msgid "Maximum Daily Registrations" +msgstr "Maximum täglicher Registrierungen" + +#: mod/admin.php:718 +msgid "" +"If registration is permitted above, this sets the maximum number of new user" +" registrations to accept per day. If register is set to closed, this " +"setting has no effect." +msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt." + +#: mod/admin.php:719 +msgid "Register text" +msgstr "Registrierungstext" + +#: mod/admin.php:719 +msgid "Will be displayed prominently on the registration page." +msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt." + +#: mod/admin.php:720 +msgid "Accounts abandoned after x days" +msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" + +#: mod/admin.php:720 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit." + +#: mod/admin.php:721 +msgid "Allowed friend domains" +msgstr "Erlaubte Domains für Kontakte" + +#: mod/admin.php:721 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." + +#: mod/admin.php:722 +msgid "Allowed email domains" +msgstr "Erlaubte Domains für E-Mails" + +#: mod/admin.php:722 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." + +#: mod/admin.php:723 +msgid "Block public" +msgstr "Öffentlichen Zugriff blockieren" + +#: mod/admin.php:723 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist." + +#: mod/admin.php:724 +msgid "Force publish" +msgstr "Erzwinge Veröffentlichung" + +#: mod/admin.php:724 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen." + +#: mod/admin.php:725 +msgid "Global directory URL" +msgstr "URL des weltweiten Verzeichnisses" + +#: mod/admin.php:725 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar." + +#: mod/admin.php:726 +msgid "Allow threaded items" +msgstr "Erlaube Threads in Diskussionen" + +#: mod/admin.php:726 +msgid "Allow infinite level threading for items on this site." +msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite." + +#: mod/admin.php:727 +msgid "Private posts by default for new users" +msgstr "Private Beiträge als Standard für neue Nutzer" + +#: mod/admin.php:727 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen." + +#: mod/admin.php:728 +msgid "Don't include post content in email notifications" +msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden" + +#: mod/admin.php:728 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden." + +#: mod/admin.php:729 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten." + +#: mod/admin.php:729 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt." + +#: mod/admin.php:730 +msgid "Don't embed private images in posts" +msgstr "Private Bilder nicht in Beiträgen einbetten." + +#: mod/admin.php:730 +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 "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert." + +#: mod/admin.php:731 +msgid "Allow Users to set remote_self" +msgstr "Nutzern erlauben das remote_self Flag zu setzen" + +#: mod/admin.php:731 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "Ist dies ausgewählt kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im Kontakt reparieren Dialog markieren. Nach dem setzten dieses Flags werden alle Top-Level Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet." + +#: mod/admin.php:732 +msgid "Block multiple registrations" +msgstr "Unterbinde Mehrfachregistrierung" + +#: mod/admin.php:732 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen." + +#: mod/admin.php:733 +msgid "OpenID support" +msgstr "OpenID Unterstützung" + +#: mod/admin.php:733 +msgid "OpenID support for registration and logins." +msgstr "OpenID-Unterstützung für Registrierung und Login." + +#: mod/admin.php:734 +msgid "Fullname check" +msgstr "Namen auf Vollständigkeit überprüfen" + +#: mod/admin.php:734 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden." + +#: mod/admin.php:735 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8 Reguläre Ausdrücke" + +#: mod/admin.php:735 +msgid "Use PHP UTF8 regular expressions" +msgstr "PHP UTF8 Ausdrücke verwenden" + +#: mod/admin.php:736 +msgid "Community Page Style" +msgstr "Art der Gemeinschaftsseite" + +#: mod/admin.php:736 +msgid "" +"Type of community page to show. 'Global community' shows every public " +"posting from an open distributed network that arrived on this server." +msgstr "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen." + +#: mod/admin.php:737 +msgid "Posts per user on community page" +msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite" + +#: mod/admin.php:737 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"'Global Community')" +msgstr "Die Anzahl der Beiträge die von jedem Nutzer maximal auf der Gemeinschaftsseite angezeigt werden sollen. Dieser Parameter wird nicht für die Globale Gemeinschaftsseite genutzt." + +#: mod/admin.php:738 +msgid "Enable OStatus support" +msgstr "OStatus Unterstützung aktivieren" + +#: mod/admin.php:738 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt." + +#: mod/admin.php:739 +msgid "OStatus conversation completion interval" +msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen" + +#: mod/admin.php:739 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein." + +#: mod/admin.php:740 +msgid "Enable Diaspora support" +msgstr "Diaspora Unterstützung aktivieren" + +#: mod/admin.php:740 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Verwende die eingebaute Diaspora-Verknüpfung." + +#: mod/admin.php:741 +msgid "Only allow Friendica contacts" +msgstr "Nur Friendica-Kontakte erlauben" + +#: mod/admin.php:741 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert." + +#: mod/admin.php:742 +msgid "Verify SSL" +msgstr "SSL Überprüfen" + +#: mod/admin.php:742 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann." + +#: mod/admin.php:743 +msgid "Proxy user" +msgstr "Proxy Nutzer" + +#: mod/admin.php:744 +msgid "Proxy URL" +msgstr "Proxy URL" + +#: mod/admin.php:745 +msgid "Network timeout" +msgstr "Netzwerk Wartezeit" + +#: mod/admin.php:745 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)." + +#: mod/admin.php:746 +msgid "Delivery interval" +msgstr "Zustellungsintervall" + +#: mod/admin.php:746 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." + +#: mod/admin.php:747 +msgid "Poll interval" +msgstr "Abfrageintervall" + +#: mod/admin.php:747 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Verzögere Hintergrundprozesse um diese Anzahl an Sekunden, um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet." + +#: mod/admin.php:748 +msgid "Maximum Load Average" +msgstr "Maximum Load Average" + +#: mod/admin.php:748 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50" + +#: mod/admin.php:749 +msgid "Maximum Load Average (Frontend)" +msgstr "Maximum Load Average (Frontend)" + +#: mod/admin.php:749 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50." + +#: mod/admin.php:751 +msgid "Periodical check of global contacts" +msgstr "Regelmäßig globale Kontakte überprüfen" + +#: mod/admin.php:751 +msgid "" +"If enabled, the global contacts are checked periodically for missing or " +"outdated data and the vitality of the contacts and servers." +msgstr "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft." + +#: mod/admin.php:752 +msgid "Days between requery" +msgstr "Tage zwischen erneuten Abfragen" + +#: mod/admin.php:752 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll." + +#: mod/admin.php:753 +msgid "Discover contacts from other servers" +msgstr "Neue Kontakte auf anderen Servern entdecken" + +#: mod/admin.php:753 +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 "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für aältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'." + +#: mod/admin.php:754 +msgid "Timeframe for fetching global contacts" +msgstr "Zeitfenster für globale Kontakte" + +#: mod/admin.php:754 +msgid "" +"When the discovery is activated, this value defines the timeframe for the " +"activity of the global contacts that are fetched from other servers." +msgstr "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden." + +#: mod/admin.php:755 +msgid "Search the local directory" +msgstr "Lokales Verzeichnis durchsuchen" + +#: mod/admin.php:755 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird." + +#: mod/admin.php:757 +msgid "Publish server information" +msgstr "Server Informationen veröffentlichen" + +#: mod/admin.php:757 +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 "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Nutzer_innen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte the-federation.info aufrufen." + +#: mod/admin.php:759 +msgid "Use MySQL full text engine" +msgstr "Nutze MySQL full text engine" + +#: mod/admin.php:759 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden." + +#: mod/admin.php:760 +msgid "Suppress Language" +msgstr "Sprachinformation unterdrücken" + +#: mod/admin.php:760 +msgid "Suppress language information in meta information about a posting." +msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags." + +#: mod/admin.php:761 +msgid "Suppress Tags" +msgstr "Tags Unterdrücken" + +#: mod/admin.php:761 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags." + +#: mod/admin.php:762 +msgid "Path to item cache" +msgstr "Pfad zum Eintrag Cache" + +#: mod/admin.php:762 +msgid "The item caches buffers generated bbcode and external images." +msgstr "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert." + +#: mod/admin.php:763 +msgid "Cache duration in seconds" +msgstr "Cache-Dauer in Sekunden" + +#: mod/admin.php:763 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "Wie lange sollen die gecachedten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item Cache zu deaktivieren, setze diesen Wert auf -1." + +#: mod/admin.php:764 +msgid "Maximum numbers of comments per post" +msgstr "Maximale Anzahl von Kommentaren pro Beitrag" + +#: mod/admin.php:764 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100." + +#: mod/admin.php:765 +msgid "Path for lock file" +msgstr "Pfad für die Sperrdatei" + +#: mod/admin.php:765 +msgid "" +"The lock file is used to avoid multiple pollers at one time. Only define a " +"folder here." +msgstr "Die lock-Datei wird benutzt, damit nicht mehrere poller auf einmal laufen. Definiere hier einen Dateiverzeichnis." + +#: mod/admin.php:766 +msgid "Temp path" +msgstr "Temp Pfad" + +#: mod/admin.php:766 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad." + +#: mod/admin.php:767 +msgid "Base path to installation" +msgstr "Basis-Pfad zur Installation" + +#: mod/admin.php:767 +msgid "" +"If the system cannot detect the correct path to your installation, enter the" +" correct path here. This setting should only be set if you are using a " +"restricted system and symbolic links to your webroot." +msgstr "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist." + +#: mod/admin.php:768 +msgid "Disable picture proxy" +msgstr "Bilder Proxy deaktivieren" + +#: mod/admin.php:768 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwith." +msgstr "Der Proxy für Bilder verbessert die Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen." + +#: mod/admin.php:769 +msgid "Enable old style pager" +msgstr "Den Old-Style Pager aktiviren" + +#: mod/admin.php:769 +msgid "" +"The old style pager has page numbers but slows down massively the page " +"speed." +msgstr "Der Old-Style Pager zeigt Seitennummern an, verlangsamt aber auch drastisch das Laden einer Seite." + +#: mod/admin.php:770 +msgid "Only search in tags" +msgstr "Nur in Tags suchen" + +#: mod/admin.php:770 +msgid "On large systems the text search can slow down the system extremely." +msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen." + +#: mod/admin.php:772 +msgid "New base url" +msgstr "Neue Basis-URL" + +#: mod/admin.php:772 +msgid "" +"Change base url for this server. Sends relocate message to all DFRN contacts" +" of all users." +msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle DFRN Kontakte deiner Nutzer_innen." + +#: mod/admin.php:774 +msgid "RINO Encryption" +msgstr "RINO Verschlüsselung" + +#: mod/admin.php:774 +msgid "Encryption layer between nodes." +msgstr "Verschlüsselung zwischen Friendica Instanzen" + +#: mod/admin.php:775 +msgid "Embedly API key" +msgstr "Embedly API Schlüssel" + +#: mod/admin.php:775 +msgid "" +"Embedly is used to fetch additional data for " +"web pages. This is an optional parameter." +msgstr "Embedly wird verwendet um zusätzliche Informationen von Webseiten zu laden. Dies ist ein optionaler Parameter." + +#: mod/admin.php:793 +msgid "Update has been marked successful" +msgstr "Update wurde als erfolgreich markiert" + +#: mod/admin.php:801 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt." + +#: mod/admin.php:804 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s" + +#: mod/admin.php:816 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s" + +#: mod/admin.php:819 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s war erfolgreich." + +#: mod/admin.php:823 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status." + +#: mod/admin.php:825 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste." + +#: mod/admin.php:844 +msgid "No failed updates." +msgstr "Keine fehlgeschlagenen Updates." + +#: mod/admin.php:845 +msgid "Check database structure" +msgstr "Datenbank Struktur überprüfen" + +#: mod/admin.php:850 +msgid "Failed Updates" +msgstr "Fehlgeschlagene Updates" + +#: mod/admin.php:851 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben." + +#: mod/admin.php:852 +msgid "Mark success (if update was manually applied)" +msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" + +#: mod/admin.php:853 +msgid "Attempt to execute this update step automatically" +msgstr "Versuchen, diesen Schritt automatisch auszuführen" + +#: mod/admin.php:885 +#, 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 "\nHallo %1$s,\n\nauf %2$s wurde ein Account für Dich angelegt." + +#: mod/admin.php:888 +#, 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 "\nNachfolgend die Anmelde-Details:\n\tAdresse der Seite:\t%1$s\n\tBenutzername:\t%2$s\n\tPasswort:\t%3$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nNun viel Spaß, gute Begegnungen und willkommen auf %4$s." + +#: mod/admin.php:920 include/user.php:421 +#, php-format +msgid "Registration details for %s" +msgstr "Details der Registration von %s" + +#: mod/admin.php:932 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s Benutzer geblockt/freigegeben" +msgstr[1] "%s Benutzer geblockt/freigegeben" + +#: mod/admin.php:939 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s Nutzer gelöscht" +msgstr[1] "%s Nutzer gelöscht" + +#: mod/admin.php:978 +#, php-format +msgid "User '%s' deleted" +msgstr "Nutzer '%s' gelöscht" + +#: mod/admin.php:986 +#, php-format +msgid "User '%s' unblocked" +msgstr "Nutzer '%s' entsperrt" + +#: mod/admin.php:986 +#, php-format +msgid "User '%s' blocked" +msgstr "Nutzer '%s' gesperrt" + +#: mod/admin.php:1079 +msgid "Add User" +msgstr "Nutzer hinzufügen" + +#: mod/admin.php:1080 +msgid "select all" +msgstr "Alle auswählen" + +#: mod/admin.php:1081 +msgid "User registrations waiting for confirm" +msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" + +#: mod/admin.php:1082 +msgid "User waiting for permanent deletion" +msgstr "Nutzer wartet auf permanente Löschung" + +#: mod/admin.php:1083 +msgid "Request date" +msgstr "Anfragedatum" + +#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1109 +#: mod/settings.php:634 mod/settings.php:660 mod/crepair.php:170 +msgid "Name" +msgstr "Name" + +#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1111 +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +msgid "Email" +msgstr "E-Mail" + +#: mod/admin.php:1084 +msgid "No registrations." +msgstr "Keine Neuanmeldungen." + +#: mod/admin.php:1086 +msgid "Deny" +msgstr "Verwehren" + +#: mod/admin.php:1088 mod/contacts.php:549 mod/contacts.php:622 +#: mod/contacts.php:798 +msgid "Block" +msgstr "Sperren" + +#: mod/admin.php:1089 mod/contacts.php:549 mod/contacts.php:622 +#: mod/contacts.php:798 +msgid "Unblock" +msgstr "Entsperren" + +#: mod/admin.php:1090 +msgid "Site admin" +msgstr "Seitenadministrator" + +#: mod/admin.php:1091 +msgid "Account expired" +msgstr "Account ist abgelaufen" + +#: mod/admin.php:1094 +msgid "New User" +msgstr "Neuer Nutzer" + +#: mod/admin.php:1095 mod/admin.php:1096 +msgid "Register date" +msgstr "Anmeldedatum" + +#: mod/admin.php:1095 mod/admin.php:1096 +msgid "Last login" +msgstr "Letzte Anmeldung" + +#: mod/admin.php:1095 mod/admin.php:1096 +msgid "Last item" +msgstr "Letzter Beitrag" + +#: mod/admin.php:1095 +msgid "Deleted since" +msgstr "Gelöscht seit" + +#: mod/admin.php:1096 mod/settings.php:41 +msgid "Account" +msgstr "Nutzerkonto" + +#: mod/admin.php:1098 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist Du sicher?" + +#: mod/admin.php:1099 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist Du sicher?" + +#: mod/admin.php:1109 +msgid "Name of the new user." +msgstr "Name des neuen Nutzers" + +#: mod/admin.php:1110 +msgid "Nickname" +msgstr "Spitzname" + +#: mod/admin.php:1110 +msgid "Nickname of the new user." +msgstr "Spitznamen für den neuen Nutzer" + +#: mod/admin.php:1111 +msgid "Email address of the new user." +msgstr "Email Adresse des neuen Nutzers" + +#: mod/admin.php:1144 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s deaktiviert." + +#: mod/admin.php:1148 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s aktiviert." + +#: mod/admin.php:1158 mod/admin.php:1381 +msgid "Disable" +msgstr "Ausschalten" + +#: mod/admin.php:1160 mod/admin.php:1383 +msgid "Enable" +msgstr "Einschalten" + +#: mod/admin.php:1183 mod/admin.php:1411 +msgid "Toggle" +msgstr "Umschalten" + +#: mod/admin.php:1184 mod/admin.php:1412 mod/newmember.php:22 +#: mod/settings.php:99 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:648 include/nav.php:181 +msgid "Settings" +msgstr "Einstellungen" + +#: mod/admin.php:1191 mod/admin.php:1421 +msgid "Author: " +msgstr "Autor:" + +#: mod/admin.php:1192 mod/admin.php:1422 +msgid "Maintainer: " +msgstr "Betreuer:" + +#: mod/admin.php:1341 +msgid "No themes found." +msgstr "Keine Themen gefunden." + +#: mod/admin.php:1403 +msgid "Screenshot" +msgstr "Bildschirmfoto" + +#: mod/admin.php:1449 +msgid "[Experimental]" +msgstr "[Experimentell]" + +#: mod/admin.php:1450 +msgid "[Unsupported]" +msgstr "[Nicht unterstützt]" + +#: mod/admin.php:1477 +msgid "Log settings updated." +msgstr "Protokolleinstellungen aktualisiert." + +#: mod/admin.php:1533 +msgid "Clear" +msgstr "löschen" + +#: mod/admin.php:1539 +msgid "Enable Debugging" +msgstr "Protokoll führen" + +#: mod/admin.php:1540 +msgid "Log file" +msgstr "Protokolldatei" + +#: mod/admin.php:1540 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis." + +#: mod/admin.php:1541 +msgid "Log level" +msgstr "Protokoll-Level" + +#: mod/admin.php:1590 mod/contacts.php:619 +msgid "Update now" +msgstr "Jetzt aktualisieren" + +#: mod/admin.php:1591 include/acl_selectors.php:347 +msgid "Close" +msgstr "Schließen" + +#: mod/admin.php:1597 +msgid "FTP Host" +msgstr "FTP Host" + +#: mod/admin.php:1598 +msgid "FTP Path" +msgstr "FTP Pfad" + +#: mod/admin.php:1599 +msgid "FTP User" +msgstr "FTP Nutzername" + +#: mod/admin.php:1600 +msgid "FTP Password" +msgstr "FTP Passwort" + +#: mod/message.php:9 include/nav.php:173 +msgid "New Message" +msgstr "Neue Nachricht" + +#: mod/message.php:64 mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Kein Empfänger gewählt." + +#: mod/message.php:68 +msgid "Unable to locate contact information." +msgstr "Konnte die Kontaktinformationen nicht finden." + +#: mod/message.php:71 mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Nachricht konnte nicht gesendet werden." + +#: mod/message.php:74 mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Konnte Nachrichten nicht abrufen." + +#: mod/message.php:77 mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Nachricht gesendet." + +#: mod/message.php:183 include/nav.php:170 +msgid "Messages" +msgstr "Nachrichten" + +#: mod/message.php:208 +msgid "Do you really want to delete this message?" +msgstr "Möchtest Du wirklich diese Nachricht löschen?" + +#: mod/message.php:228 +msgid "Message deleted." +msgstr "Nachricht gelöscht." + +#: mod/message.php:259 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." + +#: 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 "Bitte gib die URL des Links ein:" + +#: mod/message.php:320 mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Private Nachricht senden" + +#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 +msgid "To:" +msgstr "An:" + +#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Betreff:" + +#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 +#: mod/invite.php:134 +msgid "Your message:" +msgstr "Deine Nachricht:" + +#: mod/message.php:333 mod/message.php:563 mod/editpost.php:110 +#: mod/wallmessage.php:154 include/conversation.php:1056 +msgid "Upload photo" +msgstr "Foto hochladen" + +#: mod/message.php:334 mod/message.php:564 mod/editpost.php:114 +#: mod/wallmessage.php:155 include/conversation.php:1060 +msgid "Insert web link" +msgstr "Einen Link einfügen" + +#: mod/message.php:372 +msgid "No messages." +msgstr "Keine Nachrichten." + +#: mod/message.php:379 +#, php-format +msgid "Unknown sender - %s" +msgstr "'Unbekannter Absender - %s" + +#: mod/message.php:382 +#, php-format +msgid "You and %s" +msgstr "Du und %s" + +#: mod/message.php:385 +#, php-format +msgid "%s and You" +msgstr "%s und Du" + +#: mod/message.php:406 mod/message.php:547 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" + +#: mod/message.php:409 +msgid "D, d M Y - g:i A" +msgstr "D, d. M Y - g:i A" + +#: mod/message.php:412 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d Nachricht" +msgstr[1] "%d Nachrichten" + +#: mod/message.php:451 +msgid "Message not available." +msgstr "Nachricht nicht verfügbar." + +#: mod/message.php:521 +msgid "Delete message" +msgstr "Nachricht löschen" + +#: mod/message.php:549 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." + +#: mod/message.php:553 +msgid "Send Reply" +msgstr "Antwort senden" + +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Beitrag nicht gefunden" + +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Beitrag bearbeiten" + +#: mod/editpost.php:109 mod/filer.php:31 mod/notes.php:59 include/text.php:997 +msgid "Save" +msgstr "Speichern" + +#: mod/editpost.php:111 include/conversation.php:1057 +msgid "upload photo" +msgstr "Bild hochladen" + +#: mod/editpost.php:112 include/conversation.php:1058 +msgid "Attach file" +msgstr "Datei anhängen" + +#: mod/editpost.php:113 include/conversation.php:1059 +msgid "attach file" +msgstr "Datei anhängen" + +#: mod/editpost.php:115 include/conversation.php:1061 +msgid "web link" +msgstr "Weblink" + +#: mod/editpost.php:116 include/conversation.php:1062 +msgid "Insert video link" +msgstr "Video-Adresse einfügen" + +#: mod/editpost.php:117 include/conversation.php:1063 +msgid "video link" +msgstr "Video-Link" + +#: mod/editpost.php:118 include/conversation.php:1064 +msgid "Insert audio link" +msgstr "Audio-Adresse einfügen" + +#: mod/editpost.php:119 include/conversation.php:1065 +msgid "audio link" +msgstr "Audio-Link" + +#: mod/editpost.php:120 include/conversation.php:1066 +msgid "Set your location" +msgstr "Deinen Standort festlegen" + +#: mod/editpost.php:121 include/conversation.php:1067 +msgid "set location" +msgstr "Ort setzen" + +#: mod/editpost.php:122 include/conversation.php:1068 +msgid "Clear browser location" +msgstr "Browser-Standort leeren" + +#: mod/editpost.php:123 include/conversation.php:1069 +msgid "clear location" +msgstr "Ort löschen" + +#: mod/editpost.php:125 include/conversation.php:1075 +msgid "Permission settings" +msgstr "Berechtigungseinstellungen" + +#: mod/editpost.php:133 include/acl_selectors.php:343 +msgid "CC: email addresses" +msgstr "Cc: E-Mail-Addressen" + +#: mod/editpost.php:134 include/conversation.php:1084 +msgid "Public post" +msgstr "Öffentlicher Beitrag" + +#: mod/editpost.php:137 include/conversation.php:1071 +msgid "Set title" +msgstr "Titel setzen" + +#: mod/editpost.php:139 include/conversation.php:1073 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (kommasepariert)" + +#: mod/editpost.php:140 include/acl_selectors.php:344 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Z.B.: bob@example.com, mary@example.com" + +#: 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 nicht gefunden." + +#: mod/dfrn_confirm.php:121 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde." + +#: mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Antwort der Gegenstelle unverständlich." + +#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "Unerwartete Antwort der Gegenstelle: " + +#: mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Bestätigung erfolgreich abgeschlossen." + +#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Gegenstelle meldet: " + +#: mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal." + +#: mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." + +#: mod/dfrn_confirm.php:430 +msgid "Unable to set contact photo." +msgstr "Konnte das Bild des Kontakts nicht speichern." + +#: mod/dfrn_confirm.php:487 include/diaspora.php:633 +#: include/conversation.php:172 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s ist nun mit %2$s befreundet" + +#: mod/dfrn_confirm.php:572 +#, php-format +msgid "No user record found for '%s' " +msgstr "Für '%s' wurde kein Nutzer gefunden" + +#: mod/dfrn_confirm.php:582 +msgid "Our site encryption key is apparently messed up." +msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung." + +#: mod/dfrn_confirm.php:593 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden." + +#: mod/dfrn_confirm.php:614 +msgid "Contact record was not found for you on our site." +msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden." + +#: mod/dfrn_confirm.php:628 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server." + +#: mod/dfrn_confirm.php:648 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal." + +#: mod/dfrn_confirm.php:659 +msgid "Unable to set your contact credentials on our system." +msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." + +#: mod/dfrn_confirm.php:726 +msgid "Unable to update your contact profile details on our system" +msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden" + +#: mod/dfrn_confirm.php:798 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s ist %2$s beigetreten" + +#: mod/events.php:71 mod/events.php:73 +msgid "Event can not end before it has started." +msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt." + +#: mod/events.php:80 mod/events.php:82 +msgid "Event title and start time are required." +msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." + +#: mod/events.php:317 +msgid "l, F j" +msgstr "l, F j" + +#: mod/events.php:339 +msgid "Edit event" +msgstr "Veranstaltung bearbeiten" + +#: mod/events.php:361 include/text.php:1716 include/text.php:1723 +msgid "link to source" +msgstr "Link zum Originalbeitrag" + +#: mod/events.php:396 view/theme/diabook/theme.php:127 +#: include/identity.php:668 include/nav.php:80 +msgid "Events" +msgstr "Veranstaltungen" + +#: mod/events.php:397 +msgid "Create New Event" +msgstr "Neue Veranstaltung erstellen" + +#: mod/events.php:398 +msgid "Previous" +msgstr "Vorherige" + +#: mod/events.php:399 mod/install.php:209 +msgid "Next" +msgstr "Nächste" + +#: mod/events.php:491 +msgid "Event details" +msgstr "Veranstaltungsdetails" + +#: mod/events.php:492 +msgid "Starting date and Title are required." +msgstr "Anfangszeitpunkt und Titel werden benötigt" + +#: mod/events.php:493 +msgid "Event Starts:" +msgstr "Veranstaltungsbeginn:" + +#: mod/events.php:493 mod/events.php:505 +msgid "Required" +msgstr "Benötigt" + +#: mod/events.php:495 +msgid "Finish date/time is not known or not relevant" +msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" + +#: mod/events.php:497 +msgid "Event Finishes:" +msgstr "Veranstaltungsende:" + +#: mod/events.php:499 +msgid "Adjust for viewer timezone" +msgstr "An Zeitzone des Betrachters anpassen" + +#: mod/events.php:501 +msgid "Description:" +msgstr "Beschreibung" + +#: mod/events.php:505 +msgid "Title:" +msgstr "Titel:" + +#: mod/events.php:507 +msgid "Share this event" +msgstr "Veranstaltung teilen" + +#: mod/fbrowser.php:32 view/theme/diabook/theme.php:126 +#: include/identity.php:649 include/nav.php:78 +msgid "Photos" +msgstr "Bilder" + +#: mod/fbrowser.php:122 +msgid "Files" +msgstr "Dateien" + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Willkommen zu %s" + +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." + +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "Sichtbar für:" + +#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen." + +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Konnte Deinen Heimatort nicht bestimmen." + +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Kein Empfänger." + +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern." + +#: mod/nogroup.php:40 mod/contacts.php:605 mod/contacts.php:838 +#: mod/viewcontacts.php:64 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Besuche %ss Profil [%s]" + +#: mod/nogroup.php:41 mod/contacts.php:839 +msgid "Edit contact" +msgstr "Kontakt bearbeiten" + +#: mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Kontakte, die keiner Gruppe zugewiesen sind" + +#: mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "Dies ist Friendica, Version" + +#: mod/friendica.php:60 +msgid "running at web location" +msgstr "die unter folgender Webadresse zu finden ist" + +#: mod/friendica.php:62 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren." + +#: mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" + +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "dem Bugtracker auf github" + +#: mod/friendica.php:65 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com" + +#: mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Erweiterungen/Apps" + +#: mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "Keine Plugins/Erweiterungen/Apps installiert" + +#: mod/removeme.php:46 mod/removeme.php:49 +msgid "Remove My Account" +msgstr "Konto löschen" + +#: mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen." + +#: mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "Bitte gib Dein Passwort zur Verifikation ein:" + +#: mod/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 "Ungültige Anfrage" + +#: mod/wall_upload.php:137 mod/photos.php:789 mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Bildgröße überschreitet das Limit von %s" + +#: mod/wall_upload.php:169 mod/photos.php:829 mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "Konnte das Bild nicht bearbeiten." + +#: mod/wall_upload.php:199 mod/wall_upload.php:213 mod/wall_upload.php:220 +#: mod/item.php:486 include/message.php:145 include/Photo.php:951 +#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995 +msgid "Wall Photos" +msgstr "Pinnwand-Bilder" + +#: mod/wall_upload.php:202 mod/photos.php:856 mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Hochladen des Bildes gescheitert." + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Verbindung der Applikation autorisieren" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Bitte melde Dich an um fortzufahren." + +#: mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?" + +#: mod/tagger.php:95 include/conversation.php:265 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt" + +#: mod/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 "Kontaktbilder" + +#: mod/photos.php:84 include/identity.php:652 +msgid "Photo Albums" +msgstr "Fotoalben" + +#: mod/photos.php:85 mod/photos.php:1836 +msgid "Recent Photos" +msgstr "Neueste Fotos" + +#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 +msgid "Upload New Photos" +msgstr "Neue Fotos hochladen" + +#: mod/photos.php:102 mod/settings.php:34 +msgid "everybody" +msgstr "jeder" + +#: mod/photos.php:166 +msgid "Contact information unavailable" +msgstr "Kontaktinformationen nicht verfügbar" + +#: mod/photos.php:177 mod/photos.php:753 mod/photos.php:1207 +#: mod/photos.php:1230 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 +#: view/theme/diabook/theme.php:500 include/user.php:343 include/user.php:350 +#: include/user.php:357 +msgid "Profile Photos" +msgstr "Profilbilder" + +#: mod/photos.php:187 +msgid "Album not found." +msgstr "Album nicht gefunden." + +#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 +msgid "Delete Album" +msgstr "Album löschen" + +#: mod/photos.php:220 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?" + +#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 +msgid "Delete Photo" +msgstr "Foto löschen" + +#: mod/photos.php:309 +msgid "Do you really want to delete this photo?" +msgstr "Möchtest Du wirklich dieses Foto löschen?" + +#: mod/photos.php:684 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s wurde von %3$s in %2$s getaggt" + +#: mod/photos.php:684 +msgid "a photo" +msgstr "einem Foto" + +#: mod/photos.php:797 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." + +#: mod/photos.php:952 +msgid "No photos selected" +msgstr "Keine Bilder ausgewählt" + +#: mod/photos.php:1053 mod/videos.php:298 +msgid "Access to this item is restricted." +msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." + +#: mod/photos.php:1114 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers." + +#: mod/photos.php:1149 +msgid "Upload Photos" +msgstr "Bilder hochladen" + +#: mod/photos.php:1153 mod/photos.php:1219 +msgid "New album name: " +msgstr "Name des neuen Albums: " + +#: mod/photos.php:1154 +msgid "or existing album name: " +msgstr "oder existierender Albumname: " + +#: mod/photos.php:1155 +msgid "Do not show a status post for this upload" +msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" + +#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 +msgid "Permissions" +msgstr "Berechtigungen" + +#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1202 +msgid "Show to Groups" +msgstr "Zeige den Gruppen" + +#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1203 +msgid "Show to Contacts" +msgstr "Zeige den Kontakten" + +#: mod/photos.php:1168 +msgid "Private Photo" +msgstr "Privates Foto" + +#: mod/photos.php:1169 +msgid "Public Photo" +msgstr "Öffentliches Foto" + +#: mod/photos.php:1232 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: mod/photos.php:1238 +msgid "Show Newest First" +msgstr "Zeige neueste zuerst" + +#: mod/photos.php:1240 +msgid "Show Oldest First" +msgstr "Zeige älteste zuerst" + +#: mod/photos.php:1268 mod/photos.php:1821 +msgid "View Photo" +msgstr "Foto betrachten" + +#: mod/photos.php:1314 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." + +#: mod/photos.php:1316 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" + +#: mod/photos.php:1372 +msgid "View photo" +msgstr "Fotos ansehen" + +#: mod/photos.php:1372 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: mod/photos.php:1373 +msgid "Use as profile photo" +msgstr "Als Profilbild verwenden" + +#: mod/photos.php:1398 +msgid "View Full Size" +msgstr "Betrachte Originalgröße" + +#: mod/photos.php:1477 +msgid "Tags: " +msgstr "Tags: " + +#: mod/photos.php:1480 +msgid "[Remove any tag]" +msgstr "[Tag entfernen]" + +#: mod/photos.php:1520 +msgid "New album name" +msgstr "Name des neuen Albums" + +#: mod/photos.php:1521 +msgid "Caption" +msgstr "Bildunterschrift" + +#: mod/photos.php:1522 +msgid "Add a Tag" +msgstr "Tag hinzufügen" + +#: mod/photos.php:1522 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1523 +msgid "Do not rotate" +msgstr "Nicht rotieren" + +#: mod/photos.php:1524 +msgid "Rotate CW (right)" +msgstr "Drehen US (rechts)" + +#: mod/photos.php:1525 +msgid "Rotate CCW (left)" +msgstr "Drehen EUS (links)" + +#: mod/photos.php:1540 +msgid "Private photo" +msgstr "Privates Foto" + +#: mod/photos.php:1541 +msgid "Public photo" +msgstr "Öffentliches Foto" + +#: mod/photos.php:1563 include/conversation.php:1055 +msgid "Share" +msgstr "Teilen" + +#: mod/photos.php:1827 mod/videos.php:380 +msgid "View Album" +msgstr "Album betrachten" + +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Kein Profil" + +#: mod/register.php:92 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." + +#: mod/register.php: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 "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern." + +#: mod/register.php:107 +msgid "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." + +#: mod/register.php:150 +msgid "Your registration is pending approval by the site owner." +msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." + +#: 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 "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal." + +#: mod/register.php:216 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst." + +#: mod/register.php:217 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus." + +#: mod/register.php:218 +msgid "Your OpenID (optional): " +msgstr "Deine OpenID (optional): " + +#: mod/register.php:232 +msgid "Include your profile in member directory?" +msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?" + +#: mod/register.php:256 +msgid "Membership on this site is by invitation only." +msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." + +#: mod/register.php:257 +msgid "Your invitation ID: " +msgstr "ID Deiner Einladung: " + +#: mod/register.php:268 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Vollständiger Name (z.B. Max Mustermann): " + +#: mod/register.php:269 +msgid "Your Email Address: " +msgstr "Deine E-Mail-Adresse: " + +#: mod/register.php:271 mod/settings.php:1174 +msgid "New Password:" +msgstr "Neues Passwort:" + +#: mod/register.php:271 +msgid "Leave empty for an auto generated password." +msgstr "Leer lassen um das Passwort automatisch zu generieren." + +#: mod/register.php:272 mod/settings.php:1175 +msgid "Confirm:" +msgstr "Bestätigen:" + +#: 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 "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@$sitename' sein." + +#: mod/register.php:274 +msgid "Choose a nickname: " +msgstr "Spitznamen wählen: " + +#: mod/register.php:277 boot.php:1248 include/nav.php:109 +msgid "Register" +msgstr "Registrieren" + +#: 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 "Importiere Dein Profil auf diese Friendica Instanz" + +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Kein gültiges Konto gefunden." + +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail." + +#: mod/lostpass.php:42 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast." + +#: mod/lostpass.php:53 +#, php-format +msgid "" +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s" + +#: mod/lostpass.php:72 +#, php-format +msgid "Password reset requested at %s" +msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" + +#: mod/lostpass.php:92 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." + +#: mod/lostpass.php:109 boot.php:1287 +msgid "Password Reset" +msgstr "Passwort zurücksetzen" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Speichere oder kopiere Dein neues Passwort - und dann" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "hier klicken, um Dich anzumelden" + +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Du kannst das Passwort in den Einstellungen ändern, sobald Du Dich erfolgreich angemeldet hast." + +#: mod/lostpass.php:125 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" +msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)." + +#: mod/lostpass.php:131 +#, php-format +msgid "" +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t\t" +msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden." + +#: mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Auf %s wurde Dein Passwort geändert" + +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Hast Du Dein Passwort vergessen?" + +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet." + +#: mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Spitzname oder E-Mail:" + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Zurücksetzen" + +#: mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "System zur Wartung abgeschaltet" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "Beitrag nicht verfügbar." + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Beitrag konnte nicht gefunden werden." + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Anwendungen" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Keine Applikationen installiert." + +#: mod/help.php:31 +msgid "Help:" +msgstr "Hilfe:" + +#: mod/help.php:36 include/nav.php:114 +msgid "Help" +msgstr "Hilfe" + #: mod/contacts.php:114 #, php-format msgid "%d contact edited." @@ -48,7 +3126,7 @@ msgid_plural "%d contacts edited" msgstr[0] "%d Kontakt bearbeitet." msgstr[1] "%d Kontakte bearbeitet" -#: mod/contacts.php:145 mod/contacts.php:340 +#: mod/contacts.php:145 mod/contacts.php:368 msgid "Could not access contact record." msgstr "Konnte nicht auf die Kontaktdaten zugreifen." @@ -60,490 +3138,416 @@ msgstr "Konnte das ausgewählte Profil nicht finden." msgid "Contact updated." msgstr "Kontakt aktualisiert." -#: mod/contacts.php:194 mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." - -#: 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 "Zugriff verweigert." - -#: mod/contacts.php:361 +#: mod/contacts.php:389 msgid "Contact has been blocked" msgstr "Kontakt wurde blockiert" -#: mod/contacts.php:361 +#: mod/contacts.php:389 msgid "Contact has been unblocked" msgstr "Kontakt wurde wieder freigegeben" -#: mod/contacts.php:372 +#: mod/contacts.php:400 msgid "Contact has been ignored" msgstr "Kontakt wurde ignoriert" -#: mod/contacts.php:372 +#: mod/contacts.php:400 msgid "Contact has been unignored" msgstr "Kontakt wird nicht mehr ignoriert" -#: mod/contacts.php:384 +#: mod/contacts.php:412 msgid "Contact has been archived" msgstr "Kontakt wurde archiviert" -#: mod/contacts.php:384 +#: mod/contacts.php:412 msgid "Contact has been unarchived" msgstr "Kontakt wurde aus dem Archiv geholt" -#: mod/contacts.php:411 mod/contacts.php:767 +#: mod/contacts.php:439 mod/contacts.php:795 msgid "Do you really want to delete this contact?" msgstr "Möchtest Du wirklich diesen Kontakt löschen?" -#: 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 "Ja" - -#: 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 "Abbrechen" - -#: mod/contacts.php:428 +#: mod/contacts.php:456 msgid "Contact has been removed." msgstr "Kontakt wurde entfernt." -#: mod/contacts.php:466 +#: mod/contacts.php:494 #, php-format msgid "You are mutual friends with %s" msgstr "Du hast mit %s eine beidseitige Freundschaft" -#: mod/contacts.php:470 +#: mod/contacts.php:498 #, php-format msgid "You are sharing with %s" msgstr "Du teilst mit %s" -#: mod/contacts.php:475 +#: mod/contacts.php:503 #, php-format msgid "%s is sharing with you" msgstr "%s teilt mit Dir" -#: mod/contacts.php:495 +#: mod/contacts.php:523 msgid "Private communications are not available for this contact." msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." -#: mod/contacts.php:498 mod/admin.php:618 -msgid "Never" -msgstr "Niemals" - -#: mod/contacts.php:502 +#: mod/contacts.php:530 msgid "(Update was successful)" msgstr "(Aktualisierung war erfolgreich)" -#: mod/contacts.php:502 +#: mod/contacts.php:530 msgid "(Update was not successful)" msgstr "(Aktualisierung war nicht erfolgreich)" -#: mod/contacts.php:504 +#: mod/contacts.php:532 msgid "Suggest friends" msgstr "Kontakte vorschlagen" -#: mod/contacts.php:508 +#: mod/contacts.php:536 #, php-format msgid "Network type: %s" msgstr "Netzwerktyp: %s" -#: mod/contacts.php:511 include/contact_widgets.php:200 +#: mod/contacts.php:539 include/contact_widgets.php:200 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d gemeinsamer Kontakt" msgstr[1] "%d gemeinsame Kontakte" -#: mod/contacts.php:516 +#: mod/contacts.php:544 msgid "View all contacts" msgstr "Alle Kontakte anzeigen" -#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 -#: mod/admin.php:1083 -msgid "Unblock" -msgstr "Entsperren" - -#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 -#: mod/admin.php:1082 -msgid "Block" -msgstr "Sperren" - -#: mod/contacts.php:524 +#: mod/contacts.php:552 msgid "Toggle Blocked status" msgstr "Geblockt-Status ein-/ausschalten" -#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 +#: mod/contacts.php:556 mod/contacts.php:623 mod/contacts.php:799 msgid "Unignore" msgstr "Ignorieren aufheben" -#: 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 "Ignorieren" - -#: mod/contacts.php:531 +#: mod/contacts.php:559 msgid "Toggle Ignored status" msgstr "Ignoriert-Status ein-/ausschalten" -#: mod/contacts.php:536 mod/contacts.php:772 +#: mod/contacts.php:564 mod/contacts.php:800 msgid "Unarchive" msgstr "Aus Archiv zurückholen" -#: mod/contacts.php:536 mod/contacts.php:772 +#: mod/contacts.php:564 mod/contacts.php:800 msgid "Archive" msgstr "Archivieren" -#: mod/contacts.php:539 +#: mod/contacts.php:567 msgid "Toggle Archive status" msgstr "Archiviert-Status ein-/ausschalten" -#: mod/contacts.php:543 +#: mod/contacts.php:571 msgid "Repair" msgstr "Reparieren" -#: mod/contacts.php:546 +#: mod/contacts.php:574 msgid "Advanced Contact Settings" msgstr "Fortgeschrittene Kontakteinstellungen" -#: mod/contacts.php:553 +#: mod/contacts.php:581 msgid "Communications lost with this contact!" msgstr "Verbindungen mit diesem Kontakt verloren!" -#: mod/contacts.php:556 +#: mod/contacts.php:584 msgid "Fetch further information for feeds" msgstr "Weitere Informationen zu Feeds holen" -#: mod/contacts.php:557 mod/admin.php:627 -msgid "Disabled" -msgstr "Deaktiviert" - -#: mod/contacts.php:557 +#: mod/contacts.php:585 msgid "Fetch information" msgstr "Beziehe Information" -#: mod/contacts.php:557 +#: mod/contacts.php:585 msgid "Fetch information and keywords" msgstr "Beziehe Information und Schlüsselworte" -#: mod/contacts.php:566 +#: mod/contacts.php:594 msgid "Contact Editor" msgstr "Kontakt Editor" -#: 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 "Senden" - -#: mod/contacts.php:569 +#: mod/contacts.php:597 msgid "Profile Visibility" msgstr "Profil-Sichtbarkeit" -#: mod/contacts.php:570 +#: mod/contacts.php:598 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft." -#: mod/contacts.php:571 +#: mod/contacts.php:599 msgid "Contact Information / Notes" msgstr "Kontakt Informationen / Notizen" -#: mod/contacts.php:572 +#: mod/contacts.php:600 msgid "Edit contact notes" msgstr "Notizen zum Kontakt bearbeiten" -#: 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 "Besuche %ss Profil [%s]" - -#: mod/contacts.php:578 +#: mod/contacts.php:606 msgid "Block/Unblock contact" msgstr "Kontakt blockieren/freischalten" -#: mod/contacts.php:579 +#: mod/contacts.php:607 msgid "Ignore contact" msgstr "Ignoriere den Kontakt" -#: mod/contacts.php:580 +#: mod/contacts.php:608 msgid "Repair URL settings" msgstr "URL Einstellungen reparieren" -#: mod/contacts.php:581 +#: mod/contacts.php:609 msgid "View conversations" msgstr "Unterhaltungen anzeigen" -#: mod/contacts.php:583 +#: mod/contacts.php:611 msgid "Delete contact" msgstr "Lösche den Kontakt" -#: mod/contacts.php:587 +#: mod/contacts.php:615 msgid "Last update:" msgstr "Letzte Aktualisierung: " -#: mod/contacts.php:589 +#: mod/contacts.php:617 msgid "Update public posts" msgstr "Öffentliche Beiträge aktualisieren" -#: mod/contacts.php:591 mod/admin.php:1584 -msgid "Update now" -msgstr "Jetzt aktualisieren" - -#: mod/contacts.php:598 +#: mod/contacts.php:626 msgid "Currently blocked" msgstr "Derzeit geblockt" -#: mod/contacts.php:599 +#: mod/contacts.php:627 msgid "Currently ignored" msgstr "Derzeit ignoriert" -#: mod/contacts.php:600 +#: mod/contacts.php:628 msgid "Currently archived" msgstr "Momentan archiviert" -#: mod/contacts.php:601 mod/notifications.php:167 mod/notifications.php:227 -msgid "Hide this contact from others" -msgstr "Verbirg diesen Kontakt vor andere" - -#: mod/contacts.php:601 +#: mod/contacts.php:629 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein" -#: mod/contacts.php:602 +#: mod/contacts.php:630 msgid "Notification for new posts" msgstr "Benachrichtigung bei neuen Beiträgen" -#: mod/contacts.php:602 +#: mod/contacts.php:630 msgid "Send a notification of every new post of this contact" msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt." -#: mod/contacts.php:605 +#: mod/contacts.php:633 msgid "Blacklisted keywords" msgstr "Blacklistete Schlüsselworte " -#: mod/contacts.php:605 +#: mod/contacts.php:633 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde" -#: mod/contacts.php:612 +#: mod/contacts.php:640 msgid "Profile URL" msgstr "Profil URL" -#: mod/contacts.php:658 +#: mod/contacts.php:686 msgid "Suggestions" msgstr "Kontaktvorschläge" -#: mod/contacts.php:661 +#: mod/contacts.php:689 msgid "Suggest potential friends" msgstr "Freunde vorschlagen" -#: mod/contacts.php:665 mod/group.php:192 +#: mod/contacts.php:693 mod/group.php:192 msgid "All Contacts" msgstr "Alle Kontakte" -#: mod/contacts.php:668 +#: mod/contacts.php:696 msgid "Show all contacts" msgstr "Alle Kontakte anzeigen" -#: mod/contacts.php:672 +#: mod/contacts.php:700 msgid "Unblocked" msgstr "Ungeblockt" -#: mod/contacts.php:675 +#: mod/contacts.php:703 msgid "Only show unblocked contacts" msgstr "Nur nicht-blockierte Kontakte anzeigen" -#: mod/contacts.php:680 +#: mod/contacts.php:708 msgid "Blocked" msgstr "Geblockt" -#: mod/contacts.php:683 +#: mod/contacts.php:711 msgid "Only show blocked contacts" msgstr "Nur blockierte Kontakte anzeigen" -#: mod/contacts.php:688 +#: mod/contacts.php:716 msgid "Ignored" msgstr "Ignoriert" -#: mod/contacts.php:691 +#: mod/contacts.php:719 msgid "Only show ignored contacts" msgstr "Nur ignorierte Kontakte anzeigen" -#: mod/contacts.php:696 +#: mod/contacts.php:724 msgid "Archived" msgstr "Archiviert" -#: mod/contacts.php:699 +#: mod/contacts.php:727 msgid "Only show archived contacts" msgstr "Nur archivierte Kontakte anzeigen" -#: mod/contacts.php:704 +#: mod/contacts.php:732 msgid "Hidden" msgstr "Verborgen" -#: mod/contacts.php:707 +#: mod/contacts.php:735 msgid "Only show hidden contacts" msgstr "Nur verborgene Kontakte anzeigen" -#: mod/contacts.php:758 include/text.php:1005 include/nav.php:124 -#: include/nav.php:186 view/theme/diabook/theme.php:125 +#: mod/contacts.php:786 view/theme/diabook/theme.php:125 include/text.php:1005 +#: include/nav.php:124 include/nav.php:186 msgid "Contacts" msgstr "Kontakte" -#: mod/contacts.php:762 +#: mod/contacts.php:790 msgid "Search your contacts" msgstr "Suche in deinen Kontakten" -#: mod/contacts.php:763 mod/directory.php:63 +#: mod/contacts.php:791 mod/directory.php:63 msgid "Finding: " msgstr "Funde: " -#: mod/contacts.php:764 mod/directory.php:65 include/contact_widgets.php:34 +#: mod/contacts.php:792 mod/directory.php:65 include/contact_widgets.php:34 msgid "Find" msgstr "Finde" -#: mod/contacts.php:769 mod/settings.php:146 mod/settings.php:658 +#: mod/contacts.php:797 mod/settings.php:146 mod/settings.php:658 msgid "Update" msgstr "Aktualisierungen" -#: 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 "Löschen" - -#: mod/contacts.php:786 +#: mod/contacts.php:814 msgid "Mutual Friendship" msgstr "Beidseitige Freundschaft" -#: mod/contacts.php:790 +#: mod/contacts.php:818 msgid "is a fan of yours" msgstr "ist ein Fan von dir" -#: mod/contacts.php:794 +#: mod/contacts.php:822 msgid "you are a fan of" msgstr "Du bist Fan von" -#: mod/contacts.php:811 mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Kontakt bearbeiten" +#: mod/videos.php:113 +msgid "Do you really want to delete this video?" +msgstr "Möchtest Du dieses Video wirklich löschen?" -#: mod/hcard.php:10 -msgid "No profile" -msgstr "Kein Profil" +#: mod/videos.php:118 +msgid "Delete Video" +msgstr "Video Löschen" -#: mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Verwalte Identitäten und/oder Seiten" +#: mod/videos.php:197 +msgid "No videos selected" +msgstr "Keine Videos ausgewählt" -#: mod/manage.php:107 +#: mod/videos.php:389 +msgid "Recent Videos" +msgstr "Neueste Videos" + +#: mod/videos.php:391 +msgid "Upload New Videos" +msgstr "Neues Video hochladen" + +#: mod/common.php:45 +msgid "Common Friends" +msgstr "Gemeinsame Freunde" + +#: mod/common.php:82 +msgid "No contacts in common." +msgstr "Keine gemeinsamen Kontakte." + +#: mod/follow.php:26 +msgid "You already added this contact." +msgstr "Du hast den Kontakt bereits hinzugefügt." + +#: mod/follow.php:108 +msgid "Contact added" +msgstr "Kontakt hinzugefügt" + +#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 +msgid "Login" +msgstr "Anmeldung" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "Der Beitrag wurde angelegt" + +#: mod/uimport.php:66 +msgid "Move account" +msgstr "Account umziehen" + +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Du kannst einen Account von einem anderen Friendica Server importieren." + +#: mod/uimport.php:68 msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast." +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist." -#: mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Wähle eine Identität zum Verwalten aus: " +#: mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren" -#: mod/oexchange.php:25 -msgid "Post successful." -msgstr "Beitrag erfolgreich veröffentlicht." +#: mod/uimport.php:70 +msgid "Account file" +msgstr "Account Datei" -#: mod/profperm.php:19 mod/group.php:72 index.php:381 -msgid "Permission denied" -msgstr "Zugriff verweigert" +#: mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"" -#: mod/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Bezeichner." +#: mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s folgt %2$s %3$s" -#: mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "Editor für die Profil-Sichtbarkeit" +#: mod/allfriends.php:37 +#, php-format +msgid "Friends of %s" +msgstr "Freunde von %s" -#: 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/allfriends.php:44 +msgid "No friends to display." +msgstr "Keine Freunde zum Anzeigen." -#: mod/profperm.php:106 mod/group.php:222 -msgid "Click on a contact to add or remove." -msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag entfernt" -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "Sichtbar für" +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Gegenstands-Tag entfernen" -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Wähle ein Tag zum Entfernen aus: " -#: 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 "Beitrag nicht gefunden." - -#: 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 "Öffentlicher Zugriff verweigert." - -#: mod/display.php:343 mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." - -#: mod/display.php:505 -msgid "Item has been removed." -msgstr "Eintrag wurde entfernt." +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Entfernen" #: mod/newmember.php:6 msgid "Welcome to Friendica" @@ -576,12 +3580,6 @@ msgid "" " join." msgstr "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst." -#: mod/newmember.php: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 "Einstellungen" - #: mod/newmember.php:26 msgid "Go to Your Settings" msgstr "Gehe zu deinen Einstellungen" @@ -601,7 +3599,13 @@ msgid "" "potential friends know exactly how to find you." msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können." -#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:696 +#: mod/newmember.php:32 mod/profperm.php:104 view/theme/diabook/theme.php:124 +#: include/identity.php:530 include/identity.php:611 include/identity.php:641 +#: include/nav.php:77 +msgid "Profile" +msgstr "Profil" + +#: mod/newmember.php:36 mod/profiles.php:696 mod/profile_photo.php:244 msgid "Upload Profile Photo" msgstr "Profilbild hochladen" @@ -740,3097 +3744,123 @@ msgid "" " features and resources." msgstr "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten." -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." - -#: mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet." - -#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 -msgid "Login failed." -msgstr "Anmeldung fehlgeschlagen." - -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl." - -#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 -#: mod/profile_photo.php:204 mod/profile_photo.php:296 -#: mod/profile_photo.php:305 mod/photos.php: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 "Profilbilder" - -#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:308 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Verkleinern der Bildgröße von [%s] scheiterte." - -#: mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird." - -#: mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Bild konnte nicht verarbeitet werden" - -#: mod/profile_photo.php:144 mod/wall_upload.php:137 mod/photos.php:789 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Bildgröße überschreitet das Limit von %s" - -#: mod/profile_photo.php:153 mod/wall_upload.php:169 mod/photos.php:829 -msgid "Unable to process image." -msgstr "Konnte das Bild nicht bearbeiten." - -#: mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Datei hochladen:" - -#: mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Profil auswählen:" - -#: mod/profile_photo.php:245 -msgid "Upload" -msgstr "Hochladen" - -#: mod/profile_photo.php:248 -msgid "or" -msgstr "oder" - -#: mod/profile_photo.php:248 -msgid "skip this step" -msgstr "diesen Schritt überspringen" - -#: mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "wähle ein Foto aus deinen Fotoalben" - -#: mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Bild zurechtschneiden" - -#: mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann." - -#: mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Bearbeitung abgeschlossen" - -#: mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Bild erfolgreich hochgeladen." - -#: mod/profile_photo.php:301 mod/wall_upload.php:202 mod/photos.php:856 -msgid "Image upload failed." -msgstr "Hochladen des Bildes gescheitert." - -#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 -#: include/conversation.php:126 include/conversation.php:253 -#: include/text.php:2034 include/diaspora.php:2127 -#: 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: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 "%1$s folgt %2$s %3$s" - -#: mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag entfernt" - -#: mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Gegenstands-Tag entfernen" - -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Wähle ein Tag zum Entfernen aus: " - -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "Entfernen" - -#: mod/filer.php:30 include/conversation.php:1005 -#: include/conversation.php:1023 -msgid "Save to Folder:" -msgstr "In diesem Ordner speichern:" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "- auswählen -" - -#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:997 -msgid "Save" -msgstr "Speichern" - -#: mod/follow.php:26 -msgid "You already added this contact." -msgstr "Du hast den Kontakt bereits hinzugefügt." - -#: mod/follow.php:58 mod/dfrn_request.php:847 -msgid "Please answer the following:" -msgstr "Bitte beantworte folgendes:" - -#: mod/follow.php:59 mod/dfrn_request.php:848 -#, php-format -msgid "Does %s know you?" -msgstr "Kennt %s Dich?" - -#: 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 "Nein" - -#: mod/follow.php:60 mod/dfrn_request.php:852 -msgid "Add a personal note:" -msgstr "Eine persönliche Notiz beifügen:" - -#: mod/follow.php:66 mod/dfrn_request.php:858 -msgid "Your Identity Address:" -msgstr "Adresse Deines Profils:" - -#: mod/follow.php:69 mod/dfrn_request.php:861 -msgid "Submit Request" -msgstr "Anfrage abschicken" - -#: mod/follow.php:108 -msgid "Contact added" -msgstr "Kontakt hinzugefügt" - -#: mod/item.php:115 -msgid "Unable to locate original post." -msgstr "Konnte den Originalbeitrag nicht finden." - -#: mod/item.php:347 -msgid "Empty post discarded." -msgstr "Leerer Beitrag wurde verworfen." - -#: 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 "Pinnwand-Bilder" - -#: mod/item.php:860 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden." - -#: mod/item.php:989 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica." - -#: mod/item.php:991 -#, php-format -msgid "You may visit them online at %s" -msgstr "Du kannst sie online unter %s besuchen" - -#: mod/item.php:992 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest." - -#: mod/item.php:996 -#, php-format -msgid "%s posted an update." -msgstr "%s hat ein Update veröffentlicht." - -#: mod/group.php:29 -msgid "Group created." -msgstr "Gruppe erstellt." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Konnte die Gruppe nicht erstellen." - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "Gruppe nicht gefunden." - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "Gruppenname geändert." - -#: mod/group.php:87 -msgid "Save Group" -msgstr "Gruppe speichern" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Eine Gruppe von Kontakten/Freunden anlegen." - -#: mod/group.php:94 mod/group.php:178 include/group.php:273 -msgid "Group Name: " -msgstr "Gruppenname:" - -#: mod/group.php:113 -msgid "Group removed." -msgstr "Gruppe entfernt." - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "Konnte die Gruppe nicht entfernen." - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "Gruppeneditor" - -#: mod/group.php:190 -msgid "Members" -msgstr "Mitglieder" - -#: mod/apps.php:7 index.php:225 -msgid "You must be logged in to use addons. " -msgstr "Sie müssen angemeldet sein um Addons benutzen zu können." - -#: mod/apps.php:11 -msgid "Applications" -msgstr "Anwendungen" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Keine Applikationen installiert." - -#: mod/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 nicht gefunden." - -#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 -#: mod/crepair.php:134 -msgid "Contact not found." -msgstr "Kontakt nicht gefunden." - -#: mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde." - -#: mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Antwort der Gegenstelle unverständlich." - -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Unerwartete Antwort der Gegenstelle: " - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Bestätigung erfolgreich abgeschlossen." - -#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Gegenstelle meldet: " - -#: mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal." - -#: mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." - -#: mod/dfrn_confirm.php:430 -msgid "Unable to set contact photo." -msgstr "Konnte das Bild des Kontakts nicht speichern." - -#: 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 ist nun mit %2$s befreundet" - -#: mod/dfrn_confirm.php:572 -#, php-format -msgid "No user record found for '%s' " -msgstr "Für '%s' wurde kein Nutzer gefunden" - -#: mod/dfrn_confirm.php:582 -msgid "Our site encryption key is apparently messed up." -msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung." - -#: mod/dfrn_confirm.php:593 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden." - -#: mod/dfrn_confirm.php:614 -msgid "Contact record was not found for you on our site." -msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden." - -#: mod/dfrn_confirm.php:628 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server." - -#: mod/dfrn_confirm.php:648 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal." - -#: mod/dfrn_confirm.php:659 -msgid "Unable to set your contact credentials on our system." -msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." - -#: mod/dfrn_confirm.php:726 -msgid "Unable to update your contact profile details on our system" -msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden" - -#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4237 -msgid "[Name Withheld]" -msgstr "[Name unterdrückt]" - -#: mod/dfrn_confirm.php:798 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s ist %2$s beigetreten" - -#: mod/profile.php:21 include/identity.php:77 -msgid "Requested profile is not available." -msgstr "Das angefragte Profil ist nicht vorhanden." - -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Tipps für neue Nutzer" - -#: mod/videos.php:113 -msgid "Do you really want to delete this video?" -msgstr "Möchtest Du dieses Video wirklich löschen?" - -#: mod/videos.php:118 -msgid "Delete Video" -msgstr "Video Löschen" - -#: mod/videos.php:197 -msgid "No videos selected" -msgstr "Keine Videos ausgewählt" - -#: mod/videos.php:298 mod/photos.php:1053 -msgid "Access to this item is restricted." -msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." - -#: mod/videos.php:373 include/text.php:1460 -msgid "View Video" -msgstr "Video ansehen" - -#: mod/videos.php:380 mod/photos.php:1827 -msgid "View Album" -msgstr "Album betrachten" - -#: mod/videos.php:389 -msgid "Recent Videos" -msgstr "Neueste Videos" - -#: mod/videos.php:391 -msgid "Upload New Videos" -msgstr "Neues Video hochladen" - -#: 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 hat %2$ss %3$s mit %4$s getaggt" - -#: mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Kontaktvorschlag gesendet." - -#: mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Kontakte vorschlagen" - -#: mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Schlage %s einen Kontakt vor" - -#: mod/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 "Ungültige Anfrage" - -#: mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." - -#: mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail." - -#: mod/lostpass.php:42 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast." - -#: mod/lostpass.php:53 -#, php-format -msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s" - -#: mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" - -#: mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." - -#: mod/lostpass.php:109 boot.php:1287 -msgid "Password Reset" -msgstr "Passwort zurücksetzen" - -#: mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." - -#: mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" - -#: mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere Dein neues Passwort - und dann" - -#: mod/lostpass.php:113 -msgid "click here to login" -msgstr "hier klicken, um Dich anzumelden" - -#: mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Du kannst das Passwort in den Einstellungen ändern, sobald Du Dich erfolgreich angemeldet hast." - -#: mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)." - -#: mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" -msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden." - -#: mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Auf %s wurde Dein Passwort geändert" - -#: mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Hast Du Dein Passwort vergessen?" - -#: mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet." - -#: mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Spitzname oder E-Mail:" - -#: mod/lostpass.php:162 -msgid "Reset" -msgstr "Zurücksetzen" - -#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2143 -#: view/theme/diabook/theme.php:480 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s mag %2$ss %3$s" - -#: mod/like.php:168 include/conversation.php:140 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s mag %2$ss %3$s nicht" - -#: mod/ping.php:233 -msgid "{0} wants to be your friend" -msgstr "{0} möchte mit Dir in Kontakt treten" - -#: mod/ping.php:248 -msgid "{0} sent you a message" -msgstr "{0} schickte Dir eine Nachricht" - -#: mod/ping.php:263 -msgid "{0} requested registration" -msgstr "{0} möchte sich registrieren" - -#: mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Keine Kontakte." - -#: mod/viewcontacts.php:78 include/text.php:917 -msgid "View Contacts" -msgstr "Kontakte anzeigen" - -#: mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Invalid request identifier." - -#: mod/notifications.php:35 mod/notifications.php:175 -#: mod/notifications.php:234 -msgid "Discard" -msgstr "Verwerfen" - -#: mod/notifications.php:78 -msgid "System" -msgstr "System" - -#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 -msgid "Network" -msgstr "Netzwerk" - -#: mod/notifications.php:90 mod/network.php:375 -msgid "Personal" -msgstr "Persönlich" - -#: mod/notifications.php:96 include/nav.php:105 include/nav.php:156 -#: view/theme/diabook/theme.php:123 -msgid "Home" -msgstr "Pinnwand" - -#: mod/notifications.php:102 include/nav.php:161 -msgid "Introductions" -msgstr "Kontaktanfragen" - -#: mod/notifications.php:127 -msgid "Show Ignored Requests" -msgstr "Zeige ignorierte Anfragen" - -#: mod/notifications.php:127 -msgid "Hide Ignored Requests" -msgstr "Verberge ignorierte Anfragen" - -#: mod/notifications.php:159 mod/notifications.php:209 -msgid "Notification type: " -msgstr "Benachrichtigungstyp: " - -#: mod/notifications.php:160 -msgid "Friend Suggestion" -msgstr "Kontaktvorschlag" - -#: mod/notifications.php:162 -#, php-format -msgid "suggested by %s" -msgstr "vorgeschlagen von %s" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "Post a new friend activity" -msgstr "Neue-Kontakt Nachricht senden" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "if applicable" -msgstr "falls anwendbar" - -#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1079 -msgid "Approve" -msgstr "Genehmigen" - -#: mod/notifications.php:191 -msgid "Claims to be known to you: " -msgstr "Behauptet Dich zu kennen: " - -#: mod/notifications.php:191 -msgid "yes" -msgstr "ja" - -#: mod/notifications.php:191 -msgid "no" -msgstr "nein" - -#: 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 "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" - -#: mod/notifications.php: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 "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" - -#: mod/notifications.php:203 -msgid "Friend" -msgstr "Freund" - -#: mod/notifications.php:204 -msgid "Sharer" -msgstr "Teilenden" - -#: mod/notifications.php:204 -msgid "Fan/Admirer" -msgstr "Fan/Verehrer" - -#: mod/notifications.php:210 -msgid "Friend/Connect Request" -msgstr "Kontakt-/Freundschaftsanfrage" - -#: mod/notifications.php:210 -msgid "New Follower" -msgstr "Neuer Bewunderer" - -#: 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 "Ort:" - -#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 -#: include/identity.php:581 -msgid "About:" -msgstr "Über:" - -#: mod/notifications.php:224 include/identity.php:575 -msgid "Tags:" -msgstr "Tags" - -#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 -#: include/identity.php:540 -msgid "Gender:" -msgstr "Geschlecht:" - -#: mod/notifications.php:240 -msgid "No introductions." -msgstr "Keine Kontaktanfragen." - -#: mod/notifications.php:243 include/nav.php:164 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: mod/notifications.php:281 mod/notifications.php:410 -#: mod/notifications.php:501 -#, php-format -msgid "%s liked %s's post" -msgstr "%s mag %ss Beitrag" - -#: mod/notifications.php:291 mod/notifications.php:420 -#: mod/notifications.php:511 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s mag %ss Beitrag nicht" - -#: mod/notifications.php:306 mod/notifications.php:435 -#: mod/notifications.php:526 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s ist jetzt mit %s befreundet" - -#: mod/notifications.php:313 mod/notifications.php:442 -#, php-format -msgid "%s created a new post" -msgstr "%s hat einen neuen Beitrag erstellt" - -#: mod/notifications.php:314 mod/notifications.php:443 -#: mod/notifications.php:536 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s hat %ss Beitrag kommentiert" - -#: mod/notifications.php:329 -msgid "No more network notifications." -msgstr "Keine weiteren Netzwerk-Benachrichtigungen." - -#: mod/notifications.php:333 -msgid "Network Notifications" -msgstr "Netzwerk Benachrichtigungen" - -#: mod/notifications.php:359 mod/notify.php:72 -msgid "No more system notifications." -msgstr "Keine weiteren Systembenachrichtigungen." - -#: mod/notifications.php:363 mod/notify.php:76 -msgid "System Notifications" -msgstr "Systembenachrichtigungen" - -#: mod/notifications.php:458 -msgid "No more personal notifications." -msgstr "Keine weiteren persönlichen Benachrichtigungen" - -#: mod/notifications.php:462 -msgid "Personal Notifications" -msgstr "Persönliche Benachrichtigungen" - -#: mod/notifications.php:543 -msgid "No more home notifications." -msgstr "Keine weiteren Pinnwand-Benachrichtigungen" - -#: mod/notifications.php:547 -msgid "Home Notifications" -msgstr "Pinnwand Benachrichtigungen" - -#: mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Quelle (bbcode) Text:" - -#: mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:" - -#: mod/babel.php:31 -msgid "Source input: " -msgstr "Originaltext:" - -#: mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (reines HTML): " - -#: mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " - -#: mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "bb2html2bb: " - -#: mod/babel.php:47 -msgid "bb2md: " -msgstr "bb2md: " - -#: mod/babel.php:51 -msgid "bb2md2html: " -msgstr "bb2md2html: " - -#: mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "bb2dia2bb: " - -#: mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Originaltext (Diaspora Format): " - -#: mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: mod/navigation.php:20 include/nav.php:34 -msgid "Nothing new here" -msgstr "Keine Neuigkeiten" - -#: mod/navigation.php:24 include/nav.php:38 -msgid "Clear notifications" -msgstr "Bereinige Benachrichtigungen" - -#: mod/message.php:9 include/nav.php:173 -msgid "New Message" -msgstr "Neue Nachricht" - -#: mod/message.php:64 mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Kein Empfänger gewählt." - -#: mod/message.php:68 -msgid "Unable to locate contact information." -msgstr "Konnte die Kontaktinformationen nicht finden." - -#: mod/message.php:71 mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Nachricht konnte nicht gesendet werden." - -#: mod/message.php:74 mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Konnte Nachrichten nicht abrufen." - -#: mod/message.php:77 mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Nachricht gesendet." - -#: mod/message.php:183 include/nav.php:170 -msgid "Messages" -msgstr "Nachrichten" - -#: mod/message.php:208 -msgid "Do you really want to delete this message?" -msgstr "Möchtest Du wirklich diese Nachricht löschen?" - -#: mod/message.php:228 -msgid "Message deleted." -msgstr "Nachricht gelöscht." - -#: mod/message.php:259 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." - -#: 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 "Bitte gib die URL des Links ein:" - -#: mod/message.php:320 mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Private Nachricht senden" - -#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 -msgid "To:" -msgstr "An:" - -#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Betreff:" - -#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 -#: mod/invite.php:134 -msgid "Your message:" -msgstr "Deine Nachricht:" - -#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154 -#: mod/editpost.php:110 include/conversation.php:1056 -msgid "Upload photo" -msgstr "Foto hochladen" - -#: 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 "Einen Link einfügen" - -#: 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 "Bitte warten" - -#: mod/message.php:372 -msgid "No messages." -msgstr "Keine Nachrichten." - -#: mod/message.php:379 -#, php-format -msgid "Unknown sender - %s" -msgstr "'Unbekannter Absender - %s" - -#: mod/message.php:382 -#, php-format -msgid "You and %s" -msgstr "Du und %s" - -#: mod/message.php:385 -#, php-format -msgid "%s and You" -msgstr "%s und Du" - -#: mod/message.php:406 mod/message.php:547 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" - -#: mod/message.php:409 -msgid "D, d M Y - g:i A" -msgstr "D, d. M Y - g:i A" - -#: mod/message.php:412 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d Nachricht" -msgstr[1] "%d Nachrichten" - -#: mod/message.php:451 -msgid "Message not available." -msgstr "Nachricht nicht verfügbar." - -#: mod/message.php:521 -msgid "Delete message" -msgstr "Nachricht löschen" - -#: mod/message.php:549 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." - -#: mod/message.php:553 -msgid "Send Reply" -msgstr "Antwort senden" - -#: mod/update_display.php:22 mod/update_community.php:18 -#: mod/update_notes.php:37 mod/update_profile.php:41 mod/update_network.php:25 -msgid "[Embedded content - reload page to view]" -msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]" - -#: mod/crepair.php:107 -msgid "Contact settings applied." -msgstr "Einstellungen zum Kontakt angewandt." - -#: mod/crepair.php:109 -msgid "Contact update failed." -msgstr "Konnte den Kontakt nicht aktualisieren." - -#: mod/crepair.php:140 -msgid "Repair Contact Settings" -msgstr "Kontakteinstellungen reparieren" - -#: 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 "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." - -#: mod/crepair.php:143 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst." - -#: mod/crepair.php:149 -msgid "Return to contact editor" -msgstr "Zurück zum Kontakteditor" - -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "No mirroring" -msgstr "Kein Spiegeln" - -#: mod/crepair.php:160 -msgid "Mirror as forwarded posting" -msgstr "Spiegeln als weitergeleitete Beiträge" - -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "Mirror as my own posting" -msgstr "Spiegeln als meine eigenen Beiträge" - -#: mod/crepair.php:169 -msgid "Refetch contact data" -msgstr "Kontaktdaten neu laden" - -#: 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 "Name" - -#: mod/crepair.php:171 -msgid "Account Nickname" -msgstr "Konto-Spitzname" - -#: mod/crepair.php:172 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - überschreibt Name/Spitzname" - -#: mod/crepair.php:173 -msgid "Account URL" -msgstr "Konto-URL" - -#: mod/crepair.php:174 -msgid "Friend Request URL" -msgstr "URL für Freundschaftsanfragen" - -#: mod/crepair.php:175 -msgid "Friend Confirm URL" -msgstr "URL für Bestätigungen von Freundschaftsanfragen" - -#: mod/crepair.php:176 -msgid "Notification Endpoint URL" -msgstr "URL-Endpunkt für Benachrichtigungen" - -#: mod/crepair.php:177 -msgid "Poll/Feed URL" -msgstr "Pull/Feed-URL" - -#: mod/crepair.php:178 -msgid "New photo from this URL" -msgstr "Neues Foto von dieser URL" - -#: mod/crepair.php:179 -msgid "Remote Self" -msgstr "Entfernte Konten" - -#: mod/crepair.php:181 -msgid "Mirror postings from this contact" -msgstr "Spiegle Beiträge dieses Kontakts" - -#: mod/crepair.php:181 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden." - -#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 -msgid "Login" -msgstr "Anmeldung" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "Der Beitrag wurde angelegt" - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Zugriff verweigert." - -#: mod/dirfind.php:36 -#, php-format -msgid "People Search - %s" -msgstr "Personensuche - %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 "Verbinden" - -#: mod/dirfind.php:139 mod/match.php:73 -msgid "No matches" -msgstr "Keine Übereinstimmungen" - -#: mod/fbrowser.php:32 include/identity.php:648 include/nav.php:78 -#: view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Bilder" - -#: mod/fbrowser.php:122 -msgid "Files" -msgstr "Dateien" - -#: mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Kontakte, die keiner Gruppe zugewiesen sind" - -#: mod/admin.php:57 -msgid "Theme settings updated." -msgstr "Themeneinstellungen aktualisiert." - -#: mod/admin.php:104 mod/admin.php:682 -msgid "Site" -msgstr "Seite" - -#: mod/admin.php:105 mod/admin.php:628 mod/admin.php:1072 mod/admin.php:1087 -msgid "Users" -msgstr "Nutzer" - -#: mod/admin.php:106 mod/admin.php:1176 mod/admin.php:1236 mod/settings.php:66 -msgid "Plugins" -msgstr "Plugins" - -#: mod/admin.php:107 mod/admin.php:1404 mod/admin.php:1438 -msgid "Themes" -msgstr "Themen" - -#: mod/admin.php:108 -msgid "DB updates" -msgstr "DB Updates" - -#: mod/admin.php:109 mod/admin.php:200 -msgid "Inspect Queue" -msgstr "Warteschlange Inspizieren" - -#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1525 -msgid "Logs" -msgstr "Protokolle" - -#: mod/admin.php:125 -msgid "probe address" -msgstr "Adresse untersuchen" - -#: mod/admin.php:126 -msgid "check webfinger" -msgstr "Webfinger überprüfen" - -#: mod/admin.php:131 include/nav.php:193 -msgid "Admin" -msgstr "Administration" - -#: mod/admin.php:132 -msgid "Plugin Features" -msgstr "Plugin Features" - -#: mod/admin.php:134 -msgid "diagnostics" -msgstr "Diagnose" - -#: mod/admin.php:135 -msgid "User registrations waiting for confirmation" -msgstr "Nutzeranmeldungen die auf Bestätigung warten" - -#: 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 "Administration" - -#: mod/admin.php:202 -msgid "ID" -msgstr "ID" - -#: mod/admin.php:203 -msgid "Recipient Name" -msgstr "Empfänger Name" - -#: mod/admin.php:204 -msgid "Recipient Profile" -msgstr "Empfänger Profil" - -#: mod/admin.php:206 -msgid "Created" -msgstr "Erstellt" - -#: mod/admin.php:207 -msgid "Last Tried" -msgstr "Zuletzt versucht" - -#: 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 "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden." - -#: mod/admin.php:220 mod/admin.php:1025 -msgid "Normal Account" -msgstr "Normales Konto" - -#: mod/admin.php:221 mod/admin.php:1026 -msgid "Soapbox Account" -msgstr "Marktschreier-Konto" - -#: mod/admin.php:222 mod/admin.php:1027 -msgid "Community/Celebrity Account" -msgstr "Forum/Promi-Konto" - -#: mod/admin.php:223 mod/admin.php:1028 -msgid "Automatic Friend Account" -msgstr "Automatisches Freundekonto" - -#: mod/admin.php:224 -msgid "Blog Account" -msgstr "Blog-Konto" - -#: mod/admin.php:225 -msgid "Private Forum" -msgstr "Privates Forum" - -#: mod/admin.php:244 -msgid "Message queues" -msgstr "Nachrichten-Warteschlangen" - -#: mod/admin.php:250 -msgid "Summary" -msgstr "Zusammenfassung" - -#: mod/admin.php:252 -msgid "Registered users" -msgstr "Registrierte Nutzer" - -#: mod/admin.php:254 -msgid "Pending registrations" -msgstr "Anstehende Anmeldungen" - -#: mod/admin.php:255 -msgid "Version" -msgstr "Version" - -#: mod/admin.php:260 -msgid "Active plugins" -msgstr "Aktive Plugins" - -#: mod/admin.php:283 -msgid "Can not parse base url. Must have at least ://" -msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen" - -#: mod/admin.php:565 -msgid "Site settings updated." -msgstr "Seiteneinstellungen aktualisiert." - -#: mod/admin.php:594 mod/settings.php:883 -msgid "No special theme for mobile devices" -msgstr "Kein spezielles Theme für mobile Geräte verwenden." - -#: mod/admin.php:611 -msgid "No community page" -msgstr "Keine Gemeinschaftsseite" - -#: mod/admin.php:612 -msgid "Public postings from users of this site" -msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite" - -#: mod/admin.php:613 -msgid "Global community page" -msgstr "Globale Gemeinschaftsseite" - -#: mod/admin.php:619 -msgid "At post arrival" -msgstr "Beim Empfang von Nachrichten" - -#: mod/admin.php:620 include/contact_selectors.php:56 -msgid "Frequently" -msgstr "immer wieder" - -#: mod/admin.php:621 include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Stündlich" - -#: mod/admin.php:622 include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Zweimal täglich" - -#: mod/admin.php:623 include/contact_selectors.php:59 -msgid "Daily" -msgstr "Täglich" - -#: mod/admin.php:629 -msgid "Users, Global Contacts" -msgstr "Nutzer, globale Kontakte" - -#: mod/admin.php:630 -msgid "Users, Global Contacts/fallback" -msgstr "Nutzer, globale Kontakte / Fallback" - -#: mod/admin.php:634 -msgid "One month" -msgstr "ein Monat" - -#: mod/admin.php:635 -msgid "Three months" -msgstr "drei Monate" - -#: mod/admin.php:636 -msgid "Half a year" -msgstr "ein halbes Jahr" - -#: mod/admin.php:637 -msgid "One year" -msgstr "ein Jahr" - -#: mod/admin.php:642 -msgid "Multi user instance" -msgstr "Mehrbenutzer Instanz" - -#: mod/admin.php:665 -msgid "Closed" -msgstr "Geschlossen" - -#: mod/admin.php:666 -msgid "Requires approval" -msgstr "Bedarf der Zustimmung" - -#: mod/admin.php:667 -msgid "Open" -msgstr "Offen" - -#: mod/admin.php:671 -msgid "No SSL policy, links will track page SSL state" -msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten" - -#: mod/admin.php:672 -msgid "Force all links to use SSL" -msgstr "SSL für alle Links erzwingen" - -#: mod/admin.php:673 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)" - -#: mod/admin.php: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 "Einstellungen speichern" - -#: mod/admin.php:684 mod/register.php:260 -msgid "Registration" -msgstr "Registrierung" - -#: mod/admin.php:685 -msgid "File upload" -msgstr "Datei hochladen" - -#: mod/admin.php:686 -msgid "Policies" -msgstr "Regeln" - -#: mod/admin.php:687 -msgid "Advanced" -msgstr "Erweitert" - -#: mod/admin.php:688 -msgid "Auto Discovered Contact Directory" -msgstr "Automatisch ein Kontaktverzeichnis erstellen" - -#: mod/admin.php:689 -msgid "Performance" -msgstr "Performance" - -#: mod/admin.php:690 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen." - -#: mod/admin.php:693 -msgid "Site name" -msgstr "Seitenname" - -#: mod/admin.php:694 -msgid "Host name" -msgstr "Host Name" - -#: mod/admin.php:695 -msgid "Sender Email" -msgstr "Absender für Emails" - -#: mod/admin.php:695 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "Die E-Mail Adresse die dein Server zum Versenden von Benachrichtigungen verwenden soll." - -#: mod/admin.php:696 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: mod/admin.php:697 -msgid "Shortcut icon" -msgstr "Shortcut Icon" - -#: mod/admin.php:697 -msgid "Link to an icon that will be used for browsers." -msgstr "Link zu einem Icon, das Browser verwenden werden." - -#: mod/admin.php:698 -msgid "Touch icon" -msgstr "Touch Icon" - -#: mod/admin.php:698 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "Link zu einem Icon das Tablets und Handies verwenden sollen." - -#: mod/admin.php:699 -msgid "Additional Info" -msgstr "Zusätzliche Informationen" - -#: mod/admin.php:699 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/siteinfo." -msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden." - -#: mod/admin.php:700 -msgid "System language" -msgstr "Systemsprache" - -#: mod/admin.php:701 -msgid "System theme" -msgstr "Systemweites Theme" - -#: mod/admin.php:701 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - Theme-Einstellungen ändern" - -#: mod/admin.php:702 -msgid "Mobile system theme" -msgstr "Systemweites mobiles Theme" - -#: mod/admin.php:702 -msgid "Theme for mobile devices" -msgstr "Thema für mobile Geräte" - -#: mod/admin.php:703 -msgid "SSL link policy" -msgstr "Regeln für SSL Links" - -#: mod/admin.php:703 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Bestimmt, ob generierte Links SSL verwenden müssen" - -#: mod/admin.php:704 -msgid "Force SSL" -msgstr "Erzwinge SSL" - -#: mod/admin.php:704 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife." - -#: mod/admin.php:705 -msgid "Old style 'Share'" -msgstr "Altes \"Teilen\" Element" - -#: mod/admin.php:705 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen." - -#: mod/admin.php:706 -msgid "Hide help entry from navigation menu" -msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü" - -#: 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 "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden." - -#: mod/admin.php:707 -msgid "Single user instance" -msgstr "Ein-Nutzer Instanz" - -#: mod/admin.php:707 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt." - -#: mod/admin.php:708 -msgid "Maximum image size" -msgstr "Maximale Bildgröße" - -#: mod/admin.php:708 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit." - -#: mod/admin.php:709 -msgid "Maximum image length" -msgstr "Maximale Bildlänge" - -#: mod/admin.php:709 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet." - -#: mod/admin.php:710 -msgid "JPEG image quality" -msgstr "Qualität des JPEG Bildes" - -#: mod/admin.php:710 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust." - -#: mod/admin.php:712 -msgid "Register policy" -msgstr "Registrierungsmethode" - -#: mod/admin.php:713 -msgid "Maximum Daily Registrations" -msgstr "Maximum täglicher Registrierungen" - -#: 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 "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt." - -#: mod/admin.php:714 -msgid "Register text" -msgstr "Registrierungstext" - -#: mod/admin.php:714 -msgid "Will be displayed prominently on the registration page." -msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt." - -#: mod/admin.php:715 -msgid "Accounts abandoned after x days" -msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" - -#: mod/admin.php:715 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit." - -#: mod/admin.php:716 -msgid "Allowed friend domains" -msgstr "Erlaubte Domains für Kontakte" - -#: 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 "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." - -#: mod/admin.php:717 -msgid "Allowed email domains" -msgstr "Erlaubte Domains für E-Mails" - -#: 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 "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." - -#: mod/admin.php:718 -msgid "Block public" -msgstr "Öffentlichen Zugriff blockieren" - -#: 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 "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist." - -#: mod/admin.php:719 -msgid "Force publish" -msgstr "Erzwinge Veröffentlichung" - -#: mod/admin.php:719 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen." - -#: mod/admin.php:720 -msgid "Global directory update URL" -msgstr "URL für Updates beim weltweiten Verzeichnis" - -#: 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 für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar." - -#: mod/admin.php:721 -msgid "Allow threaded items" -msgstr "Erlaube Threads in Diskussionen" - -#: mod/admin.php:721 -msgid "Allow infinite level threading for items on this site." -msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite." - -#: mod/admin.php:722 -msgid "Private posts by default for new users" -msgstr "Private Beiträge als Standard für neue Nutzer" - -#: mod/admin.php:722 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen." - -#: mod/admin.php:723 -msgid "Don't include post content in email notifications" -msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden" - -#: 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 "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden." - -#: mod/admin.php:724 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten." - -#: mod/admin.php:724 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt." - -#: mod/admin.php:725 -msgid "Don't embed private images in posts" -msgstr "Private Bilder nicht in Beiträgen einbetten." - -#: 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 "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert." - -#: mod/admin.php:726 -msgid "Allow Users to set remote_self" -msgstr "Nutzern erlauben das remote_self Flag zu setzen" - -#: 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 "Ist dies ausgewählt kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im Kontakt reparieren Dialog markieren. Nach dem setzten dieses Flags werden alle Top-Level Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet." - -#: mod/admin.php:727 -msgid "Block multiple registrations" -msgstr "Unterbinde Mehrfachregistrierung" - -#: mod/admin.php:727 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen." - -#: mod/admin.php:728 -msgid "OpenID support" -msgstr "OpenID Unterstützung" - -#: mod/admin.php:728 -msgid "OpenID support for registration and logins." -msgstr "OpenID-Unterstützung für Registrierung und Login." - -#: mod/admin.php:729 -msgid "Fullname check" -msgstr "Namen auf Vollständigkeit überprüfen" - -#: mod/admin.php:729 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden." - -#: mod/admin.php:730 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8 Reguläre Ausdrücke" - -#: mod/admin.php:730 -msgid "Use PHP UTF8 regular expressions" -msgstr "PHP UTF8 Ausdrücke verwenden" - -#: mod/admin.php:731 -msgid "Community Page Style" -msgstr "Art der Gemeinschaftsseite" - -#: 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 "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen." - -#: mod/admin.php:732 -msgid "Posts per user on community page" -msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite" - -#: mod/admin.php:732 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"'Global Community')" -msgstr "Die Anzahl der Beiträge die von jedem Nutzer maximal auf der Gemeinschaftsseite angezeigt werden sollen. Dieser Parameter wird nicht für die Globale Gemeinschaftsseite genutzt." - -#: mod/admin.php:733 -msgid "Enable OStatus support" -msgstr "OStatus Unterstützung aktivieren" - -#: 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 "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt." - -#: mod/admin.php:734 -msgid "OStatus conversation completion interval" -msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen" - -#: 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 "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein." - -#: mod/admin.php:735 -msgid "Enable Diaspora support" -msgstr "Diaspora Unterstützung aktivieren" - -#: mod/admin.php:735 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Verwende die eingebaute Diaspora-Verknüpfung." - -#: mod/admin.php:736 -msgid "Only allow Friendica contacts" -msgstr "Nur Friendica-Kontakte erlauben" - -#: mod/admin.php:736 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert." - -#: mod/admin.php:737 -msgid "Verify SSL" -msgstr "SSL Überprüfen" - -#: 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 "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann." - -#: mod/admin.php:738 -msgid "Proxy user" -msgstr "Proxy Nutzer" - -#: mod/admin.php:739 -msgid "Proxy URL" -msgstr "Proxy URL" - -#: mod/admin.php:740 -msgid "Network timeout" -msgstr "Netzwerk Wartezeit" - -#: mod/admin.php:740 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)." - -#: mod/admin.php:741 -msgid "Delivery interval" -msgstr "Zustellungsintervall" - -#: 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 "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." - -#: mod/admin.php:742 -msgid "Poll interval" -msgstr "Abfrageintervall" - -#: mod/admin.php:742 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Verzögere Hintergrundprozesse um diese Anzahl an Sekunden, um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet." - -#: mod/admin.php:743 -msgid "Maximum Load Average" -msgstr "Maximum Load Average" - -#: mod/admin.php:743 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50" - -#: mod/admin.php:744 -msgid "Maximum Load Average (Frontend)" -msgstr "Maximum Load Average (Frontend)" - -#: mod/admin.php:744 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50." - -#: mod/admin.php:746 -msgid "Periodical check of global contacts" -msgstr "Regelmäßig globale Kontakte überprüfen" - -#: 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 "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft." - -#: mod/admin.php:747 -msgid "Discover contacts from other servers" -msgstr "Neue Kontakte auf anderen Servern entdecken" - -#: 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 "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für aältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'." - -#: mod/admin.php:748 -msgid "Timeframe for fetching global contacts" -msgstr "Zeitfenster für globale Kontakte" - -#: 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 "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden." - -#: mod/admin.php:749 -msgid "Search the local directory" -msgstr "Lokales Verzeichnis durchsuchen" - -#: 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 "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird." - -#: mod/admin.php:751 -msgid "Publish server information" -msgstr "Server Informationen veröffentlichen" - -#: 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 "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Nutzer_innen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte the-federation.info aufrufen." - -#: mod/admin.php:753 -msgid "Use MySQL full text engine" -msgstr "Nutze MySQL full text engine" - -#: mod/admin.php:753 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden." - -#: mod/admin.php:754 -msgid "Suppress Language" -msgstr "Sprachinformation unterdrücken" - -#: mod/admin.php:754 -msgid "Suppress language information in meta information about a posting." -msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags." - -#: mod/admin.php:755 -msgid "Suppress Tags" -msgstr "Tags Unterdrücken" - -#: mod/admin.php:755 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags." - -#: mod/admin.php:756 -msgid "Path to item cache" -msgstr "Pfad zum Eintrag Cache" - -#: mod/admin.php:756 -msgid "The item caches buffers generated bbcode and external images." -msgstr "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert." - -#: mod/admin.php:757 -msgid "Cache duration in seconds" -msgstr "Cache-Dauer in Sekunden" - -#: 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 "Wie lange sollen die gecachedten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item Cache zu deaktivieren, setze diesen Wert auf -1." - -#: mod/admin.php:758 -msgid "Maximum numbers of comments per post" -msgstr "Maximale Anzahl von Kommentaren pro Beitrag" - -#: mod/admin.php:758 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100." - -#: mod/admin.php:759 -msgid "Path for lock file" -msgstr "Pfad für die Sperrdatei" - -#: mod/admin.php:759 -msgid "" -"The lock file is used to avoid multiple pollers at one time. Only define a " -"folder here." -msgstr "Die lock-Datei wird benutzt, damit nicht mehrere poller auf einmal laufen. Definiere hier einen Dateiverzeichnis." - -#: mod/admin.php:760 -msgid "Temp path" -msgstr "Temp Pfad" - -#: 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 "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad." - -#: mod/admin.php:761 -msgid "Base path to installation" -msgstr "Basis-Pfad zur Installation" - -#: 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 "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist." - -#: mod/admin.php:762 -msgid "Disable picture proxy" -msgstr "Bilder Proxy deaktivieren" - -#: mod/admin.php:762 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwith." -msgstr "Der Proxy für Bilder verbessert die Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen." - -#: mod/admin.php:763 -msgid "Enable old style pager" -msgstr "Den Old-Style Pager aktiviren" - -#: mod/admin.php:763 -msgid "" -"The old style pager has page numbers but slows down massively the page " -"speed." -msgstr "Der Old-Style Pager zeigt Seitennummern an, verlangsamt aber auch drastisch das Laden einer Seite." - -#: mod/admin.php:764 -msgid "Only search in tags" -msgstr "Nur in Tags suchen" - -#: mod/admin.php:764 -msgid "On large systems the text search can slow down the system extremely." -msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen." - -#: mod/admin.php:766 -msgid "New base url" -msgstr "Neue Basis-URL" - -#: mod/admin.php:766 -msgid "" -"Change base url for this server. Sends relocate message to all DFRN contacts" -" of all users." -msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle DFRN Kontakte deiner Nutzer_innen." - -#: mod/admin.php:768 -msgid "RINO Encryption" -msgstr "RINO Verschlüsselung" - -#: mod/admin.php:768 -msgid "Encryption layer between nodes." -msgstr "Verschlüsselung zwischen Friendica Instanzen" - -#: mod/admin.php:769 -msgid "Embedly API key" -msgstr "Embedly API Schlüssel" - -#: mod/admin.php:769 -msgid "" -"Embedly is used to fetch additional data for " -"web pages. This is an optional parameter." -msgstr "Embedly wird verwendet um zusätzliche Informationen von Webseiten zu laden. Dies ist ein optionaler Parameter." - -#: mod/admin.php:787 -msgid "Update has been marked successful" -msgstr "Update wurde als erfolgreich markiert" - -#: mod/admin.php:795 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt." - -#: mod/admin.php:798 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s" - -#: mod/admin.php:810 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s" - -#: mod/admin.php:813 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s war erfolgreich." - -#: mod/admin.php:817 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status." - -#: mod/admin.php:819 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste." - -#: mod/admin.php:838 -msgid "No failed updates." -msgstr "Keine fehlgeschlagenen Updates." - -#: mod/admin.php:839 -msgid "Check database structure" -msgstr "Datenbank Struktur überprüfen" - -#: mod/admin.php:844 -msgid "Failed Updates" -msgstr "Fehlgeschlagene Updates" - -#: mod/admin.php:845 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben." - -#: mod/admin.php:846 -msgid "Mark success (if update was manually applied)" -msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" - -#: mod/admin.php:847 -msgid "Attempt to execute this update step automatically" -msgstr "Versuchen, diesen Schritt automatisch auszuführen" - -#: 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 "\nHallo %1$s,\n\nauf %2$s wurde ein Account für Dich angelegt." - -#: 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 "\nNachfolgend die Anmelde-Details:\n\tAdresse der Seite:\t%1$s\n\tBenutzername:\t%2$s\n\tPasswort:\t%3$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nNun viel Spaß, gute Begegnungen und willkommen auf %4$s." - -#: mod/admin.php:914 include/user.php:421 -#, php-format -msgid "Registration details for %s" -msgstr "Details der Registration von %s" - -#: mod/admin.php:926 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s Benutzer geblockt/freigegeben" -msgstr[1] "%s Benutzer geblockt/freigegeben" - -#: mod/admin.php:933 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s Nutzer gelöscht" -msgstr[1] "%s Nutzer gelöscht" - -#: mod/admin.php:972 -#, php-format -msgid "User '%s' deleted" -msgstr "Nutzer '%s' gelöscht" - -#: mod/admin.php:980 -#, php-format -msgid "User '%s' unblocked" -msgstr "Nutzer '%s' entsperrt" - -#: mod/admin.php:980 -#, php-format -msgid "User '%s' blocked" -msgstr "Nutzer '%s' gesperrt" - -#: mod/admin.php:1073 -msgid "Add User" -msgstr "Nutzer hinzufügen" - -#: mod/admin.php:1074 -msgid "select all" -msgstr "Alle auswählen" - -#: mod/admin.php:1075 -msgid "User registrations waiting for confirm" -msgstr "Neuanmeldungen, die auf Deine Bestätigung warten" - -#: mod/admin.php:1076 -msgid "User waiting for permanent deletion" -msgstr "Nutzer wartet auf permanente Löschung" - -#: mod/admin.php:1077 -msgid "Request date" -msgstr "Anfragedatum" - -#: 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 "Keine Neuanmeldungen." - -#: mod/admin.php:1080 -msgid "Deny" -msgstr "Verwehren" - -#: mod/admin.php:1084 -msgid "Site admin" -msgstr "Seitenadministrator" - -#: mod/admin.php:1085 -msgid "Account expired" -msgstr "Account ist abgelaufen" - -#: mod/admin.php:1088 -msgid "New User" -msgstr "Neuer Nutzer" - -#: mod/admin.php:1089 mod/admin.php:1090 -msgid "Register date" -msgstr "Anmeldedatum" - -#: mod/admin.php:1089 mod/admin.php:1090 -msgid "Last login" -msgstr "Letzte Anmeldung" - -#: mod/admin.php:1089 mod/admin.php:1090 -msgid "Last item" -msgstr "Letzter Beitrag" - -#: mod/admin.php:1089 -msgid "Deleted since" -msgstr "Gelöscht seit" - -#: mod/admin.php:1090 mod/settings.php:41 -msgid "Account" -msgstr "Nutzerkonto" - -#: 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 "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist Du sicher?" - -#: mod/admin.php: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 "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist Du sicher?" - -#: mod/admin.php:1103 -msgid "Name of the new user." -msgstr "Name des neuen Nutzers" - -#: mod/admin.php:1104 -msgid "Nickname" -msgstr "Spitzname" - -#: mod/admin.php:1104 -msgid "Nickname of the new user." -msgstr "Spitznamen für den neuen Nutzer" - -#: mod/admin.php:1105 -msgid "Email address of the new user." -msgstr "Email Adresse des neuen Nutzers" - -#: mod/admin.php:1138 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s deaktiviert." - -#: mod/admin.php:1142 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s aktiviert." - -#: mod/admin.php:1152 mod/admin.php:1375 -msgid "Disable" -msgstr "Ausschalten" - -#: mod/admin.php:1154 mod/admin.php:1377 -msgid "Enable" -msgstr "Einschalten" - -#: mod/admin.php:1177 mod/admin.php:1405 -msgid "Toggle" -msgstr "Umschalten" - -#: mod/admin.php:1185 mod/admin.php:1415 -msgid "Author: " -msgstr "Autor:" - -#: mod/admin.php:1186 mod/admin.php:1416 -msgid "Maintainer: " -msgstr "Betreuer:" - -#: mod/admin.php:1335 -msgid "No themes found." -msgstr "Keine Themen gefunden." - -#: mod/admin.php:1397 -msgid "Screenshot" -msgstr "Bildschirmfoto" - -#: mod/admin.php:1443 -msgid "[Experimental]" -msgstr "[Experimentell]" - -#: mod/admin.php:1444 -msgid "[Unsupported]" -msgstr "[Nicht unterstützt]" - -#: mod/admin.php:1471 -msgid "Log settings updated." -msgstr "Protokolleinstellungen aktualisiert." - -#: mod/admin.php:1527 -msgid "Clear" -msgstr "löschen" - -#: mod/admin.php:1533 -msgid "Enable Debugging" -msgstr "Protokoll führen" - -#: mod/admin.php:1534 -msgid "Log file" -msgstr "Protokolldatei" - -#: mod/admin.php:1534 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis." - -#: mod/admin.php:1535 -msgid "Log level" -msgstr "Protokoll-Level" - -#: mod/admin.php:1585 include/acl_selectors.php:347 -msgid "Close" -msgstr "Schließen" - -#: mod/admin.php:1591 -msgid "FTP Host" -msgstr "FTP Host" - -#: mod/admin.php:1592 -msgid "FTP Path" -msgstr "FTP Pfad" - -#: mod/admin.php:1593 -msgid "FTP User" -msgstr "FTP Nutzername" - -#: mod/admin.php:1594 -msgid "FTP Password" -msgstr "FTP Passwort" - -#: mod/network.php:143 -#, php-format -msgid "Search Results For: %s" -msgstr "Suchergebnisse für: %s" - -#: mod/network.php:187 mod/search.php:25 +#: mod/search.php:25 mod/network.php:187 msgid "Remove term" msgstr "Begriff entfernen" -#: mod/network.php:196 mod/search.php:34 include/features.php:42 +#: mod/search.php:34 mod/network.php:196 include/features.php:42 msgid "Saved Searches" msgstr "Gespeicherte Suchen" -#: mod/network.php:197 include/group.php:277 -msgid "add" -msgstr "hinzufügen" +#: mod/search.php:107 include/text.php:996 include/nav.php:119 +msgid "Search" +msgstr "Suche" -#: mod/network.php:358 -msgid "Commented Order" -msgstr "Neueste Kommentare" - -#: mod/network.php:361 -msgid "Sort by Comment Date" -msgstr "Nach Kommentardatum sortieren" - -#: mod/network.php:365 -msgid "Posted Order" -msgstr "Neueste Beiträge" - -#: mod/network.php:368 -msgid "Sort by Post Date" -msgstr "Nach Beitragsdatum sortieren" - -#: mod/network.php:378 -msgid "Posts that mention or involve you" -msgstr "Beiträge, in denen es um Dich geht" - -#: mod/network.php:385 -msgid "New" -msgstr "Neue" - -#: mod/network.php:388 -msgid "Activity Stream - by date" -msgstr "Aktivitäten-Stream - nach Datum" - -#: mod/network.php:395 -msgid "Shared Links" -msgstr "Geteilte Links" - -#: mod/network.php:398 -msgid "Interesting Links" -msgstr "Interessante Links" - -#: mod/network.php:405 -msgid "Starred" -msgstr "Markierte" - -#: mod/network.php:408 -msgid "Favourite Posts" -msgstr "Favorisierte Beiträge" - -#: 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] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk." -msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken." - -#: mod/network.php:469 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten." - -#: mod/network.php:532 mod/content.php:119 -msgid "No such group" -msgstr "Es gibt keine solche Gruppe" - -#: mod/network.php:549 mod/content.php:130 -msgid "Group is empty" -msgstr "Gruppe ist leer" - -#: mod/network.php:560 mod/content.php:135 -#, php-format -msgid "Group: %s" -msgstr "Gruppe: %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 "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen." - -#: mod/network.php:587 -msgid "Invalid contact." -msgstr "Ungültiger Kontakt." - -#: mod/allfriends.php:37 -#, php-format -msgid "Friends of %s" -msgstr "Freunde von %s" - -#: mod/allfriends.php:44 -msgid "No friends to display." -msgstr "Keine Freunde zum Anzeigen." - -#: mod/events.php:71 mod/events.php:73 -msgid "Event can not end before it has started." -msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt." - -#: mod/events.php:80 mod/events.php:82 -msgid "Event title and start time are required." -msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." - -#: mod/events.php:317 -msgid "l, F j" -msgstr "l, F j" - -#: mod/events.php:339 -msgid "Edit event" -msgstr "Veranstaltung bearbeiten" - -#: mod/events.php:361 include/text.php:1716 include/text.php:1723 -msgid "link to source" -msgstr "Link zum Originalbeitrag" - -#: mod/events.php:396 include/identity.php:667 include/nav.php:80 -#: view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Veranstaltungen" - -#: mod/events.php:397 -msgid "Create New Event" -msgstr "Neue Veranstaltung erstellen" - -#: mod/events.php:398 -msgid "Previous" -msgstr "Vorherige" - -#: mod/events.php:399 mod/install.php:209 -msgid "Next" -msgstr "Nächste" - -#: mod/events.php:491 -msgid "Event details" -msgstr "Veranstaltungsdetails" - -#: mod/events.php:492 -msgid "Starting date and Title are required." -msgstr "Anfangszeitpunkt und Titel werden benötigt" - -#: mod/events.php:493 -msgid "Event Starts:" -msgstr "Veranstaltungsbeginn:" - -#: mod/events.php:493 mod/events.php:505 -msgid "Required" -msgstr "Benötigt" - -#: mod/events.php:495 -msgid "Finish date/time is not known or not relevant" -msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" - -#: mod/events.php:497 -msgid "Event Finishes:" -msgstr "Veranstaltungsende:" - -#: mod/events.php:499 -msgid "Adjust for viewer timezone" -msgstr "An Zeitzone des Betrachters anpassen" - -#: mod/events.php:501 -msgid "Description:" -msgstr "Beschreibung" - -#: mod/events.php:505 -msgid "Title:" -msgstr "Titel:" - -#: mod/events.php:507 -msgid "Share this event" -msgstr "Veranstaltung teilen" - -#: 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 "Vorschau" - -#: mod/content.php:439 mod/content.php:742 mod/photos.php:1672 -#: object/Item.php:130 include/conversation.php:612 -msgid "Select" -msgstr "Auswählen" - -#: 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 "Das Profil von %s auf %s betrachten." - -#: mod/content.php:483 mod/content.php:866 object/Item.php:342 -#: include/conversation.php:673 -#, php-format -msgid "%s from %s" -msgstr "%s von %s" - -#: mod/content.php:499 include/conversation.php:689 -msgid "View in context" -msgstr "Im Zusammenhang betrachten" - -#: mod/content.php:605 object/Item.php:389 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d Kommentar" -msgstr[1] "%d Kommentare" - -#: mod/content.php:607 object/Item.php:391 object/Item.php:404 -#: include/text.php:2038 -msgid "comment" -msgid_plural "comments" -msgstr[0] "Kommentar" -msgstr[1] "Kommentare" - -#: mod/content.php:608 boot.php:765 object/Item.php:392 -#: include/contact_widgets.php:205 include/items.php:5134 -msgid "show more" -msgstr "mehr anzeigen" - -#: mod/content.php:622 mod/photos.php:1379 object/Item.php:117 -msgid "Private Message" -msgstr "Private Nachricht" - -#: mod/content.php:686 mod/photos.php:1561 object/Item.php:232 -msgid "I like this (toggle)" -msgstr "Ich mag das (toggle)" - -#: mod/content.php:686 object/Item.php:232 -msgid "like" -msgstr "mag ich" - -#: mod/content.php:687 mod/photos.php:1562 object/Item.php:233 -msgid "I don't like this (toggle)" -msgstr "Ich mag das nicht (toggle)" - -#: mod/content.php:687 object/Item.php:233 -msgid "dislike" -msgstr "mag ich nicht" - -#: mod/content.php:689 object/Item.php:235 -msgid "Share this" -msgstr "Weitersagen" - -#: mod/content.php:689 object/Item.php:235 -msgid "share" -msgstr "Teilen" - -#: 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 "Das bist Du" - -#: 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 "Kommentar" - -#: mod/content.php:713 object/Item.php:681 -msgid "Bold" -msgstr "Fett" - -#: mod/content.php:714 object/Item.php:682 -msgid "Italic" -msgstr "Kursiv" - -#: mod/content.php:715 object/Item.php:683 -msgid "Underline" -msgstr "Unterstrichen" - -#: mod/content.php:716 object/Item.php:684 -msgid "Quote" -msgstr "Zitat" - -#: mod/content.php:717 object/Item.php:685 -msgid "Code" -msgstr "Code" - -#: mod/content.php:718 object/Item.php:686 -msgid "Image" -msgstr "Bild" - -#: 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 "Bearbeiten" - -#: mod/content.php:755 object/Item.php:196 -msgid "add star" -msgstr "markieren" - -#: mod/content.php:756 object/Item.php:197 -msgid "remove star" -msgstr "Markierung entfernen" - -#: mod/content.php:757 object/Item.php:198 -msgid "toggle star status" -msgstr "Markierung umschalten" - -#: mod/content.php:760 object/Item.php:201 -msgid "starred" -msgstr "markiert" - -#: mod/content.php:761 object/Item.php:221 -msgid "add tag" -msgstr "Tag hinzufügen" - -#: mod/content.php:765 object/Item.php:134 -msgid "save to folder" -msgstr "In Ordner speichern" - -#: mod/content.php:856 object/Item.php:330 -msgid "to" -msgstr "zu" - -#: 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 "Konto löschen" - -#: mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen." - -#: mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "Bitte gib Dein Passwort zur Verifikation ein:" - -#: mod/install.php:119 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica-Server für soziale Netzwerke – Setup" - -#: mod/install.php:125 -msgid "Could not connect to database." -msgstr "Verbindung zur Datenbank gescheitert." - -#: mod/install.php:129 -msgid "Could not create table." -msgstr "Tabelle konnte nicht angelegt werden." - -#: mod/install.php:135 -msgid "Your Friendica site database has been installed." -msgstr "Die Datenbank Deiner Friendicaseite wurde installiert." - -#: mod/install.php:140 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren." - -#: mod/install.php:141 mod/install.php:208 mod/install.php:530 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Lies bitte die \"INSTALL.txt\"." - -#: mod/install.php:153 -msgid "Database already in use." -msgstr "Die Datenbank wird bereits verwendet." - -#: mod/install.php:205 -msgid "System check" -msgstr "Systemtest" - -#: mod/install.php:210 -msgid "Check again" -msgstr "Noch einmal testen" - -#: mod/install.php:229 -msgid "Database connection" -msgstr "Datenbankverbindung" - -#: mod/install.php:230 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können." - -#: mod/install.php:231 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest." - -#: mod/install.php:232 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst." - -#: mod/install.php:236 -msgid "Database Server Name" -msgstr "Datenbank-Server" - -#: mod/install.php:237 -msgid "Database Login Name" -msgstr "Datenbank-Nutzer" - -#: mod/install.php:238 -msgid "Database Login Password" -msgstr "Datenbank-Passwort" - -#: mod/install.php:239 -msgid "Database Name" -msgstr "Datenbank-Name" - -#: mod/install.php:240 mod/install.php:279 -msgid "Site administrator email address" -msgstr "E-Mail-Adresse des Administrators" - -#: 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 "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst." - -#: mod/install.php:244 mod/install.php:282 -msgid "Please select a default timezone for your website" -msgstr "Bitte wähle die Standardzeitzone Deiner Webseite" - -#: mod/install.php:269 -msgid "Site settings" -msgstr "Server-Einstellungen" - -#: mod/install.php:323 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden." - -#: mod/install.php: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 "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'" - -#: mod/install.php:328 -msgid "PHP executable path" -msgstr "Pfad zu PHP" - -#: mod/install.php:328 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren." - -#: mod/install.php:333 -msgid "Command line PHP" -msgstr "Kommandozeilen-PHP" - -#: mod/install.php:342 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)" - -#: mod/install.php:343 -msgid "Found PHP version: " -msgstr "Gefundene PHP Version:" - -#: 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 "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert." - -#: mod/install.php:357 -msgid "This is required for message delivery to work." -msgstr "Dies wird für die Auslieferung von Nachrichten benötigt." - -#: 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 "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen" - -#: mod/install.php:381 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an." - -#: mod/install.php:383 -msgid "Generate encryption keys" -msgstr "Schlüssel erzeugen" - -#: mod/install.php:390 -msgid "libCurl PHP module" -msgstr "PHP: libCurl-Modul" - -#: mod/install.php:391 -msgid "GD graphics PHP module" -msgstr "PHP: GD-Grafikmodul" - -#: mod/install.php:392 -msgid "OpenSSL PHP module" -msgstr "PHP: OpenSSL-Modul" - -#: mod/install.php:393 -msgid "mysqli PHP module" -msgstr "PHP: mysqli-Modul" - -#: mod/install.php:394 -msgid "mb_string PHP module" -msgstr "PHP: mb_string-Modul" - -#: mod/install.php:399 mod/install.php:401 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" - -#: mod/install.php:399 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert." - -#: mod/install.php:407 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert." - -#: mod/install.php:411 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert." - -#: mod/install.php:415 -msgid "Error: openssl PHP module required but not installed." -msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert." - -#: mod/install.php:419 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert." - -#: mod/install.php:423 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert." - -#: mod/install.php: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 "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun." - -#: mod/install.php: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 "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast." - -#: mod/install.php: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 "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst." - -#: mod/install.php:443 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"INSTALL.txt\" for instructions." -msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt." - -#: mod/install.php:446 -msgid ".htconfig.php is writable" -msgstr "Schreibrechte auf .htconfig.php" - -#: 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 nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen." - -#: 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 "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von 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 "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat." - -#: 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 "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten." - -#: mod/install.php:462 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 ist schreibbar" - -#: mod/install.php:478 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers." - -#: mod/install.php:480 -msgid "Url rewrite is working" -msgstr "URL rewrite funktioniert" - -#: 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 "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen." - -#: mod/install.php:528 -msgid "

What next

" -msgstr "

Wie geht es weiter?

" - -#: mod/install.php:529 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten." - -#: mod/wallmessage.php:42 mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen." - -#: mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Konnte Deinen Heimatort nicht bestimmen." - -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Kein Empfänger." - -#: mod/wallmessage.php:143 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern." - -#: mod/help.php:31 -msgid "Help:" -msgstr "Hilfe:" - -#: mod/help.php:36 include/nav.php:114 -msgid "Help" -msgstr "Hilfe" - -#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 -msgid "Not Found" -msgstr "Nicht gefunden" - -#: mod/help.php:45 index.php:272 -msgid "Page not found." -msgstr "Seite nicht gefunden." - -#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s heißt %2$s herzlich willkommen" - -#: mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen zu %s" - -#: mod/wall_attach.php:83 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt." - -#: mod/wall_attach.php:83 -msgid "Or - did you try to upload an empty file?" -msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?" - -#: mod/wall_attach.php:94 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Die Datei ist größer als das erlaubte Limit von %s" - -#: mod/wall_attach.php:145 mod/wall_attach.php:161 -msgid "File upload failed." -msgstr "Hochladen der Datei fehlgeschlagen." - -#: mod/match.php:13 -msgid "Profile Match" -msgstr "Profilübereinstimmungen" - -#: mod/match.php:22 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu." - -#: mod/match.php:64 -msgid "is interested in:" -msgstr "ist interessiert an:" - -#: mod/share.php:38 -msgid "link" -msgstr "Link" - -#: mod/community.php:23 -msgid "Not available." -msgstr "Nicht verfügbar." - -#: mod/community.php:32 include/nav.php:137 include/nav.php:139 -#: view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Gemeinschaft" - -#: mod/community.php:62 mod/community.php:71 mod/search.php:192 +#: mod/search.php:199 mod/community.php:62 mod/community.php:71 msgid "No results." msgstr "Keine Ergebnisse." -#: mod/settings.php:34 mod/photos.php:102 -msgid "everybody" -msgstr "jeder" +#: mod/search.php:205 +#, php-format +msgid "Items tagged with: %s" +msgstr "Beiträge markiert mit: %s" + +#: mod/search.php:207 +#, php-format +msgid "Search results for: %s" +msgstr "Suchergebnisse für: %s" + +#: mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Limit für Einladungen erreicht." + +#: mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: Keine gültige Email Adresse." + +#: mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein" + +#: mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite." + +#: mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Zustellung der Nachricht fehlgeschlagen." + +#: mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d Nachricht gesendet." +msgstr[1] "%d Nachrichten gesendet." + +#: mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Du hast keine weiteren Einladungen" + +#: mod/invite.php:120 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke." + +#: mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website." + +#: mod/invite.php:123 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst." + +#: mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen." + +#: mod/invite.php:132 +msgid "Send invitations" +msgstr "Einladungen senden" + +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "E-Mail-Adressen eingeben, eine pro Zeile:" + +#: mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen." + +#: mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Du benötigst den folgenden Einladungscode: $invite_code" + +#: mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:" + +#: mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com" #: mod/settings.php:47 msgid "Additional features" @@ -3840,7 +3870,7 @@ msgstr "Zusätzliche Features" msgid "Display" msgstr "Anzeige" -#: mod/settings.php:60 mod/settings.php:835 +#: mod/settings.php:60 mod/settings.php:837 msgid "Social Networks" msgstr "Soziale Netzwerke" @@ -4018,869 +4048,494 @@ msgid "" "unknown user." msgstr "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,." -#: mod/settings.php:791 mod/settings.php:792 +#: mod/settings.php:779 +msgid "Your legacy GNU Social account" +msgstr "Dein alter GNU Social Account" + +#: mod/settings.php:781 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden." + +#: mod/settings.php:784 +msgid "Repair OStatus subscriptions" +msgstr "OStatus Abonnements reparieren" + +#: mod/settings.php:793 mod/settings.php:794 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s" -#: mod/settings.php:791 mod/dfrn_request.php:856 -#: include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: mod/settings.php:791 mod/settings.php:792 +#: mod/settings.php:793 mod/settings.php:794 msgid "enabled" msgstr "eingeschaltet" -#: mod/settings.php:791 mod/settings.php:792 +#: mod/settings.php:793 mod/settings.php:794 msgid "disabled" msgstr "ausgeschaltet" -#: mod/settings.php:792 +#: mod/settings.php:794 msgid "GNU Social (OStatus)" msgstr "GNU Social (OStatus)" -#: mod/settings.php:828 +#: mod/settings.php:830 msgid "Email access is disabled on this site." msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." -#: mod/settings.php:840 +#: mod/settings.php:842 msgid "Email/Mailbox Setup" msgstr "E-Mail/Postfach-Einstellungen" -#: mod/settings.php:841 +#: mod/settings.php:843 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an." -#: mod/settings.php:842 +#: mod/settings.php:844 msgid "Last successful email check:" msgstr "Letzter erfolgreicher E-Mail Check" -#: mod/settings.php:844 +#: mod/settings.php:846 msgid "IMAP server name:" msgstr "IMAP-Server-Name:" -#: mod/settings.php:845 +#: mod/settings.php:847 msgid "IMAP port:" msgstr "IMAP-Port:" -#: mod/settings.php:846 +#: mod/settings.php:848 msgid "Security:" msgstr "Sicherheit:" -#: mod/settings.php:846 mod/settings.php:851 +#: mod/settings.php:848 mod/settings.php:853 msgid "None" msgstr "Keine" -#: mod/settings.php:847 +#: mod/settings.php:849 msgid "Email login name:" msgstr "E-Mail-Login-Name:" -#: mod/settings.php:848 +#: mod/settings.php:850 msgid "Email password:" msgstr "E-Mail-Passwort:" -#: mod/settings.php:849 +#: mod/settings.php:851 msgid "Reply-to address:" msgstr "Reply-to Adresse:" -#: mod/settings.php:850 +#: mod/settings.php:852 msgid "Send public posts to all email contacts:" msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" -#: mod/settings.php:851 +#: mod/settings.php:853 msgid "Action after import:" msgstr "Aktion nach Import:" -#: mod/settings.php:851 +#: mod/settings.php:853 msgid "Mark as seen" msgstr "Als gelesen markieren" -#: mod/settings.php:851 +#: mod/settings.php:853 msgid "Move to folder" msgstr "In einen Ordner verschieben" -#: mod/settings.php:852 +#: mod/settings.php:854 msgid "Move to folder:" msgstr "In diesen Ordner verschieben:" -#: mod/settings.php:933 +#: mod/settings.php:935 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: mod/settings.php:939 mod/settings.php:955 +#: mod/settings.php:941 mod/settings.php:957 msgid "Display Theme:" msgstr "Theme:" -#: mod/settings.php:940 +#: mod/settings.php:942 msgid "Mobile Theme:" msgstr "Mobiles Theme" -#: mod/settings.php:941 +#: mod/settings.php:943 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: mod/settings.php:941 +#: mod/settings.php:943 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimal 10 Sekunden, kein Maximum" -#: mod/settings.php:942 +#: mod/settings.php:944 msgid "Number of items to display per page:" msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " -#: mod/settings.php:942 mod/settings.php:943 +#: mod/settings.php:944 mod/settings.php:945 msgid "Maximum of 100 items" msgstr "Maximal 100 Beiträge" -#: mod/settings.php:943 +#: mod/settings.php:945 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:" -#: mod/settings.php:944 +#: mod/settings.php:946 msgid "Don't show emoticons" msgstr "Keine Smilies anzeigen" -#: mod/settings.php:945 +#: mod/settings.php:947 msgid "Don't show notices" msgstr "Info-Popups nicht anzeigen" -#: mod/settings.php:946 +#: mod/settings.php:948 msgid "Infinite scroll" msgstr "Endloses Scrollen" -#: mod/settings.php:947 +#: mod/settings.php:949 msgid "Automatic updates only at the top of the network page" msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist." -#: mod/settings.php: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 +#: mod/settings.php:951 view/theme/diabook/config.php:150 +#: view/theme/vier/config.php:58 view/theme/dispy/config.php:72 +#: view/theme/duepuntozero/config.php:61 view/theme/quattro/config.php:66 +#: view/theme/cleanzero/config.php:82 msgid "Theme settings" msgstr "Themeneinstellungen" -#: mod/settings.php:1025 +#: mod/settings.php:1027 msgid "User Types" msgstr "Nutzer Art" -#: mod/settings.php:1026 +#: mod/settings.php:1028 msgid "Community Types" msgstr "Gemeinschafts Art" -#: mod/settings.php:1027 +#: mod/settings.php:1029 msgid "Normal Account Page" msgstr "Normales Konto" -#: mod/settings.php:1028 +#: mod/settings.php:1030 msgid "This account is a normal personal profile" msgstr "Dieses Konto ist ein normales persönliches Profil" -#: mod/settings.php:1031 +#: mod/settings.php:1033 msgid "Soapbox Page" msgstr "Marktschreier-Konto" -#: mod/settings.php:1032 +#: mod/settings.php:1034 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert" -#: mod/settings.php:1035 +#: mod/settings.php:1037 msgid "Community Forum/Celebrity Account" msgstr "Forum/Promi-Konto" -#: mod/settings.php:1036 +#: mod/settings.php:1038 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert" -#: mod/settings.php:1039 +#: mod/settings.php:1041 msgid "Automatic Friend Page" msgstr "Automatische Freunde Seite" -#: mod/settings.php:1040 +#: mod/settings.php:1042 msgid "Automatically approve all connection/friend requests as friends" msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert" -#: mod/settings.php:1043 +#: mod/settings.php:1045 msgid "Private Forum [Experimental]" msgstr "Privates Forum [Versuchsstadium]" -#: mod/settings.php:1044 +#: mod/settings.php:1046 msgid "Private forum - approved members only" msgstr "Privates Forum, nur für Mitglieder" -#: mod/settings.php:1056 +#: mod/settings.php:1058 msgid "OpenID:" msgstr "OpenID:" -#: mod/settings.php:1056 +#: mod/settings.php:1058 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID." -#: mod/settings.php:1066 +#: mod/settings.php:1068 msgid "Publish your default profile in your local site directory?" msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?" -#: mod/settings.php:1072 +#: mod/settings.php:1074 msgid "Publish your default profile in the global social directory?" msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?" -#: mod/settings.php:1080 +#: mod/settings.php:1082 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?" -#: mod/settings.php:1084 include/acl_selectors.php:330 +#: mod/settings.php:1086 include/acl_selectors.php:330 msgid "Hide your profile details from unknown viewers?" msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" -#: mod/settings.php:1084 +#: mod/settings.php:1086 msgid "" "If enabled, posting public messages to Diaspora and other networks isn't " "possible." msgstr "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich" -#: mod/settings.php:1089 +#: mod/settings.php:1091 msgid "Allow friends to post to your profile page?" msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?" -#: mod/settings.php:1095 +#: mod/settings.php:1097 msgid "Allow friends to tag your posts?" msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?" -#: mod/settings.php:1101 +#: mod/settings.php:1103 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" -#: mod/settings.php:1107 +#: mod/settings.php:1109 msgid "Permit unknown people to send you private mail?" msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?" -#: mod/settings.php:1115 +#: mod/settings.php:1117 msgid "Profile is not published." msgstr "Profil ist nicht veröffentlicht." -#: mod/settings.php:1123 +#: mod/settings.php:1125 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Die Adresse deines Profils lautet '%s' oder '%s'." -#: mod/settings.php:1130 +#: mod/settings.php:1132 msgid "Automatically expire posts after this many days:" msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" -#: mod/settings.php:1130 +#: mod/settings.php:1132 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht." -#: mod/settings.php:1131 +#: mod/settings.php:1133 msgid "Advanced expiration settings" msgstr "Erweiterte Verfallseinstellungen" -#: mod/settings.php:1132 +#: mod/settings.php:1134 msgid "Advanced Expiration" msgstr "Erweitertes Verfallen" -#: mod/settings.php:1133 +#: mod/settings.php:1135 msgid "Expire posts:" msgstr "Beiträge verfallen lassen:" -#: mod/settings.php:1134 +#: mod/settings.php:1136 msgid "Expire personal notes:" msgstr "Persönliche Notizen verfallen lassen:" -#: mod/settings.php:1135 +#: mod/settings.php:1137 msgid "Expire starred posts:" msgstr "Markierte Beiträge verfallen lassen:" -#: mod/settings.php:1136 +#: mod/settings.php:1138 msgid "Expire photos:" msgstr "Fotos verfallen lassen:" -#: mod/settings.php:1137 +#: mod/settings.php:1139 msgid "Only expire posts by others:" msgstr "Nur Beiträge anderer verfallen:" -#: mod/settings.php:1163 +#: mod/settings.php:1165 msgid "Account Settings" msgstr "Kontoeinstellungen" -#: mod/settings.php:1171 +#: mod/settings.php:1173 msgid "Password Settings" msgstr "Passwort-Einstellungen" -#: mod/settings.php:1172 mod/register.php:271 -msgid "New Password:" -msgstr "Neues Passwort:" - -#: mod/settings.php:1173 mod/register.php:272 -msgid "Confirm:" -msgstr "Bestätigen:" - -#: mod/settings.php:1173 +#: mod/settings.php:1175 msgid "Leave password fields blank unless changing" msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern" -#: mod/settings.php:1174 +#: mod/settings.php:1176 msgid "Current Password:" msgstr "Aktuelles Passwort:" -#: mod/settings.php:1174 mod/settings.php:1175 +#: mod/settings.php:1176 mod/settings.php:1177 msgid "Your current password to confirm the changes" msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" -#: mod/settings.php:1175 +#: mod/settings.php:1177 msgid "Password:" msgstr "Passwort:" -#: mod/settings.php:1179 +#: mod/settings.php:1181 msgid "Basic Settings" msgstr "Grundeinstellungen" -#: mod/settings.php:1180 include/identity.php:538 +#: mod/settings.php:1182 include/identity.php:539 msgid "Full Name:" msgstr "Kompletter Name:" -#: mod/settings.php:1181 +#: mod/settings.php:1183 msgid "Email Address:" msgstr "E-Mail-Adresse:" -#: mod/settings.php:1182 +#: mod/settings.php:1184 msgid "Your Timezone:" msgstr "Deine Zeitzone:" -#: mod/settings.php:1183 +#: mod/settings.php:1185 msgid "Default Post Location:" msgstr "Standardstandort:" -#: mod/settings.php:1184 +#: mod/settings.php:1186 msgid "Use Browser Location:" msgstr "Standort des Browsers verwenden:" -#: mod/settings.php:1187 +#: mod/settings.php:1189 msgid "Security and Privacy Settings" msgstr "Sicherheits- und Privatsphäre-Einstellungen" -#: mod/settings.php:1189 +#: mod/settings.php:1191 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:" -#: mod/settings.php:1189 mod/settings.php:1219 +#: mod/settings.php:1191 mod/settings.php:1221 msgid "(to prevent spam abuse)" msgstr "(um SPAM zu vermeiden)" -#: mod/settings.php:1190 +#: mod/settings.php:1192 msgid "Default Post Permissions" msgstr "Standard-Zugriffsrechte für Beiträge" -#: mod/settings.php:1191 +#: mod/settings.php:1193 msgid "(click to open/close)" msgstr "(klicke zum öffnen/schließen)" -#: mod/settings.php:1200 mod/photos.php:1166 mod/photos.php:1538 -msgid "Show to Groups" -msgstr "Zeige den Gruppen" - -#: mod/settings.php:1201 mod/photos.php:1167 mod/photos.php:1539 -msgid "Show to Contacts" -msgstr "Zeige den Kontakten" - -#: mod/settings.php:1202 +#: mod/settings.php:1204 msgid "Default Private Post" msgstr "Privater Standardbeitrag" -#: mod/settings.php:1203 +#: mod/settings.php:1205 msgid "Default Public Post" msgstr "Öffentlicher Standardbeitrag" -#: mod/settings.php:1207 +#: mod/settings.php:1209 msgid "Default Permissions for New Posts" msgstr "Standardberechtigungen für neue Beiträge" -#: mod/settings.php:1219 +#: mod/settings.php:1221 msgid "Maximum private messages per day from unknown people:" msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" -#: mod/settings.php:1222 +#: mod/settings.php:1224 msgid "Notification Settings" msgstr "Benachrichtigungseinstellungen" -#: mod/settings.php:1223 +#: mod/settings.php:1225 msgid "By default post a status message when:" msgstr "Standardmäßig eine Statusnachricht posten, wenn:" -#: mod/settings.php:1224 +#: mod/settings.php:1226 msgid "accepting a friend request" msgstr "– Du eine Kontaktanfrage akzeptierst" -#: mod/settings.php:1225 +#: mod/settings.php:1227 msgid "joining a forum/community" msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst" -#: mod/settings.php:1226 +#: mod/settings.php:1228 msgid "making an interesting profile change" msgstr "– Du eine interessante Änderung an Deinem Profil durchführst" -#: mod/settings.php:1227 +#: mod/settings.php:1229 msgid "Send a notification email when:" msgstr "Benachrichtigungs-E-Mail senden wenn:" -#: mod/settings.php:1228 +#: mod/settings.php:1230 msgid "You receive an introduction" msgstr "– Du eine Kontaktanfrage erhältst" -#: mod/settings.php:1229 +#: mod/settings.php:1231 msgid "Your introductions are confirmed" msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" -#: mod/settings.php:1230 +#: mod/settings.php:1232 msgid "Someone writes on your profile wall" msgstr "– jemand etwas auf Deine Pinnwand schreibt" -#: mod/settings.php:1231 +#: mod/settings.php:1233 msgid "Someone writes a followup comment" msgstr "– jemand auch einen Kommentar verfasst" -#: mod/settings.php:1232 +#: mod/settings.php:1234 msgid "You receive a private message" msgstr "– Du eine private Nachricht erhältst" -#: mod/settings.php:1233 +#: mod/settings.php:1235 msgid "You receive a friend suggestion" msgstr "– Du eine Empfehlung erhältst" -#: mod/settings.php:1234 +#: mod/settings.php:1236 msgid "You are tagged in a post" msgstr "– Du in einem Beitrag erwähnt wirst" -#: mod/settings.php:1235 +#: mod/settings.php:1237 msgid "You are poked/prodded/etc. in a post" msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst" -#: mod/settings.php:1237 +#: mod/settings.php:1239 msgid "Activate desktop notifications" msgstr "Desktop Benachrichtigungen einschalten" -#: mod/settings.php:1237 +#: mod/settings.php:1239 msgid "Show desktop popup on new notifications" msgstr "Desktop Benachrichtigungen einschalten" -#: mod/settings.php:1239 +#: mod/settings.php:1241 msgid "Text-only notification emails" msgstr "Benachrichtigungs E-Mail als Rein-Text." -#: mod/settings.php:1241 +#: mod/settings.php:1243 msgid "Send text only notification emails, without the html part" msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil" -#: mod/settings.php:1243 +#: mod/settings.php:1245 msgid "Advanced Account/Page Type Settings" msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" -#: mod/settings.php:1244 +#: mod/settings.php:1246 msgid "Change the behaviour of this account for special situations" msgstr "Verhalten dieses Kontos in bestimmten Situationen:" -#: mod/settings.php:1247 +#: mod/settings.php:1249 msgid "Relocate" msgstr "Umziehen" -#: mod/settings.php:1248 +#: mod/settings.php:1250 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button." -#: mod/settings.php:1249 +#: mod/settings.php:1251 msgid "Resend relocate message to contacts" msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" -#: mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." +#: mod/display.php:505 +msgid "Item has been removed." +msgstr "Eintrag wurde entfernt." -#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung." - -#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden." - -#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse." - -#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#: mod/dirfind.php:36 #, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden" -msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden" +msgid "People Search - %s" +msgstr "Personensuche - %s" -#: mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Kontaktanfrage abgeschlossen." +#: mod/dirfind.php:125 mod/suggest.php:92 mod/match.php:70 +#: include/identity.php:188 include/contact_widgets.php:10 +msgid "Connect" +msgstr "Verbinden" -#: mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Nicht behebbarer Protokollfehler." - -#: mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profil nicht verfügbar." - -#: mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten." - -#: mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Maßnahmen zum Spamschutz wurden ergriffen." - -#: mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen." - -#: mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Ungültiger Locator" - -#: mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Ungültige E-Mail-Adresse." - -#: mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen." - -#: mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Konnte Deinen Namen an der angegebenen Stelle nicht finden." - -#: mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Du hast Dich hier bereits vorgestellt." - -#: mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Es scheint so, als ob Du bereits mit %s befreundet bist." - -#: mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Ungültige Profil-URL." - -#: mod/dfrn_request.php:507 include/follow.php:70 -msgid "Disallowed profile URL." -msgstr "Nicht erlaubte Profil-URL." - -#: mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "Deine Kontaktanfrage wurde gesendet." - -#: mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen." - -#: mod/dfrn_request.php:660 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an." - -#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 -msgid "Confirm" -msgstr "Bestätigen" - -#: mod/dfrn_request.php:686 -msgid "Hide this contact" -msgstr "Verberge diesen Kontakt" - -#: mod/dfrn_request.php:689 -#, php-format -msgid "Welcome home %s." -msgstr "Willkommen zurück %s." - -#: mod/dfrn_request.php:690 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bitte bestätige Deine Kontaktanfrage bei %s." - -#: mod/dfrn_request.php:819 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:" - -#: mod/dfrn_request.php: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 "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten." - -#: mod/dfrn_request.php:845 -msgid "Friend/Connection Request" -msgstr "Freundschafts-/Kontaktanfrage" - -#: mod/dfrn_request.php:846 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: mod/dfrn_request.php:854 include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:855 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: mod/dfrn_request.php:857 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste." - -#: mod/register.php:92 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." - -#: mod/register.php: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 "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern." - -#: mod/register.php:107 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." - -#: mod/register.php:150 -msgid "Your registration is pending approval by the site owner." -msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." - -#: 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 "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal." - -#: mod/register.php:216 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst." - -#: mod/register.php:217 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus." - -#: mod/register.php:218 -msgid "Your OpenID (optional): " -msgstr "Deine OpenID (optional): " - -#: mod/register.php:232 -msgid "Include your profile in member directory?" -msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?" - -#: mod/register.php:256 -msgid "Membership on this site is by invitation only." -msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." - -#: mod/register.php:257 -msgid "Your invitation ID: " -msgstr "ID Deiner Einladung: " - -#: mod/register.php:268 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Vollständiger Name (z.B. Max Mustermann): " - -#: mod/register.php:269 -msgid "Your Email Address: " -msgstr "Deine E-Mail-Adresse: " - -#: mod/register.php:271 -msgid "Leave empty for an auto generated password." -msgstr "Leer lassen um das Passwort automatisch zu generieren." - -#: 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 "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@$sitename' sein." - -#: mod/register.php:274 -msgid "Choose a nickname: " -msgstr "Spitznamen wählen: " - -#: mod/register.php:277 boot.php:1248 include/nav.php:109 -msgid "Register" -msgstr "Registrieren" - -#: 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 "Importiere Dein Profil auf diese Friendica Instanz" - -#: mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "System zur Wartung abgeschaltet" - -#: mod/search.php:100 include/text.php:996 include/nav.php:119 -msgid "Search" -msgstr "Suche" - -#: mod/search.php:198 -#, php-format -msgid "Items tagged with: %s" -msgstr "Beiträge markiert mit: %s" - -#: mod/search.php:200 -#, php-format -msgid "Search results for: %s" -msgstr "Suchergebnisse für: %s" - -#: mod/directory.php:53 view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Weltweites Verzeichnis" - -#: mod/directory.php:61 -msgid "Find on this site" -msgstr "Auf diesem Server suchen" - -#: mod/directory.php:64 -msgid "Site Directory" -msgstr "Verzeichnis" - -#: mod/directory.php:129 mod/profiles.php:747 -msgid "Age: " -msgstr "Alter: " - -#: mod/directory.php:132 -msgid "Gender: " -msgstr "Geschlecht:" - -#: 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 "Homepage:" - -#: mod/directory.php:205 -msgid "No entries (some entries may be hidden)." -msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." - -#: mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." - -#: mod/delegate.php:130 include/nav.php:179 -msgid "Delegate Page Management" -msgstr "Delegiere das Management für die Seite" - -#: mod/delegate.php:132 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!" - -#: mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Vorhandene Seitenmanager" - -#: mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Vorhandene Bevollmächtigte für die Seite" - -#: mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Potentielle Bevollmächtigte" - -#: mod/delegate.php:140 -msgid "Add" -msgstr "Hinzufügen" - -#: mod/delegate.php:141 -msgid "No entries." -msgstr "Keine Einträge." - -#: mod/common.php:45 -msgid "Common Friends" -msgstr "Gemeinsame Freunde" - -#: mod/common.php:82 -msgid "No contacts in common." -msgstr "Keine gemeinsamen Kontakte." - -#: mod/uexport.php:77 -msgid "Export account" -msgstr "Account exportieren" - -#: mod/uexport.php:77 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen." - -#: mod/uexport.php:78 -msgid "Export all" -msgstr "Alles exportieren" - -#: mod/uexport.php:78 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)." - -#: mod/mood.php:62 include/conversation.php:226 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s ist momentan %2$s" - -#: mod/mood.php:133 -msgid "Mood" -msgstr "Stimmung" - -#: mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Möchtest Du wirklich diese Empfehlung löschen?" - -#: mod/suggest.php:69 include/contact_widgets.php:35 -#: view/theme/diabook/theme.php:527 -msgid "Friend Suggestions" -msgstr "Kontaktvorschläge" - -#: mod/suggest.php:76 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal." - -#: mod/suggest.php:94 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verbergen" +#: mod/dirfind.php:141 mod/match.php:77 +msgid "No matches" +msgstr "Keine Übereinstimmungen" #: mod/profiles.php:37 msgid "Profile deleted." @@ -5089,7 +4744,7 @@ msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" msgid "Since [date]:" msgstr "Seit [Datum]:" -#: mod/profiles.php:711 include/identity.php:569 +#: mod/profiles.php:711 include/identity.php:570 msgid "Sexual Preference:" msgstr "Sexuelle Vorlieben:" @@ -5097,11 +4752,11 @@ msgstr "Sexuelle Vorlieben:" msgid "Homepage URL:" msgstr "Adresse der Homepage:" -#: mod/profiles.php:713 include/identity.php:573 +#: mod/profiles.php:713 include/identity.php:574 msgid "Hometown:" msgstr "Heimatort:" -#: mod/profiles.php:714 include/identity.php:577 +#: mod/profiles.php:714 include/identity.php:578 msgid "Political Views:" msgstr "Politische Ansichten:" @@ -5117,11 +4772,11 @@ msgstr "Öffentliche Schlüsselwörter:" msgid "Private Keywords:" msgstr "Private Schlüsselwörter:" -#: mod/profiles.php:718 include/identity.php:585 +#: mod/profiles.php:718 include/identity.php:586 msgid "Likes:" msgstr "Likes:" -#: mod/profiles.php:719 include/identity.php:587 +#: mod/profiles.php:719 include/identity.php:588 msgid "Dislikes:" msgstr "Dislikes:" @@ -5183,6 +4838,10 @@ msgid "" "be visible to anybody using the internet." msgstr "Dies ist Dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein." +#: mod/profiles.php:747 mod/directory.php:129 +msgid "Age: " +msgstr "Alter: " + #: mod/profiles.php:800 msgid "Edit/Manage Profiles" msgstr "Bearbeite/Verwalte Profile" @@ -5207,153 +4866,284 @@ msgstr "sichtbar für jeden" msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "Beitrag nicht gefunden" +#: mod/share.php:38 +msgid "link" +msgstr "Link" -#: mod/editpost.php:40 -msgid "Edit post" -msgstr "Beitrag bearbeiten" +#: mod/uexport.php:77 +msgid "Export account" +msgstr "Account exportieren" -#: mod/editpost.php:111 include/conversation.php:1057 -msgid "upload photo" -msgstr "Bild hochladen" - -#: mod/editpost.php:112 include/conversation.php:1058 -msgid "Attach file" -msgstr "Datei anhängen" - -#: mod/editpost.php:113 include/conversation.php:1059 -msgid "attach file" -msgstr "Datei anhängen" - -#: mod/editpost.php:115 include/conversation.php:1061 -msgid "web link" -msgstr "Weblink" - -#: mod/editpost.php:116 include/conversation.php:1062 -msgid "Insert video link" -msgstr "Video-Adresse einfügen" - -#: mod/editpost.php:117 include/conversation.php:1063 -msgid "video link" -msgstr "Video-Link" - -#: mod/editpost.php:118 include/conversation.php:1064 -msgid "Insert audio link" -msgstr "Audio-Adresse einfügen" - -#: mod/editpost.php:119 include/conversation.php:1065 -msgid "audio link" -msgstr "Audio-Link" - -#: mod/editpost.php:120 include/conversation.php:1066 -msgid "Set your location" -msgstr "Deinen Standort festlegen" - -#: mod/editpost.php:121 include/conversation.php:1067 -msgid "set location" -msgstr "Ort setzen" - -#: mod/editpost.php:122 include/conversation.php:1068 -msgid "Clear browser location" -msgstr "Browser-Standort leeren" - -#: mod/editpost.php:123 include/conversation.php:1069 -msgid "clear location" -msgstr "Ort löschen" - -#: mod/editpost.php:125 include/conversation.php:1075 -msgid "Permission settings" -msgstr "Berechtigungseinstellungen" - -#: mod/editpost.php:133 include/acl_selectors.php:343 -msgid "CC: email addresses" -msgstr "Cc: E-Mail-Addressen" - -#: mod/editpost.php:134 include/conversation.php:1084 -msgid "Public post" -msgstr "Öffentlicher Beitrag" - -#: mod/editpost.php:137 include/conversation.php:1071 -msgid "Set title" -msgstr "Titel setzen" - -#: mod/editpost.php:139 include/conversation.php:1073 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (kommasepariert)" - -#: mod/editpost.php:140 include/acl_selectors.php:344 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Z.B.: bob@example.com, mary@example.com" - -#: mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Dies ist Friendica, Version" - -#: mod/friendica.php:60 -msgid "running at web location" -msgstr "die unter folgender Webadresse zu finden ist" - -#: mod/friendica.php:62 +#: mod/uexport.php:77 msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren." +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen." -#: mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" +#: mod/uexport.php:78 +msgid "Export all" +msgstr "Alles exportieren" -#: mod/friendica.php:64 -msgid "the bugtracker at github" -msgstr "dem Bugtracker auf github" - -#: mod/friendica.php:65 +#: mod/uexport.php:78 msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)." -#: mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Erweiterungen/Apps" +#: mod/ping.php:233 +msgid "{0} wants to be your friend" +msgstr "{0} möchte mit Dir in Kontakt treten" -#: mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Keine Plugins/Erweiterungen/Apps installiert" +#: mod/ping.php:248 +msgid "{0} sent you a message" +msgstr "{0} schickte Dir eine Nachricht" -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" -msgstr "Verbindung der Applikation autorisieren" +#: mod/ping.php:263 +msgid "{0} requested registration" +msgstr "{0} möchte sich registrieren" -#: mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:" +#: mod/navigation.php:20 include/nav.php:34 +msgid "Nothing new here" +msgstr "Keine Neuigkeiten" -#: mod/api.php:89 -msgid "Please login to continue." -msgstr "Bitte melde Dich an um fortzufahren." +#: mod/navigation.php:24 include/nav.php:38 +msgid "Clear notifications" +msgstr "Bereinige Benachrichtigungen" -#: mod/api.php:104 +#: mod/community.php:23 +msgid "Not available." +msgstr "Nicht verfügbar." + +#: mod/community.php:32 view/theme/diabook/theme.php:129 include/nav.php:137 +#: include/nav.php:139 +msgid "Community" +msgstr "Gemeinschaft" + +#: mod/filer.php:30 include/conversation.php:1005 +#: include/conversation.php:1023 +msgid "Save to Folder:" +msgstr "In diesem Ordner speichern:" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- auswählen -" + +#: mod/wall_attach.php:83 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt." + +#: mod/wall_attach.php:83 +msgid "Or - did you try to upload an empty file?" +msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?" + +#: mod/wall_attach.php:94 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Die Datei ist größer als das erlaubte Limit von %s" + +#: mod/wall_attach.php:145 mod/wall_attach.php:161 +msgid "File upload failed." +msgstr "Hochladen der Datei fehlgeschlagen." + +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Bezeichner." + +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Editor für die Profil-Sichtbarkeit" + +#: mod/profperm.php:106 mod/group.php:222 +msgid "Click on a contact to add or remove." +msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" + +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Sichtbar für" + +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" + +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Möchtest Du wirklich diese Empfehlung löschen?" + +#: mod/suggest.php:69 view/theme/diabook/theme.php:527 +#: include/contact_widgets.php:35 +msgid "Friend Suggestions" +msgstr "Kontaktvorschläge" + +#: mod/suggest.php:76 msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal." -#: mod/lockview.php:31 mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." +#: mod/suggest.php:94 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verbergen" -#: mod/lockview.php:48 -msgid "Visible to:" -msgstr "Sichtbar für:" +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Zugriff verweigert." -#: mod/notes.php:44 include/identity.php:675 +#: mod/repair_ostatus.php:14 +msgid "Resubsribing to OStatus contacts" +msgstr "Erneuern der OStatus Abonements" + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "Fehler" + +#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 +msgid "Done" +msgstr "Erledigt" + +#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 +msgid "Keep this window open until done." +msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist." + +#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s heißt %2$s herzlich willkommen" + +#: mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Verwalte Identitäten und/oder Seiten" + +#: mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast." + +#: mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Wähle eine Identität zum Verwalten aus: " + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." + +#: mod/delegate.php:130 include/nav.php:179 +msgid "Delegate Page Management" +msgstr "Delegiere das Management für die Seite" + +#: mod/delegate.php:132 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!" + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Vorhandene Seitenmanager" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Vorhandene Bevollmächtigte für die Seite" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Potentielle Bevollmächtigte" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Hinzufügen" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Keine Einträge." + +#: mod/viewcontacts.php:41 +msgid "No contacts." +msgstr "Keine Kontakte." + +#: mod/viewcontacts.php:78 include/text.php:917 +msgid "View Contacts" +msgstr "Kontakte anzeigen" + +#: mod/notes.php:44 include/identity.php:676 msgid "Personal Notes" msgstr "Persönliche Notizen" -#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13 +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Anstupsen" + +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "Stupse Leute an oder mache anderes mit ihnen" + +#: mod/poke.php:194 +msgid "Recipient" +msgstr "Empfänger" + +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Was willst Du mit dem Empfänger machen:" + +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" + +#: mod/directory.php:53 view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Weltweites Verzeichnis" + +#: mod/directory.php:61 +msgid "Find on this site" +msgstr "Auf diesem Server suchen" + +#: mod/directory.php:64 +msgid "Site Directory" +msgstr "Verzeichnis" + +#: mod/directory.php:132 +msgid "Gender: " +msgstr "Geschlecht:" + +#: mod/directory.php:156 include/identity.php:273 include/identity.php:561 +msgid "Status:" +msgstr "Status:" + +#: mod/directory.php:158 include/identity.php:275 include/identity.php:572 +msgid "Homepage:" +msgstr "Homepage:" + +#: mod/directory.php:205 +msgid "No entries (some entries may be hidden)." +msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." + +#: mod/ostatus_subscribe.php:14 +msgid "Subsribing to OStatus contacts" +msgstr "OStatus Kontakten folgen" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "Keine Kontakte gefunden." + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "Konnte die Kontaktinformationen nicht einholen." + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen." + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "Erfolg" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "Fehlgeschlagen" + +#: mod/localtime.php:12 include/event.php:13 include/bb2diaspora.php:148 msgid "l F d, Y \\@ g:i A" msgstr "l, d. F Y\\, H:i" @@ -5386,303 +5176,440 @@ msgstr "Umgerechnete lokale Zeit: %s" msgid "Please select your timezone:" msgstr "Bitte wähle Deine Zeitzone:" -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Anstupsen" +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Beitrag erfolgreich veröffentlicht." -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "Stupse Leute an oder mache anderes mit ihnen" +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl." -#: mod/poke.php:194 -msgid "Recipient" -msgstr "Empfänger" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Was willst Du mit dem Empfänger machen:" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" - -#: mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limit für Einladungen erreicht." - -#: mod/invite.php:49 +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:308 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Keine gültige Email Adresse." +msgid "Image size reduction [%s] failed." +msgstr "Verkleinern der Bildgröße von [%s] scheiterte." -#: mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein" - -#: mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite." - -#: mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Zustellung der Nachricht fehlgeschlagen." - -#: mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d Nachricht gesendet." -msgstr[1] "%d Nachrichten gesendet." - -#: mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren Einladungen" - -#: mod/invite.php:120 -#, php-format +#: mod/profile_photo.php:118 msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many" -" other social networks." -msgstr "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird." -#: mod/invite.php:122 -#, php-format +#: mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Bild konnte nicht verarbeitet werden" + +#: mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Datei hochladen:" + +#: mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Profil auswählen:" + +#: mod/profile_photo.php:245 +#: view/smarty3/compiled/7ed3c1755557256685d55b3a8e5cca927de090fb.file.filebrowser_plain.tpl.php:96 +#: view/smarty3/compiled/48b358673d34ee5cf1512cb114ef7f14c9f5b9d0.file.filebrowser_plain.tpl.php:96 +#: view/smarty3/compiled/be03ead94b64e658f07d62d8fbdc13a08b408e62.file.filebrowser_plain.tpl.php:103 +msgid "Upload" +msgstr "Hochladen" + +#: mod/profile_photo.php:248 +msgid "or" +msgstr "oder" + +#: mod/profile_photo.php:248 +msgid "skip this step" +msgstr "diesen Schritt überspringen" + +#: mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "wähle ein Foto aus deinen Fotoalben" + +#: mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Bild zurechtschneiden" + +#: mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann." + +#: mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Bearbeitung abgeschlossen" + +#: mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Bild erfolgreich hochgeladen." + +#: mod/install.php:119 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica-Server für soziale Netzwerke – Setup" + +#: mod/install.php:125 +msgid "Could not connect to database." +msgstr "Verbindung zur Datenbank gescheitert." + +#: mod/install.php:129 +msgid "Could not create table." +msgstr "Tabelle konnte nicht angelegt werden." + +#: mod/install.php:135 +msgid "Your Friendica site database has been installed." +msgstr "Die Datenbank Deiner Friendicaseite wurde installiert." + +#: mod/install.php:140 msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website." +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren." -#: mod/invite.php:123 -#, php-format +#: mod/install.php:141 mod/install.php:208 mod/install.php:537 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Lies bitte die \"INSTALL.txt\"." + +#: mod/install.php:153 +msgid "Database already in use." +msgstr "Die Datenbank wird bereits verwendet." + +#: mod/install.php:205 +msgid "System check" +msgstr "Systemtest" + +#: mod/install.php:210 +msgid "Check again" +msgstr "Noch einmal testen" + +#: mod/install.php:229 +msgid "Database connection" +msgstr "Datenbankverbindung" + +#: mod/install.php:230 msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst." +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können." -#: mod/invite.php:126 +#: mod/install.php:231 msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen." +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest." -#: mod/invite.php:132 -msgid "Send invitations" -msgstr "Einladungen senden" - -#: mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "E-Mail-Adressen eingeben, eine pro Zeile:" - -#: mod/invite.php:135 +#: mod/install.php:232 msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen." +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst." -#: mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Du benötigst den folgenden Einladungscode: $invite_code" +#: mod/install.php:236 +msgid "Database Server Name" +msgstr "Datenbank-Server" -#: mod/invite.php:137 +#: mod/install.php:237 +msgid "Database Login Name" +msgstr "Datenbank-Nutzer" + +#: mod/install.php:238 +msgid "Database Login Password" +msgstr "Datenbank-Passwort" + +#: mod/install.php:239 +msgid "Database Name" +msgstr "Datenbank-Name" + +#: mod/install.php:240 mod/install.php:279 +msgid "Site administrator email address" +msgstr "E-Mail-Adresse des Administrators" + +#: mod/install.php:240 mod/install.php:279 msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst." -#: mod/invite.php:139 +#: mod/install.php:244 mod/install.php:282 +msgid "Please select a default timezone for your website" +msgstr "Bitte wähle die Standardzeitzone Deiner Webseite" + +#: mod/install.php:269 +msgid "Site settings" +msgstr "Server-Einstellungen" + +#: mod/install.php:323 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden." + +#: mod/install.php:324 msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com" +"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 "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'" -#: 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 "Kontaktbilder" +#: mod/install.php:328 +msgid "PHP executable path" +msgstr "Pfad zu PHP" -#: mod/photos.php:84 include/identity.php:651 -msgid "Photo Albums" -msgstr "Fotoalben" - -#: mod/photos.php:85 mod/photos.php:1836 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 -msgid "Upload New Photos" -msgstr "Neue Fotos hochladen" - -#: mod/photos.php:166 -msgid "Contact information unavailable" -msgstr "Kontaktinformationen nicht verfügbar" - -#: mod/photos.php:187 -msgid "Album not found." -msgstr "Album nicht gefunden." - -#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 -msgid "Delete Album" -msgstr "Album löschen" - -#: mod/photos.php:220 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?" - -#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 -msgid "Delete Photo" -msgstr "Foto löschen" - -#: mod/photos.php:309 -msgid "Do you really want to delete this photo?" -msgstr "Möchtest Du wirklich dieses Foto löschen?" - -#: mod/photos.php:684 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s wurde von %3$s in %2$s getaggt" - -#: mod/photos.php:684 -msgid "a photo" -msgstr "einem Foto" - -#: mod/photos.php:797 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." - -#: mod/photos.php:952 -msgid "No photos selected" -msgstr "Keine Bilder ausgewählt" - -#: mod/photos.php:1114 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers." - -#: mod/photos.php:1149 -msgid "Upload Photos" -msgstr "Bilder hochladen" - -#: mod/photos.php:1153 mod/photos.php:1219 -msgid "New album name: " -msgstr "Name des neuen Albums: " - -#: mod/photos.php:1154 -msgid "or existing album name: " -msgstr "oder existierender Albumname: " - -#: mod/photos.php:1155 -msgid "Do not show a status post for this upload" -msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" - -#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 -msgid "Permissions" -msgstr "Berechtigungen" - -#: mod/photos.php:1168 -msgid "Private Photo" -msgstr "Privates Foto" - -#: mod/photos.php:1169 -msgid "Public Photo" -msgstr "Öffentliches Foto" - -#: mod/photos.php:1232 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: mod/photos.php:1238 -msgid "Show Newest First" -msgstr "Zeige neueste zuerst" - -#: mod/photos.php:1240 -msgid "Show Oldest First" -msgstr "Zeige älteste zuerst" - -#: mod/photos.php:1268 mod/photos.php:1821 -msgid "View Photo" -msgstr "Foto betrachten" - -#: mod/photos.php:1314 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." - -#: mod/photos.php:1316 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: mod/photos.php:1372 -msgid "View photo" -msgstr "Fotos ansehen" - -#: mod/photos.php:1372 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: mod/photos.php:1373 -msgid "Use as profile photo" -msgstr "Als Profilbild verwenden" - -#: mod/photos.php:1398 -msgid "View Full Size" -msgstr "Betrachte Originalgröße" - -#: mod/photos.php:1477 -msgid "Tags: " -msgstr "Tags: " - -#: mod/photos.php:1480 -msgid "[Remove any tag]" -msgstr "[Tag entfernen]" - -#: mod/photos.php:1520 -msgid "New album name" -msgstr "Name des neuen Albums" - -#: mod/photos.php:1521 -msgid "Caption" -msgstr "Bildunterschrift" - -#: mod/photos.php:1522 -msgid "Add a Tag" -msgstr "Tag hinzufügen" - -#: mod/photos.php:1522 +#: mod/install.php:328 msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren." -#: mod/photos.php:1523 -msgid "Do not rotate" -msgstr "Nicht rotieren" +#: mod/install.php:333 +msgid "Command line PHP" +msgstr "Kommandozeilen-PHP" -#: mod/photos.php:1524 -msgid "Rotate CW (right)" -msgstr "Drehen US (rechts)" +#: mod/install.php:342 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)" -#: mod/photos.php:1525 -msgid "Rotate CCW (left)" -msgstr "Drehen EUS (links)" +#: mod/install.php:343 +msgid "Found PHP version: " +msgstr "Gefundene PHP Version:" -#: mod/photos.php:1540 -msgid "Private photo" -msgstr "Privates Foto" +#: mod/install.php:345 +msgid "PHP cli binary" +msgstr "PHP CLI Binary" -#: mod/photos.php:1541 -msgid "Public photo" -msgstr "Öffentliches Foto" +#: mod/install.php:356 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert." -#: mod/photos.php:1563 include/conversation.php:1055 -msgid "Share" -msgstr "Teilen" +#: mod/install.php:357 +msgid "This is required for message delivery to work." +msgstr "Dies wird für die Auslieferung von Nachrichten benötigt." + +#: 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 "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen" + +#: mod/install.php:381 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an." + +#: mod/install.php:383 +msgid "Generate encryption keys" +msgstr "Schlüssel erzeugen" + +#: mod/install.php:390 +msgid "libCurl PHP module" +msgstr "PHP: libCurl-Modul" + +#: mod/install.php:391 +msgid "GD graphics PHP module" +msgstr "PHP: GD-Grafikmodul" + +#: mod/install.php:392 +msgid "OpenSSL PHP module" +msgstr "PHP: OpenSSL-Modul" + +#: mod/install.php:393 +msgid "mysqli PHP module" +msgstr "PHP: mysqli-Modul" + +#: mod/install.php:394 +msgid "mb_string PHP module" +msgstr "PHP: mb_string-Modul" + +#: mod/install.php:395 +msgid "mcrypt PHP module" +msgstr "PHP mcrypt Modul" + +#: mod/install.php:400 mod/install.php:402 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" + +#: mod/install.php:400 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert." + +#: mod/install.php:408 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert." + +#: mod/install.php:412 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert." + +#: mod/install.php:416 +msgid "Error: openssl PHP module required but not installed." +msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert." + +#: mod/install.php:420 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert." + +#: mod/install.php:424 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert." + +#: mod/install.php:428 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Fehler: Das mcrypt Modul von PHP ist nicht installiert" + +#: mod/install.php:447 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun." + +#: mod/install.php:448 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast." + +#: mod/install.php:449 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst." + +#: mod/install.php:450 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt." + +#: mod/install.php:453 +msgid ".htconfig.php is writable" +msgstr "Schreibrechte auf .htconfig.php" + +#: mod/install.php:463 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen." + +#: mod/install.php:464 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica." + +#: mod/install.php:465 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat." + +#: mod/install.php:466 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten." + +#: mod/install.php:469 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 ist schreibbar" + +#: mod/install.php:485 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers." + +#: mod/install.php:487 +msgid "Url rewrite is working" +msgstr "URL rewrite funktioniert" + +#: mod/install.php:496 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen." + +#: mod/install.php:535 +msgid "

What next

" +msgstr "

Wie geht es weiter?

" + +#: mod/install.php:536 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten." #: mod/p.php:9 msgid "Not Extended" msgstr "Nicht erweitert." +#: mod/group.php:29 +msgid "Group created." +msgstr "Gruppe erstellt." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Konnte die Gruppe nicht erstellen." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Gruppe nicht gefunden." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Gruppenname geändert." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "Gruppe speichern" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Eine Gruppe von Kontakten/Freunden anlegen." + +#: mod/group.php:94 mod/group.php:178 include/group.php:273 +msgid "Group Name: " +msgstr "Gruppenname:" + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Gruppe entfernt." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Konnte die Gruppe nicht entfernen." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Gruppeneditor" + +#: mod/group.php:190 +msgid "Members" +msgstr "Mitglieder" + +#: mod/content.php:119 mod/network.php:532 +msgid "No such group" +msgstr "Es gibt keine solche Gruppe" + +#: mod/content.php:130 mod/network.php:549 +msgid "Group is empty" +msgstr "Gruppe ist leer" + +#: mod/content.php:135 mod/network.php:560 +#, php-format +msgid "Group: %s" +msgstr "Gruppe: %s" + +#: mod/content.php:499 include/conversation.php:689 +msgid "View in context" +msgstr "Im Zusammenhang betrachten" + #: mod/regmod.php:55 msgid "Account approved." msgstr "Konto freigegeben." @@ -5696,44 +5623,523 @@ msgstr "Registrierung für %s wurde zurückgezogen" msgid "Please login." msgstr "Bitte melde Dich an." -#: mod/uimport.php:66 -msgid "Move account" -msgstr "Account umziehen" +#: mod/match.php:18 +msgid "Profile Match" +msgstr "Profilübereinstimmungen" -#: mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Du kannst einen Account von einem anderen Friendica Server importieren." +#: mod/match.php:27 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu." -#: mod/uimport.php:68 +#: mod/match.php:69 +msgid "is interested in:" +msgstr "ist interessiert an:" + +#: mod/item.php:115 +msgid "Unable to locate original post." +msgstr "Konnte den Originalbeitrag nicht finden." + +#: mod/item.php:347 +msgid "Empty post discarded." +msgstr "Leerer Beitrag wurde verworfen." + +#: mod/item.php:860 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden." + +#: mod/item.php:989 +#, php-format msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist." +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica." -#: mod/uimport.php:69 +#: mod/item.php:991 +#, php-format +msgid "You may visit them online at %s" +msgstr "Du kannst sie online unter %s besuchen" + +#: mod/item.php:992 msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest." -#: mod/uimport.php:70 -msgid "Account file" -msgstr "Account Datei" +#: mod/item.php:996 +#, php-format +msgid "%s posted an update." +msgstr "%s hat ein Update veröffentlicht." -#: mod/uimport.php:70 +#: mod/mood.php:62 include/conversation.php:226 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s ist momentan %2$s" + +#: mod/mood.php:133 +msgid "Mood" +msgstr "Stimmung" + +#: mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden" + +#: mod/network.php:143 +#, php-format +msgid "Search Results For: %s" +msgstr "Suchergebnisse für: %s" + +#: mod/network.php:197 include/group.php:277 +msgid "add" +msgstr "hinzufügen" + +#: mod/network.php:358 +msgid "Commented Order" +msgstr "Neueste Kommentare" + +#: mod/network.php:361 +msgid "Sort by Comment Date" +msgstr "Nach Kommentardatum sortieren" + +#: mod/network.php:365 +msgid "Posted Order" +msgstr "Neueste Beiträge" + +#: mod/network.php:368 +msgid "Sort by Post Date" +msgstr "Nach Beitragsdatum sortieren" + +#: mod/network.php:378 +msgid "Posts that mention or involve you" +msgstr "Beiträge, in denen es um Dich geht" + +#: mod/network.php:385 +msgid "New" +msgstr "Neue" + +#: mod/network.php:388 +msgid "Activity Stream - by date" +msgstr "Aktivitäten-Stream - nach Datum" + +#: mod/network.php:395 +msgid "Shared Links" +msgstr "Geteilte Links" + +#: mod/network.php:398 +msgid "Interesting Links" +msgstr "Interessante Links" + +#: mod/network.php:405 +msgid "Starred" +msgstr "Markierte" + +#: mod/network.php:408 +msgid "Favourite Posts" +msgstr "Favorisierte Beiträge" + +#: 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] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk." +msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken." + +#: mod/network.php:469 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten." + +#: mod/network.php: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 "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen." + +#: mod/network.php:587 +msgid "Invalid contact." +msgstr "Ungültiger Kontakt." + +#: mod/crepair.php:107 +msgid "Contact settings applied." +msgstr "Einstellungen zum Kontakt angewandt." + +#: mod/crepair.php:109 +msgid "Contact update failed." +msgstr "Konnte den Kontakt nicht aktualisieren." + +#: mod/crepair.php:140 +msgid "Repair Contact Settings" +msgstr "Kontakteinstellungen reparieren" + +#: mod/crepair.php:142 msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." -#: mod/attach.php:8 -msgid "Item not available." -msgstr "Beitrag nicht verfügbar." +#: mod/crepair.php:143 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst." -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "Beitrag konnte nicht gefunden werden." +#: mod/crepair.php:149 +msgid "Return to contact editor" +msgstr "Zurück zum Kontakteditor" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "No mirroring" +msgstr "Kein Spiegeln" + +#: mod/crepair.php:160 +msgid "Mirror as forwarded posting" +msgstr "Spiegeln als weitergeleitete Beiträge" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "Mirror as my own posting" +msgstr "Spiegeln als meine eigenen Beiträge" + +#: mod/crepair.php:169 +msgid "Refetch contact data" +msgstr "Kontaktdaten neu laden" + +#: mod/crepair.php:171 +msgid "Account Nickname" +msgstr "Konto-Spitzname" + +#: mod/crepair.php:172 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname - überschreibt Name/Spitzname" + +#: mod/crepair.php:173 +msgid "Account URL" +msgstr "Konto-URL" + +#: mod/crepair.php:174 +msgid "Friend Request URL" +msgstr "URL für Freundschaftsanfragen" + +#: mod/crepair.php:175 +msgid "Friend Confirm URL" +msgstr "URL für Bestätigungen von Freundschaftsanfragen" + +#: mod/crepair.php:176 +msgid "Notification Endpoint URL" +msgstr "URL-Endpunkt für Benachrichtigungen" + +#: mod/crepair.php:177 +msgid "Poll/Feed URL" +msgstr "Pull/Feed-URL" + +#: mod/crepair.php:178 +msgid "New photo from this URL" +msgstr "Neues Foto von dieser URL" + +#: mod/crepair.php:179 +msgid "Remote Self" +msgstr "Entfernte Konten" + +#: mod/crepair.php:181 +msgid "Mirror postings from this contact" +msgstr "Spiegle Beiträge dieses Kontakts" + +#: mod/crepair.php:181 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden." + +#: view/theme/diabook/theme.php:123 include/nav.php:76 include/nav.php:156 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" + +#: view/theme/diabook/theme.php:124 include/nav.php:77 +msgid "Your profile page" +msgstr "Deine Profilseite" + +#: view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Deine Kontakte" + +#: view/theme/diabook/theme.php:126 include/nav.php:78 +msgid "Your photos" +msgstr "Deine Fotos" + +#: view/theme/diabook/theme.php:127 include/nav.php:80 +msgid "Your events" +msgstr "Deine Ereignisse" + +#: view/theme/diabook/theme.php:128 include/nav.php:81 +msgid "Personal notes" +msgstr "Persönliche Notizen" + +#: view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Deine privaten Fotos" + +#: view/theme/diabook/theme.php:130 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:624 view/theme/diabook/config.php:158 +msgid "Community Pages" +msgstr "Foren" + +#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626 +#: view/theme/diabook/config.php:160 +msgid "Community Profiles" +msgstr "Community-Profile" + +#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630 +#: view/theme/diabook/config.php:164 +msgid "Last users" +msgstr "Letzte Nutzer" + +#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632 +#: view/theme/diabook/config.php:166 +msgid "Last likes" +msgstr "Zuletzt gemocht" + +#: view/theme/diabook/theme.php:463 include/text.php:2032 +#: include/conversation.php:118 include/conversation.php:245 +msgid "event" +msgstr "Veranstaltung" + +#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631 +#: view/theme/diabook/config.php:165 +msgid "Last photos" +msgstr "Letzte Fotos" + +#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629 +#: view/theme/diabook/config.php:163 +msgid "Find Friends" +msgstr "Freunde finden" + +#: view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Lokales Verzeichnis" + +#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36 +msgid "Similar Interests" +msgstr "Ähnliche Interessen" + +#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38 +msgid "Invite Friends" +msgstr "Freunde einladen" + +#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625 +#: view/theme/diabook/config.php:159 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Zoomfaktor der Earth Layer" + +#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156 +msgid "Set longitude (X) for Earth Layers" +msgstr "Longitude (X) der Earth Layer" + +#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Latitude (Y) der Earth Layer" + +#: view/theme/diabook/theme.php:599 view/theme/diabook/theme.php:627 +#: view/theme/diabook/config.php:161 +msgid "Help or @NewHere ?" +msgstr "Hilfe oder @NewHere" + +#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628 +#: view/theme/diabook/config.php:162 +msgid "Connect Services" +msgstr "Verbinde Dienste" + +#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 +#: include/acl_selectors.php:337 +msgid "don't show" +msgstr "nicht zeigen" + +#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 +#: include/acl_selectors.php:336 +msgid "show" +msgstr "zeigen" + +#: view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Rahmen auf der rechten Seite anzeigen/verbergen" + +#: view/theme/diabook/config.php:151 view/theme/dispy/config.php:73 +#: view/theme/cleanzero/config.php:84 +msgid "Set font-size for posts and comments" +msgstr "Schriftgröße für Beiträge und Kommentare festlegen" + +#: view/theme/diabook/config.php:152 view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Liniengröße für Beiträge und Kommantare festlegen" + +#: view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Auflösung für die Mittelspalte setzen" + +#: view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Wähle Farbschema" + +#: view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Zoomfaktor der Earth Layer" + +#: view/theme/vier/config.php:59 +msgid "Set style" +msgstr "Stil auswählen" + +#: view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Farbschema wählen" + +#: view/theme/duepuntozero/config.php:44 include/text.php:1768 +#: include/user.php:255 +msgid "default" +msgstr "Standard" + +#: view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "greenzero" + +#: view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "purplezero" + +#: view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "easterbunny" + +#: view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "darkzero" + +#: view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "slackr" + +#: view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "Variationen" + +#: view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Ausrichtung" + +#: view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Links" + +#: view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Mitte" + +#: view/theme/quattro/config.php:68 view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "Farbschema" + +#: view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Schriftgröße in Beiträgen" + +#: view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Schriftgröße in Eingabefeldern" + +#: view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)" + +#: view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Theme Breite festlegen" + +#: view/smarty3/compiled/de93dd804a3e4e0c280f6a6ccb3ab9b0eaebd65d.file.blob.tpl.php:106 +msgid "Click here to download" +msgstr "Zum Download hier klicken" + +#: view/smarty3/compiled/e3e71db17e5b19827a9ae25070c4171ecb4fad17.file.project.tpl.php:149 +#: view/smarty3/compiled/681c121d981f553bdaa9e163d8a08e0bb4bd88ec.file.tree.tpl.php:121 +msgid "Create new pull request" +msgstr "Neuer Pull Request" + +#: view/smarty3/compiled/919a59d5a78d842406e0afa69e5825d6feb5dc06.file.admin_plugins.tpl.php:42 +msgid "Reload active plugins" +msgstr "Aktive Plugins neu laden" + +#: view/smarty3/compiled/1708ab6fbb592af5399438bf991f7b474286b1b1.file.contact_drop_confirm.tpl.php:22 +msgid "Drop contact" +msgstr "Kontakt löschen" + +#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:32 +msgid "Public projects on this node" +msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite" + +#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:79 +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:68 +#, php-format +msgid "" +"Do you want to delete the project '%s'?\\n\\nThis operation cannot be " +"undone." +msgstr "Möchtest du das Projekt '%s' löschen?\\n\\nDies kann nicht rückgängig gemacht werden." + +#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:56 +msgid "Visibility" +msgstr "Sichtbarkeit" + +#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:72 +#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:69 +msgid "Create" +msgstr "Erstellen" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:107 +msgid "No pull requests to show" +msgstr "Keine Pull Requests zum Anzeigen vorhanden" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:123 +msgid "opened by" +msgstr "geöffnet von" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:128 +msgid "closed" +msgstr "Geschlossen" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:133 +msgid "merged" +msgstr "merged" + +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:31 +msgid "Projects" +msgstr "Projekte" + +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:32 +msgid "add new" +msgstr "neue hinzufügen" + +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:51 +msgid "delete" +msgstr "löschen" + +#: view/smarty3/compiled/4bbe2f5d3d1015c250383e229b603c26c960f47c.file.commits.tpl.php:80 +#: view/smarty3/compiled/1cdeb5a00fc3621815c983a6f754af6d16ff85c9.file.commit.tpl.php:80 +#: view/smarty3/compiled/0427bde50f01fd26112193bc4daba7b58c19ca11.file.aside.tpl.php:51 +msgid "Clone this project:" +msgstr "Dieses Projekt clonen" + +#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:38 +msgid "New pull request" +msgstr "Neuer Pull Request" + +#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:63 +msgid "Can't show you the diff at the moment. Sorry" +msgstr "Entschuldigung, aber ich kann dir die Unterschiede gerade nicht anzeigen." #: boot.php:763 msgid "Delete this item?" @@ -5792,144 +6198,6 @@ msgstr "Website Datenschutzerklärung" msgid "privacy policy" msgstr "Datenschutzerklärung" -#: object/Item.php:95 -msgid "This entry was edited" -msgstr "Dieser Beitrag wurde bearbeitet." - -#: object/Item.php:209 -msgid "ignore thread" -msgstr "Thread ignorieren" - -#: object/Item.php:210 -msgid "unignore thread" -msgstr "Thread nicht mehr ignorieren" - -#: object/Item.php:211 -msgid "toggle ignore status" -msgstr "Ignoriert-Status ein-/ausschalten" - -#: object/Item.php:214 -msgid "ignored" -msgstr "Ignoriert" - -#: object/Item.php:318 include/conversation.php:665 -msgid "Categories:" -msgstr "Kategorien:" - -#: object/Item.php:319 include/conversation.php:666 -msgid "Filed under:" -msgstr "Abgelegt unter:" - -#: object/Item.php:331 -msgid "via" -msgstr "via" - -#: include/dbstructure.php:26 -#, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein." - -#: include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" - -#: include/dbstructure.php:152 -msgid "Errors encountered creating database tables." -msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." - -#: include/dbstructure.php:210 -msgid "Errors encountered performing database changes." -msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." - -#: include/auth.php:38 -msgid "Logged out." -msgstr "Abgemeldet." - -#: include/auth.php:128 include/user.php:75 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast." - -#: include/auth.php:128 include/user.php:75 -msgid "The error message was:" -msgstr "Die Fehlermeldung lautete:" - -#: include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Neuen Kontakt hinzufügen" - -#: include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Adresse oder Web-Link eingeben" - -#: include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Beispiel: bob@example.com, http://example.com/barbara" - -#: include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d Einladung verfügbar" -msgstr[1] "%d Einladungen verfügbar" - -#: include/contact_widgets.php:30 -msgid "Find People" -msgstr "Leute finden" - -#: include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" - -#: include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" - -#: include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiel: Robert Morgenstein, Angeln" - -#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 -msgid "Similar Interests" -msgstr "Ähnliche Interessen" - -#: include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Zufälliges Profil" - -#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 -msgid "Invite Friends" -msgstr "Freunde einladen" - -#: include/contact_widgets.php:71 -msgid "Networks" -msgstr "Netzwerke" - -#: include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Alle Netzwerke" - -#: include/contact_widgets.php:104 include/features.php:60 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" - -#: include/contact_widgets.php:107 include/contact_widgets.php:139 -msgid "Everything" -msgstr "Alles" - -#: include/contact_widgets.php:136 -msgid "Categories" -msgstr "Kategorien" - #: include/features.php:23 msgid "General Features" msgstr "Allgemeine Features" @@ -6067,6 +6335,10 @@ msgstr "Beitragskategorien" msgid "Add categories to your posts" msgstr "Eigene Beiträge mit Kategorien versehen" +#: include/features.php:60 include/contact_widgets.php:104 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" + #: include/features.php:60 msgid "Ability to file posts under folders" msgstr "Beiträge in Ordnern speichern aktivieren" @@ -6095,517 +6367,35 @@ msgstr "Benachrichtigungen für Beiträge Stumm schalten" msgid "Ability to mute notifications for a thread" msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können" -#: include/follow.php:75 -msgid "Connect URL missing." -msgstr "Connect-URL fehlt" +#: include/auth.php:38 +msgid "Logged out." +msgstr "Abgemeldet." -#: include/follow.php:102 +#: include/auth.php:128 include/user.php:75 msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann." +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast." -#: include/follow.php:103 include/follow.php:123 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." +#: include/auth.php:128 include/user.php:75 +msgid "The error message was:" +msgstr "Die Fehlermeldung lautete:" -#: include/follow.php:121 -msgid "The profile address specified does not provide adequate information." -msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." +#: include/event.php:22 include/bb2diaspora.php:154 +msgid "Starts:" +msgstr "Beginnt:" -#: include/follow.php:125 -msgid "An author or name was not found." -msgstr "Es wurde kein Autor oder Name gefunden." - -#: include/follow.php:127 -msgid "No browser URL could be matched to this address." -msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden." - -#: include/follow.php:129 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen." - -#: include/follow.php:130 -msgid "Use mailto: in front of address to force email check." -msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen." - -#: include/follow.php:136 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde." - -#: include/follow.php:146 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können." - -#: include/follow.php:249 -msgid "Unable to retrieve contact information." -msgstr "Konnte die Kontaktinformationen nicht empfangen." - -#: include/follow.php:302 -msgid "following" -msgstr "folgen" - -#: include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen." - -#: include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Voreingestellte Gruppe für neue Kontakte" - -#: include/group.php:226 -msgid "Everybody" -msgstr "Alle Kontakte" - -#: include/group.php:249 -msgid "edit" -msgstr "bearbeiten" - -#: include/group.php:271 -msgid "Edit group" -msgstr "Gruppe bearbeiten" - -#: include/group.php:272 -msgid "Create a new group" -msgstr "Neue Gruppe erstellen" - -#: include/group.php:275 -msgid "Contacts not in any group" -msgstr "Kontakte in keiner Gruppe" - -#: include/datetime.php:43 include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Verschiedenes" - -#: include/datetime.php:141 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD oder MM-DD" - -#: include/datetime.php:256 -msgid "never" -msgstr "nie" - -#: include/datetime.php:262 -msgid "less than a second ago" -msgstr "vor weniger als einer Sekunde" - -#: include/datetime.php:272 -msgid "year" -msgstr "Jahr" - -#: include/datetime.php:272 -msgid "years" -msgstr "Jahre" - -#: include/datetime.php:273 -msgid "month" -msgstr "Monat" - -#: include/datetime.php:273 -msgid "months" -msgstr "Monate" - -#: include/datetime.php:274 -msgid "week" -msgstr "Woche" - -#: include/datetime.php:274 -msgid "weeks" -msgstr "Wochen" - -#: include/datetime.php:275 -msgid "day" -msgstr "Tag" - -#: include/datetime.php:275 -msgid "days" -msgstr "Tage" - -#: include/datetime.php:276 -msgid "hour" -msgstr "Stunde" - -#: include/datetime.php:276 -msgid "hours" -msgstr "Stunden" - -#: include/datetime.php:277 -msgid "minute" -msgstr "Minute" - -#: include/datetime.php:277 -msgid "minutes" -msgstr "Minuten" - -#: include/datetime.php:278 -msgid "second" -msgstr "Sekunde" - -#: include/datetime.php:278 -msgid "seconds" -msgstr "Sekunden" - -#: include/datetime.php:287 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s her" - -#: include/datetime.php:459 include/items.php:2432 -#, php-format -msgid "%s's birthday" -msgstr "%ss Geburtstag" - -#: include/datetime.php:460 include/items.php:2433 -#, php-format -msgid "Happy Birthday %s" -msgstr "Herzlichen Glückwunsch %s" - -#: include/identity.php:38 -msgid "Requested account is not available." -msgstr "Das angefragte Profil ist nicht vorhanden." - -#: include/identity.php:121 include/identity.php:255 include/identity.php:607 -msgid "Edit profile" -msgstr "Profil bearbeiten" - -#: include/identity.php:220 -msgid "Message" -msgstr "Nachricht" - -#: include/identity.php:226 include/nav.php:184 -msgid "Profiles" -msgstr "Profile" - -#: include/identity.php:226 -msgid "Manage/edit profiles" -msgstr "Profile verwalten/editieren" - -#: include/identity.php:341 -msgid "Network:" -msgstr "Netzwerk" - -#: include/identity.php:373 include/identity.php:459 -msgid "g A l F d" -msgstr "l, d. F G \\U\\h\\r" - -#: 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 "[heute]" - -#: include/identity.php:431 -msgid "Birthday Reminders" -msgstr "Geburtstagserinnerungen" - -#: include/identity.php:432 -msgid "Birthdays this week:" -msgstr "Geburtstage diese Woche:" - -#: include/identity.php:493 -msgid "[No description]" -msgstr "[keine Beschreibung]" - -#: include/identity.php:517 -msgid "Event Reminders" -msgstr "Veranstaltungserinnerungen" - -#: include/identity.php:518 -msgid "Events this week:" -msgstr "Veranstaltungen diese Woche" - -#: 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 "Geburtstag:" - -#: include/identity.php:557 -msgid "Age:" -msgstr "Alter:" - -#: include/identity.php:566 -#, php-format -msgid "for %1$d %2$s" -msgstr "für %1$d %2$s" - -#: include/identity.php:579 -msgid "Religion:" -msgstr "Religion:" - -#: include/identity.php:583 -msgid "Hobbies/Interests:" -msgstr "Hobbies/Interessen:" - -#: include/identity.php:590 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformationen und Soziale Netzwerke:" - -#: include/identity.php:592 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" - -#: include/identity.php:594 -msgid "Books, literature:" -msgstr "Literatur/Bücher:" - -#: include/identity.php:596 -msgid "Television:" -msgstr "Fernsehen:" - -#: include/identity.php:598 -msgid "Film/dance/culture/entertainment:" -msgstr "Filme/Tänze/Kultur/Unterhaltung:" - -#: include/identity.php:600 -msgid "Love/Romance:" -msgstr "Liebesleben:" - -#: include/identity.php:602 -msgid "Work/employment:" -msgstr "Arbeit/Beschäftigung:" - -#: include/identity.php:604 -msgid "School/education:" -msgstr "Schule/Ausbildung:" - -#: include/identity.php:632 include/nav.php:76 -msgid "Status" -msgstr "Status" - -#: include/identity.php:635 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" - -#: include/identity.php:643 -msgid "Profile Details" -msgstr "Profildetails" - -#: include/identity.php:656 include/identity.php:659 include/nav.php:79 -msgid "Videos" -msgstr "Videos" - -#: include/identity.php:670 -msgid "Events and Calendar" -msgstr "Ereignisse und Kalender" - -#: include/identity.php:678 -msgid "Only You Can See This" -msgstr "Nur Du kannst das sehen" - -#: include/acl_selectors.php:324 -msgid "Post to Email" -msgstr "An E-Mail senden" - -#: include/acl_selectors.php:329 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist." - -#: include/acl_selectors.php:335 -msgid "Visible to everybody" -msgstr "Für jeden sichtbar" - -#: include/acl_selectors.php:336 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 -msgid "show" -msgstr "zeigen" - -#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 -msgid "don't show" -msgstr "nicht zeigen" +#: include/event.php:32 include/bb2diaspora.php:162 +msgid "Finishes:" +msgstr "Endet:" #: include/message.php:15 include/message.php:173 msgid "[no subject]" msgstr "[kein Betreff]" -#: include/Contact.php:119 -msgid "stopped following" -msgstr "wird nicht mehr gefolgt" - -#: include/Contact.php:232 include/conversation.php:881 -msgid "Poke" -msgstr "Anstupsen" - -#: include/Contact.php:233 include/conversation.php:875 -msgid "View Status" -msgstr "Pinnwand anschauen" - -#: include/Contact.php:234 include/conversation.php:876 -msgid "View Profile" -msgstr "Profil anschauen" - -#: include/Contact.php:235 include/conversation.php:877 -msgid "View Photos" -msgstr "Bilder anschauen" - -#: include/Contact.php:236 include/Contact.php:259 -#: include/conversation.php:878 -msgid "Network Posts" -msgstr "Netzwerkbeiträge" - -#: include/Contact.php:237 include/Contact.php:259 -#: include/conversation.php:879 -msgid "Edit Contact" -msgstr "Kontakt bearbeiten" - -#: include/Contact.php:238 -msgid "Drop Contact" -msgstr "Kontakt löschen" - -#: include/Contact.php:239 include/Contact.php:259 -#: include/conversation.php:880 -msgid "Send PM" -msgstr "Private Nachricht senden" - -#: include/security.php:22 -msgid "Welcome " -msgstr "Willkommen " - -#: include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Bitte lade ein Profilbild hoch." - -#: include/security.php:26 -msgid "Welcome back " -msgstr "Willkommen zurück " - -#: include/security.php:375 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)." - -#: include/conversation.php:118 include/conversation.php:245 -#: include/text.php:2032 view/theme/diabook/theme.php:463 -msgid "event" -msgstr "Veranstaltung" - -#: include/conversation.php:206 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s" - -#: include/conversation.php:290 -msgid "post/item" -msgstr "Nachricht/Beitrag" - -#: include/conversation.php:291 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert" - -#: include/conversation.php:771 -msgid "remove" -msgstr "löschen" - -#: include/conversation.php:775 -msgid "Delete Selected Items" -msgstr "Lösche die markierten Beiträge" - -#: include/conversation.php:874 -msgid "Follow Thread" -msgstr "Folge der Unterhaltung" - -#: include/conversation.php:943 -#, php-format -msgid "%s likes this." -msgstr "%s mag das." - -#: include/conversation.php:943 -#, php-format -msgid "%s doesn't like this." -msgstr "%s mag das nicht." - -#: include/conversation.php:948 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d Personen mögen das" - -#: include/conversation.php:951 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d Personen mögen das nicht" - -#: include/conversation.php:965 -msgid "and" -msgstr "und" - -#: include/conversation.php:971 -#, php-format -msgid ", and %d other people" -msgstr " und %d andere" - -#: include/conversation.php:973 -#, php-format -msgid "%s like this." -msgstr "%s mögen das." - -#: include/conversation.php:973 -#, php-format -msgid "%s don't like this." -msgstr "%s mögen das nicht." - -#: include/conversation.php:1000 include/conversation.php:1018 -msgid "Visible to everybody" -msgstr "Für jedermann sichtbar" - -#: include/conversation.php:1002 include/conversation.php:1020 -msgid "Please enter a video link/URL:" -msgstr "Bitte Link/URL zum Video einfügen:" - -#: include/conversation.php:1003 include/conversation.php:1021 -msgid "Please enter an audio link/URL:" -msgstr "Bitte Link/URL zum Audio einfügen:" - -#: include/conversation.php:1004 include/conversation.php:1022 -msgid "Tag term:" -msgstr "Tag:" - -#: include/conversation.php:1006 include/conversation.php:1024 -msgid "Where are you right now?" -msgstr "Wo hältst Du Dich jetzt gerade auf?" - -#: include/conversation.php:1007 -msgid "Delete item(s)?" -msgstr "Einträge löschen?" - -#: include/conversation.php:1076 -msgid "permissions" -msgstr "Zugriffsrechte" - -#: include/conversation.php:1099 -msgid "Post to Groups" -msgstr "Poste an Gruppe" - -#: include/conversation.php:1100 -msgid "Post to Contacts" -msgstr "Poste an Kontakte" - -#: include/conversation.php:1101 -msgid "Private post" -msgstr "Privater Beitrag" - -#: include/network.php:959 -msgid "view full size" -msgstr "Volle Größe anzeigen" +#: include/Scrape.php:603 +msgid " on Last.fm" +msgstr " bei Last.fm" #: include/text.php:299 msgid "newer" @@ -6882,11 +6672,6 @@ msgstr "Auf separater Seite ansehen" msgid "view on separate page" msgstr "auf separater Seite ansehen" -#: include/text.php:1768 include/user.php:255 -#: view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "Standard" - #: include/text.php:1780 msgid "Select an alternate language" msgstr "Alternative Sprache auswählen" @@ -6903,303 +6688,6 @@ msgstr "Beitrag" msgid "Item filed" msgstr "Beitrag abgelegt" -#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 -msgid "Image/photo" -msgstr "Bild/Foto" - -#: 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 schrieb den folgenden Beitrag" - -#: include/bbcode.php:1076 include/bbcode.php:1096 -msgid "$1 wrote:" -msgstr "$1 hat geschrieben:" - -#: include/bbcode.php:1121 include/bbcode.php:1122 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" - -#: include/notifier.php:830 include/delivery.php:456 -msgid "(no subject)" -msgstr "(kein Betreff)" - -#: include/notifier.php:840 include/delivery.php:467 include/enotify.php:33 -msgid "noreply" -msgstr "noreply" - -#: include/dba_pdo.php:72 include/dba.php:56 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln." - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Unbekannt | Nicht kategorisiert" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Sofort blockieren" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Zwielichtig, Spammer, Selbstdarsteller" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Ist mir bekannt, hab aber keine Meinung" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, wahrscheinlich harmlos" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Seriös, hat mein Vertrauen" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wöchentlich" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Monatlich" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zott" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/Chat" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Diaspora" - -#: include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "StatusNet" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - -#: include/contact_selectors.php:103 -msgid "Redmatrix" -msgstr "Redmatrix" - -#: include/Scrape.php:603 -msgid " on Last.fm" -msgstr " bei Last.fm" - -#: include/bb2diaspora.php:154 include/event.php:22 -msgid "Starts:" -msgstr "Beginnt:" - -#: include/bb2diaspora.php:162 include/event.php:32 -msgid "Finishes:" -msgstr "Endet:" - -#: include/plugin.php:458 include/plugin.php:460 -msgid "Click here to upgrade." -msgstr "Zum Upgraden hier klicken." - -#: include/plugin.php:466 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements." - -#: include/plugin.php:471 -msgid "This action is not available under your subscription plan." -msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar." - -#: include/nav.php:73 -msgid "End this session" -msgstr "Diese Sitzung beenden" - -#: include/nav.php:76 include/nav.php:156 view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" - -#: include/nav.php:77 view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "Deine Profilseite" - -#: include/nav.php:78 view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Deine Fotos" - -#: include/nav.php:79 -msgid "Your videos" -msgstr "Deine Videos" - -#: include/nav.php:80 view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "Deine Ereignisse" - -#: include/nav.php:81 view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Persönliche Notizen" - -#: include/nav.php:81 -msgid "Your personal notes" -msgstr "Deine persönlichen Notizen" - -#: include/nav.php:92 -msgid "Sign in" -msgstr "Anmelden" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "Homepage" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "Nutzerkonto erstellen" - -#: include/nav.php:114 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: include/nav.php:117 -msgid "Apps" -msgstr "Apps" - -#: include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Addon Anwendungen, Dienstprogramme, Spiele" - -#: include/nav.php:119 -msgid "Search site content" -msgstr "Inhalt der Seite durchsuchen" - -#: include/nav.php:137 -msgid "Conversations on this site" -msgstr "Unterhaltungen auf dieser Seite" - -#: include/nav.php:139 -msgid "Conversations on the network" -msgstr "Unterhaltungen im Netzwerk" - -#: include/nav.php:141 -msgid "Directory" -msgstr "Verzeichnis" - -#: include/nav.php:141 -msgid "People directory" -msgstr "Nutzerverzeichnis" - -#: include/nav.php:143 -msgid "Information" -msgstr "Information" - -#: include/nav.php:143 -msgid "Information about this friendica instance" -msgstr "Informationen zu dieser Friendica Instanz" - -#: include/nav.php:153 -msgid "Conversations from your friends" -msgstr "Unterhaltungen Deiner Kontakte" - -#: include/nav.php:154 -msgid "Network Reset" -msgstr "Netzwerk zurücksetzen" - -#: include/nav.php:154 -msgid "Load Network page with no filters" -msgstr "Netzwerk-Seite ohne Filter laden" - -#: include/nav.php:161 -msgid "Friend Requests" -msgstr "Kontaktanfragen" - -#: include/nav.php:165 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen anzeigen" - -#: include/nav.php:166 -msgid "Mark all system notifications seen" -msgstr "Markiere alle Systembenachrichtigungen als gelesen" - -#: include/nav.php:170 -msgid "Private mail" -msgstr "Private E-Mail" - -#: include/nav.php:171 -msgid "Inbox" -msgstr "Eingang" - -#: include/nav.php:172 -msgid "Outbox" -msgstr "Ausgang" - -#: include/nav.php:176 -msgid "Manage" -msgstr "Verwalten" - -#: include/nav.php:176 -msgid "Manage other pages" -msgstr "Andere Seiten verwalten" - -#: include/nav.php:181 -msgid "Account settings" -msgstr "Kontoeinstellungen" - -#: include/nav.php:184 -msgid "Manage/Edit Profiles" -msgstr "Profile Verwalten/Editieren" - -#: include/nav.php:186 -msgid "Manage/edit friends and contacts" -msgstr "Freunde und Kontakte verwalten/editieren" - -#: include/nav.php:193 -msgid "Site setup and configuration" -msgstr "Einstellungen der Seite und Konfiguration" - -#: include/nav.php:197 -msgid "Navigation" -msgstr "Navigation" - -#: include/nav.php:197 -msgid "Site map" -msgstr "Sitemap" - #: include/api.php:321 include/api.php:332 include/api.php:441 #: include/api.php:1141 include/api.php:1143 msgid "User not found." @@ -7240,131 +6728,259 @@ msgstr "Ungültige Aktion" msgid "DB error" msgstr "DB Error" -#: include/user.php:48 -msgid "An invitation is required." -msgstr "Du benötigst eine Einladung." - -#: include/user.php:53 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht überprüft werden." - -#: include/user.php:61 -msgid "Invalid OpenID url" -msgstr "Ungültige OpenID URL" - -#: include/user.php:82 -msgid "Please enter the required information." -msgstr "Bitte trage die erforderlichen Informationen ein." - -#: include/user.php:96 -msgid "Please use a shorter name." -msgstr "Bitte verwende einen kürzeren Namen." - -#: include/user.php:98 -msgid "Name too short." -msgstr "Der Name ist zu kurz." - -#: include/user.php:113 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein." - -#: include/user.php:118 -msgid "Your email domain is not among those allowed on this site." -msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt." - -#: include/user.php:121 -msgid "Not a valid email address." -msgstr "Keine gültige E-Mail-Adresse." - -#: include/user.php:134 -msgid "Cannot use that email." -msgstr "Konnte diese E-Mail-Adresse nicht verwenden." - -#: include/user.php:140 -msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." -msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen." - -#: include/user.php:146 include/user.php:244 -msgid "Nickname is already registered. Please choose another." -msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." - -#: include/user.php:156 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." - -#: include/user.php:172 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." - -#: include/user.php:230 -msgid "An error occurred during registration. Please try again." -msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal." - -#: include/user.php:265 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal." - -#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42 -msgid "Friends" -msgstr "Freunde" - -#: include/user.php:385 +#: include/dba.php:56 include/dba_pdo.php:72 #, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t" -msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet." +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln." -#: include/user.php:389 +#: include/items.php:2445 include/datetime.php:459 #, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t%1$s\n" -"\t\t\tPassword:\t%5$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\n" -"\t\tThank you and welcome to %2$s." -msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s." +msgid "%s's birthday" +msgstr "%ss Geburtstag" -#: include/diaspora.php:717 -msgid "Sharing notification from Diaspora network" -msgstr "Freigabe-Benachrichtigung von Diaspora" +#: include/items.php:2446 include/datetime.php:460 +#, php-format +msgid "Happy Birthday %s" +msgstr "Herzlichen Glückwunsch %s" -#: include/diaspora.php:2560 -msgid "Attachments:" -msgstr "Anhänge:" - -#: include/items.php:4853 +#: include/items.php:4866 msgid "Do you really want to delete this item?" msgstr "Möchtest Du wirklich dieses Item löschen?" -#: include/items.php:5128 +#: include/items.php:5141 msgid "Archives" msgstr "Archiv" +#: include/delivery.php:456 include/notifier.php:834 +msgid "(no subject)" +msgstr "(kein Betreff)" + +#: include/delivery.php:467 include/notifier.php:844 include/enotify.php:33 +msgid "noreply" +msgstr "noreply" + +#: include/diaspora.php:716 +msgid "Sharing notification from Diaspora network" +msgstr "Freigabe-Benachrichtigung von Diaspora" + +#: include/diaspora.php:2567 +msgid "Attachments:" +msgstr "Anhänge:" + +#: include/identity.php:38 +msgid "Requested account is not available." +msgstr "Das angefragte Profil ist nicht vorhanden." + +#: include/identity.php:121 include/identity.php:255 include/identity.php:608 +msgid "Edit profile" +msgstr "Profil bearbeiten" + +#: include/identity.php:220 +msgid "Message" +msgstr "Nachricht" + +#: include/identity.php:226 include/nav.php:184 +msgid "Profiles" +msgstr "Profile" + +#: include/identity.php:226 +msgid "Manage/edit profiles" +msgstr "Profile verwalten/editieren" + +#: include/identity.php:342 +msgid "Network:" +msgstr "Netzwerk" + +#: include/identity.php:374 include/identity.php:460 +msgid "g A l F d" +msgstr "l, d. F G \\U\\h\\r" + +#: include/identity.php:375 include/identity.php:461 +msgid "F d" +msgstr "d. F" + +#: include/identity.php:420 include/identity.php:507 +msgid "[today]" +msgstr "[heute]" + +#: include/identity.php:432 +msgid "Birthday Reminders" +msgstr "Geburtstagserinnerungen" + +#: include/identity.php:433 +msgid "Birthdays this week:" +msgstr "Geburtstage diese Woche:" + +#: include/identity.php:494 +msgid "[No description]" +msgstr "[keine Beschreibung]" + +#: include/identity.php:518 +msgid "Event Reminders" +msgstr "Veranstaltungserinnerungen" + +#: include/identity.php:519 +msgid "Events this week:" +msgstr "Veranstaltungen diese Woche" + +#: include/identity.php:546 +msgid "j F, Y" +msgstr "j F, Y" + +#: include/identity.php:547 +msgid "j F" +msgstr "j F" + +#: include/identity.php:554 +msgid "Birthday:" +msgstr "Geburtstag:" + +#: include/identity.php:558 +msgid "Age:" +msgstr "Alter:" + +#: include/identity.php:567 +#, php-format +msgid "for %1$d %2$s" +msgstr "für %1$d %2$s" + +#: include/identity.php:580 +msgid "Religion:" +msgstr "Religion:" + +#: include/identity.php:584 +msgid "Hobbies/Interests:" +msgstr "Hobbies/Interessen:" + +#: include/identity.php:591 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformationen und Soziale Netzwerke:" + +#: include/identity.php:593 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" + +#: include/identity.php:595 +msgid "Books, literature:" +msgstr "Literatur/Bücher:" + +#: include/identity.php:597 +msgid "Television:" +msgstr "Fernsehen:" + +#: include/identity.php:599 +msgid "Film/dance/culture/entertainment:" +msgstr "Filme/Tänze/Kultur/Unterhaltung:" + +#: include/identity.php:601 +msgid "Love/Romance:" +msgstr "Liebesleben:" + +#: include/identity.php:603 +msgid "Work/employment:" +msgstr "Arbeit/Beschäftigung:" + +#: include/identity.php:605 +msgid "School/education:" +msgstr "Schule/Ausbildung:" + +#: include/identity.php:633 include/nav.php:76 +msgid "Status" +msgstr "Status" + +#: include/identity.php:636 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" + +#: include/identity.php:644 +msgid "Profile Details" +msgstr "Profildetails" + +#: include/identity.php:657 include/identity.php:660 include/nav.php:79 +msgid "Videos" +msgstr "Videos" + +#: include/identity.php:671 +msgid "Events and Calendar" +msgstr "Ereignisse und Kalender" + +#: include/identity.php:679 +msgid "Only You Can See This" +msgstr "Nur Du kannst das sehen" + +#: include/follow.php:75 +msgid "Connect URL missing." +msgstr "Connect-URL fehlt" + +#: include/follow.php:102 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann." + +#: include/follow.php:103 include/follow.php:123 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." + +#: include/follow.php:121 +msgid "The profile address specified does not provide adequate information." +msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." + +#: include/follow.php:125 +msgid "An author or name was not found." +msgstr "Es wurde kein Autor oder Name gefunden." + +#: include/follow.php:127 +msgid "No browser URL could be matched to this address." +msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden." + +#: include/follow.php:129 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen." + +#: include/follow.php:130 +msgid "Use mailto: in front of address to force email check." +msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen." + +#: include/follow.php:136 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde." + +#: include/follow.php:146 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können." + +#: include/follow.php:253 +msgid "Unable to retrieve contact information." +msgstr "Konnte die Kontaktinformationen nicht empfangen." + +#: include/follow.php:306 +msgid "following" +msgstr "folgen" + +#: include/security.php:22 +msgid "Welcome " +msgstr "Willkommen " + +#: include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Bitte lade ein Profilbild hoch." + +#: include/security.php:26 +msgid "Welcome back " +msgstr "Willkommen zurück " + +#: include/security.php:375 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)." + #: include/profile_selectors.php:6 msgid "Male" msgstr "Männlich" @@ -7509,6 +7125,10 @@ msgstr "Untreu" msgid "Sex Addict" msgstr "Sexbesessen" +#: include/profile_selectors.php:42 include/user.php:297 include/user.php:301 +msgid "Friends" +msgstr "Freunde" + #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Freunde/Zuwendungen" @@ -7593,6 +7213,461 @@ msgstr "Ist mir nicht wichtig" msgid "Ask me" msgstr "Frag mich" +#: include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Fehler beim Verarbeiten der Account Datei" + +#: include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?" + +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Fehler! Konnte den Nickname nicht überprüfen." + +#: include/uimport.php:120 include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Nutzer '%s' existiert bereits auf diesem Server!" + +#: include/uimport.php:153 +msgid "User creation error" +msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten" + +#: include/uimport.php:173 +msgid "User profile creation error" +msgstr "Fehler beim Anlegen des Nutzerkontos" + +#: include/uimport.php:222 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d Kontakt nicht importiert" +msgstr[1] "%d Kontakte nicht importiert" + +#: include/uimport.php:292 +msgid "Done. You can now login with your username and password" +msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden" + +#: include/plugin.php:458 include/plugin.php:460 +msgid "Click here to upgrade." +msgstr "Zum Upgraden hier klicken." + +#: include/plugin.php:466 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements." + +#: include/plugin.php:471 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar." + +#: include/conversation.php:206 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s" + +#: include/conversation.php:290 +msgid "post/item" +msgstr "Nachricht/Beitrag" + +#: include/conversation.php:291 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert" + +#: include/conversation.php:771 +msgid "remove" +msgstr "löschen" + +#: include/conversation.php:775 +msgid "Delete Selected Items" +msgstr "Lösche die markierten Beiträge" + +#: include/conversation.php:874 +msgid "Follow Thread" +msgstr "Folge der Unterhaltung" + +#: include/conversation.php:875 include/Contact.php:233 +msgid "View Status" +msgstr "Pinnwand anschauen" + +#: include/conversation.php:876 include/Contact.php:234 +msgid "View Profile" +msgstr "Profil anschauen" + +#: include/conversation.php:877 include/Contact.php:235 +msgid "View Photos" +msgstr "Bilder anschauen" + +#: include/conversation.php:878 include/Contact.php:236 +#: include/Contact.php:259 +msgid "Network Posts" +msgstr "Netzwerkbeiträge" + +#: include/conversation.php:879 include/Contact.php:237 +#: include/Contact.php:259 +msgid "Edit Contact" +msgstr "Kontakt bearbeiten" + +#: include/conversation.php:880 include/Contact.php:239 +#: include/Contact.php:259 +msgid "Send PM" +msgstr "Private Nachricht senden" + +#: include/conversation.php:881 include/Contact.php:232 +msgid "Poke" +msgstr "Anstupsen" + +#: include/conversation.php:943 +#, php-format +msgid "%s likes this." +msgstr "%s mag das." + +#: include/conversation.php:943 +#, php-format +msgid "%s doesn't like this." +msgstr "%s mag das nicht." + +#: include/conversation.php:948 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d Personen mögen das" + +#: include/conversation.php:951 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d Personen mögen das nicht" + +#: include/conversation.php:965 +msgid "and" +msgstr "und" + +#: include/conversation.php:971 +#, php-format +msgid ", and %d other people" +msgstr " und %d andere" + +#: include/conversation.php:973 +#, php-format +msgid "%s like this." +msgstr "%s mögen das." + +#: include/conversation.php:973 +#, php-format +msgid "%s don't like this." +msgstr "%s mögen das nicht." + +#: include/conversation.php:1000 include/conversation.php:1018 +msgid "Visible to everybody" +msgstr "Für jedermann sichtbar" + +#: include/conversation.php:1002 include/conversation.php:1020 +msgid "Please enter a video link/URL:" +msgstr "Bitte Link/URL zum Video einfügen:" + +#: include/conversation.php:1003 include/conversation.php:1021 +msgid "Please enter an audio link/URL:" +msgstr "Bitte Link/URL zum Audio einfügen:" + +#: include/conversation.php:1004 include/conversation.php:1022 +msgid "Tag term:" +msgstr "Tag:" + +#: include/conversation.php:1006 include/conversation.php:1024 +msgid "Where are you right now?" +msgstr "Wo hältst Du Dich jetzt gerade auf?" + +#: include/conversation.php:1007 +msgid "Delete item(s)?" +msgstr "Einträge löschen?" + +#: include/conversation.php:1076 +msgid "permissions" +msgstr "Zugriffsrechte" + +#: include/conversation.php:1099 +msgid "Post to Groups" +msgstr "Poste an Gruppe" + +#: include/conversation.php:1100 +msgid "Post to Contacts" +msgstr "Poste an Kontakte" + +#: include/conversation.php:1101 +msgid "Private post" +msgstr "Privater Beitrag" + +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Neuen Kontakt hinzufügen" + +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Adresse oder Web-Link eingeben" + +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Beispiel: bob@example.com, http://example.com/barbara" + +#: include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d Einladung verfügbar" +msgstr[1] "%d Einladungen verfügbar" + +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "Leute finden" + +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" + +#: include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" + +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiel: Robert Morgenstein, Angeln" + +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Zufälliges Profil" + +#: include/contact_widgets.php:71 +msgid "Networks" +msgstr "Netzwerke" + +#: include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Alle Netzwerke" + +#: include/contact_widgets.php:107 include/contact_widgets.php:139 +msgid "Everything" +msgstr "Alles" + +#: include/contact_widgets.php:136 +msgid "Categories" +msgstr "Kategorien" + +#: include/nav.php:73 +msgid "End this session" +msgstr "Diese Sitzung beenden" + +#: include/nav.php:79 +msgid "Your videos" +msgstr "Deine Videos" + +#: include/nav.php:81 +msgid "Your personal notes" +msgstr "Deine persönlichen Notizen" + +#: include/nav.php:92 +msgid "Sign in" +msgstr "Anmelden" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Homepage" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Nutzerkonto erstellen" + +#: include/nav.php:114 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: include/nav.php:117 +msgid "Apps" +msgstr "Apps" + +#: include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Addon Anwendungen, Dienstprogramme, Spiele" + +#: include/nav.php:119 +msgid "Search site content" +msgstr "Inhalt der Seite durchsuchen" + +#: include/nav.php:137 +msgid "Conversations on this site" +msgstr "Unterhaltungen auf dieser Seite" + +#: include/nav.php:139 +msgid "Conversations on the network" +msgstr "Unterhaltungen im Netzwerk" + +#: include/nav.php:141 +msgid "Directory" +msgstr "Verzeichnis" + +#: include/nav.php:141 +msgid "People directory" +msgstr "Nutzerverzeichnis" + +#: include/nav.php:143 +msgid "Information" +msgstr "Information" + +#: include/nav.php:143 +msgid "Information about this friendica instance" +msgstr "Informationen zu dieser Friendica Instanz" + +#: include/nav.php:153 +msgid "Conversations from your friends" +msgstr "Unterhaltungen Deiner Kontakte" + +#: include/nav.php:154 +msgid "Network Reset" +msgstr "Netzwerk zurücksetzen" + +#: include/nav.php:154 +msgid "Load Network page with no filters" +msgstr "Netzwerk-Seite ohne Filter laden" + +#: include/nav.php:161 +msgid "Friend Requests" +msgstr "Kontaktanfragen" + +#: include/nav.php:165 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen anzeigen" + +#: include/nav.php:166 +msgid "Mark all system notifications seen" +msgstr "Markiere alle Systembenachrichtigungen als gelesen" + +#: include/nav.php:170 +msgid "Private mail" +msgstr "Private E-Mail" + +#: include/nav.php:171 +msgid "Inbox" +msgstr "Eingang" + +#: include/nav.php:172 +msgid "Outbox" +msgstr "Ausgang" + +#: include/nav.php:176 +msgid "Manage" +msgstr "Verwalten" + +#: include/nav.php:176 +msgid "Manage other pages" +msgstr "Andere Seiten verwalten" + +#: include/nav.php:181 +msgid "Account settings" +msgstr "Kontoeinstellungen" + +#: include/nav.php:184 +msgid "Manage/Edit Profiles" +msgstr "Profile Verwalten/Editieren" + +#: include/nav.php:186 +msgid "Manage/edit friends and contacts" +msgstr "Freunde und Kontakte verwalten/editieren" + +#: include/nav.php:193 +msgid "Site setup and configuration" +msgstr "Einstellungen der Seite und Konfiguration" + +#: include/nav.php:197 +msgid "Navigation" +msgstr "Navigation" + +#: include/nav.php:197 +msgid "Site map" +msgstr "Sitemap" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Unbekannt | Nicht kategorisiert" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Sofort blockieren" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Zwielichtig, Spammer, Selbstdarsteller" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Ist mir bekannt, hab aber keine Meinung" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, wahrscheinlich harmlos" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Seriös, hat mein Vertrauen" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wöchentlich" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Monatlich" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zott" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/Chat" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora" + +#: include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "StatusNet" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" + +#: include/contact_selectors.php:103 +msgid "Redmatrix" +msgstr "Redmatrix" + #: include/enotify.php:18 msgid "Friendica Notification" msgstr "Friendica-Benachrichtigung" @@ -7876,6 +7951,148 @@ msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s) msgid "Please visit %s to approve or reject the request." msgstr "Bitte besuche %s um die Anfrage zu bearbeiten." +#: include/user.php:48 +msgid "An invitation is required." +msgstr "Du benötigst eine Einladung." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht überprüft werden." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Ungültige OpenID URL" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Bitte trage die erforderlichen Informationen ein." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Bitte verwende einen kürzeren Namen." + +#: include/user.php:98 +msgid "Name too short." +msgstr "Der Name ist zu kurz." + +#: include/user.php:113 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein." + +#: include/user.php:118 +msgid "Your email domain is not among those allowed on this site." +msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt." + +#: include/user.php:121 +msgid "Not a valid email address." +msgstr "Keine gültige E-Mail-Adresse." + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "Konnte diese E-Mail-Adresse nicht verwenden." + +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen." + +#: include/user.php:146 include/user.php:244 +msgid "Nickname is already registered. Please choose another." +msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." + +#: include/user.php:156 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." + +#: include/user.php:172 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." + +#: include/user.php:230 +msgid "An error occurred during registration. Please try again." +msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal." + +#: include/user.php:265 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal." + +#: include/user.php: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 "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet." + +#: 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 "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s." + +#: include/acl_selectors.php:324 +msgid "Post to Email" +msgstr "An E-Mail senden" + +#: include/acl_selectors.php:329 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist." + +#: include/acl_selectors.php:335 +msgid "Visible to everybody" +msgstr "Für jeden sichtbar" + +#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 +msgid "Image/photo" +msgstr "Bild/Foto" + +#: 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 schrieb den folgenden Beitrag" + +#: include/bbcode.php:1076 include/bbcode.php:1096 +msgid "$1 wrote:" +msgstr "$1 hat geschrieben:" + +#: include/bbcode.php:1121 include/bbcode.php:1122 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" + #: include/oembed.php:220 msgid "Embedded content" msgstr "Eingebetteter Inhalt" @@ -7884,204 +8101,147 @@ msgstr "Eingebetteter Inhalt" msgid "Embedding disabled" msgstr "Einbettungen deaktiviert" -#: include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Fehler beim Verarbeiten der Account Datei" +#: include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen." -#: include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?" +#: include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Voreingestellte Gruppe für neue Kontakte" -#: include/uimport.php:116 include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Fehler! Konnte den Nickname nicht überprüfen." +#: include/group.php:226 +msgid "Everybody" +msgstr "Alle Kontakte" -#: include/uimport.php:120 include/uimport.php:131 +#: include/group.php:249 +msgid "edit" +msgstr "bearbeiten" + +#: include/group.php:271 +msgid "Edit group" +msgstr "Gruppe bearbeiten" + +#: include/group.php:272 +msgid "Create a new group" +msgstr "Neue Gruppe erstellen" + +#: include/group.php:275 +msgid "Contacts not in any group" +msgstr "Kontakte in keiner Gruppe" + +#: include/Contact.php:119 +msgid "stopped following" +msgstr "wird nicht mehr gefolgt" + +#: include/Contact.php:238 +msgid "Drop Contact" +msgstr "Kontakt löschen" + +#: include/datetime.php:43 include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Verschiedenes" + +#: include/datetime.php:141 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD oder MM-DD" + +#: include/datetime.php:256 +msgid "never" +msgstr "nie" + +#: include/datetime.php:262 +msgid "less than a second ago" +msgstr "vor weniger als einer Sekunde" + +#: include/datetime.php:272 +msgid "year" +msgstr "Jahr" + +#: include/datetime.php:272 +msgid "years" +msgstr "Jahre" + +#: include/datetime.php:273 +msgid "month" +msgstr "Monat" + +#: include/datetime.php:273 +msgid "months" +msgstr "Monate" + +#: include/datetime.php:274 +msgid "week" +msgstr "Woche" + +#: include/datetime.php:274 +msgid "weeks" +msgstr "Wochen" + +#: include/datetime.php:275 +msgid "day" +msgstr "Tag" + +#: include/datetime.php:275 +msgid "days" +msgstr "Tage" + +#: include/datetime.php:276 +msgid "hour" +msgstr "Stunde" + +#: include/datetime.php:276 +msgid "hours" +msgstr "Stunden" + +#: include/datetime.php:277 +msgid "minute" +msgstr "Minute" + +#: include/datetime.php:277 +msgid "minutes" +msgstr "Minuten" + +#: include/datetime.php:278 +msgid "second" +msgstr "Sekunde" + +#: include/datetime.php:278 +msgid "seconds" +msgstr "Sekunden" + +#: include/datetime.php:287 #, php-format -msgid "User '%s' already exists on this server!" -msgstr "Nutzer '%s' existiert bereits auf diesem Server!" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s her" -#: include/uimport.php:153 -msgid "User creation error" -msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten" +#: include/network.php:959 +msgid "view full size" +msgstr "Volle Größe anzeigen" -#: include/uimport.php:173 -msgid "User profile creation error" -msgstr "Fehler beim Anlegen des Nutzerkontos" - -#: include/uimport.php:222 +#: include/dbstructure.php:26 #, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d Kontakt nicht importiert" -msgstr[1] "%d Kontakte nicht importiert" +msgid "" +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein." -#: include/uimport.php:292 -msgid "Done. You can now login with your username and password" -msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden" +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" -#: index.php:441 -msgid "toggle mobile" -msgstr "auf/von Mobile Ansicht wechseln" +#: include/dbstructure.php:152 +msgid "Errors encountered creating database tables." +msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." -#: view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)" - -#: view/theme/cleanzero/config.php:84 view/theme/dispy/config.php:73 -#: view/theme/diabook/config.php:151 -msgid "Set font-size for posts and comments" -msgstr "Schriftgröße für Beiträge und Kommentare festlegen" - -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Theme Breite festlegen" - -#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Farbschema" - -#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152 -msgid "Set line-height for posts and comments" -msgstr "Liniengröße für Beiträge und Kommantare festlegen" - -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Farbschema wählen" - -#: view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Ausrichtung" - -#: view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Links" - -#: view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Mitte" - -#: view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Schriftgröße in Beiträgen" - -#: view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Schriftgröße in Eingabefeldern" - -#: view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Auflösung für die Mittelspalte setzen" - -#: view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Wähle Farbschema" - -#: view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Zoomfaktor der Earth Layer" - -#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "Longitude (X) der Earth Layer" - -#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Latitude (Y) der Earth Layer" - -#: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130 -#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 -msgid "Community Pages" -msgstr "Foren" - -#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 -#: view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Earth Layers" - -#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 -#: view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Community-Profile" - -#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 -#: view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "Hilfe oder @NewHere" - -#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 -#: view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Verbinde Dienste" - -#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 -#: view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Freunde finden" - -#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 -#: view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "Letzte Nutzer" - -#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 -#: view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Letzte Fotos" - -#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 -#: view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Zuletzt gemocht" - -#: view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Deine Kontakte" - -#: view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Deine privaten Fotos" - -#: view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Lokales Verzeichnis" - -#: view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Zoomfaktor der Earth Layer" - -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Rahmen auf der rechten Seite anzeigen/verbergen" - -#: view/theme/vier/config.php:59 -msgid "Set style" -msgstr "Stil auswählen" - -#: view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "greenzero" - -#: view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "purplezero" - -#: view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "easterbunny" - -#: view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "darkzero" - -#: view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "slackr" - -#: view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "Variationen" +#: include/dbstructure.php:210 +msgid "Errors encountered performing database changes." +msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." diff --git a/view/de/strings.php b/view/de/strings.php index a800561db6..5557162450 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -5,281 +5,123 @@ function string_plural_select_de($n){ return ($n != 1);; }} ; -$a->strings["%d contact edited."] = array( - 0 => "%d Kontakt bearbeitet.", - 1 => "%d Kontakte bearbeitet", -); -$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen."; -$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden."; -$a->strings["Contact updated."] = "Kontakt aktualisiert."; -$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen."; -$a->strings["Permission denied."] = "Zugriff verweigert."; -$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert"; -$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben"; -$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert"; -$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert"; -$a->strings["Contact has been archived"] = "Kontakt wurde archiviert"; -$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt"; -$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?"; -$a->strings["Yes"] = "Ja"; -$a->strings["Cancel"] = "Abbrechen"; -$a->strings["Contact has been removed."] = "Kontakt wurde entfernt."; -$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft"; -$a->strings["You are sharing with %s"] = "Du teilst mit %s"; -$a->strings["%s is sharing with you"] = "%s teilt mit Dir"; -$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar."; -$a->strings["Never"] = "Niemals"; -$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)"; -$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)"; -$a->strings["Suggest friends"] = "Kontakte vorschlagen"; -$a->strings["Network type: %s"] = "Netzwerktyp: %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d gemeinsamer Kontakt", - 1 => "%d gemeinsame Kontakte", -); -$a->strings["View all contacts"] = "Alle Kontakte anzeigen"; -$a->strings["Unblock"] = "Entsperren"; -$a->strings["Block"] = "Sperren"; -$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten"; -$a->strings["Unignore"] = "Ignorieren aufheben"; -$a->strings["Ignore"] = "Ignorieren"; -$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten"; -$a->strings["Unarchive"] = "Aus Archiv zurückholen"; -$a->strings["Archive"] = "Archivieren"; -$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten"; -$a->strings["Repair"] = "Reparieren"; -$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen"; -$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!"; -$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen"; -$a->strings["Disabled"] = "Deaktiviert"; -$a->strings["Fetch information"] = "Beziehe Information"; -$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte"; -$a->strings["Contact Editor"] = "Kontakt Editor"; -$a->strings["Submit"] = "Senden"; -$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."; -$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen"; -$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten"; -$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]"; -$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten"; -$a->strings["Ignore contact"] = "Ignoriere den Kontakt"; -$a->strings["Repair URL settings"] = "URL Einstellungen reparieren"; -$a->strings["View conversations"] = "Unterhaltungen anzeigen"; -$a->strings["Delete contact"] = "Lösche den Kontakt"; -$a->strings["Last update:"] = "Letzte Aktualisierung: "; -$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; -$a->strings["Update now"] = "Jetzt aktualisieren"; -$a->strings["Currently blocked"] = "Derzeit geblockt"; -$a->strings["Currently ignored"] = "Derzeit ignoriert"; -$a->strings["Currently archived"] = "Momentan archiviert"; -$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor andere"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein"; -$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen"; -$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."; -$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte "; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"; -$a->strings["Profile URL"] = "Profil URL"; -$a->strings["Suggestions"] = "Kontaktvorschläge"; -$a->strings["Suggest potential friends"] = "Freunde vorschlagen"; -$a->strings["All Contacts"] = "Alle Kontakte"; -$a->strings["Show all contacts"] = "Alle Kontakte anzeigen"; -$a->strings["Unblocked"] = "Ungeblockt"; -$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen"; -$a->strings["Blocked"] = "Geblockt"; -$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen"; -$a->strings["Ignored"] = "Ignoriert"; -$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen"; -$a->strings["Archived"] = "Archiviert"; -$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen"; -$a->strings["Hidden"] = "Verborgen"; -$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen"; -$a->strings["Contacts"] = "Kontakte"; -$a->strings["Search your contacts"] = "Suche in deinen Kontakten"; -$a->strings["Finding: "] = "Funde: "; -$a->strings["Find"] = "Finde"; -$a->strings["Update"] = "Aktualisierungen"; +$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet."; +$a->strings["Private Message"] = "Private Nachricht"; +$a->strings["Edit"] = "Bearbeiten"; +$a->strings["Select"] = "Auswählen"; $a->strings["Delete"] = "Löschen"; -$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft"; -$a->strings["is a fan of yours"] = "ist ein Fan von dir"; -$a->strings["you are a fan of"] = "Du bist Fan von"; -$a->strings["Edit contact"] = "Kontakt bearbeiten"; -$a->strings["No profile"] = "Kein Profil"; -$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."; -$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: "; -$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht."; -$a->strings["Permission denied"] = "Zugriff verweigert"; -$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner."; -$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit"; -$a->strings["Profile"] = "Profil"; -$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"; -$a->strings["Visible To"] = "Sichtbar für"; -$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)"; -$a->strings["Item not found."] = "Beitrag nicht gefunden."; -$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert."; -$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt."; -$a->strings["Item has been removed."] = "Eintrag wurde entfernt."; -$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica"; -$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."; -$a->strings["Getting Started"] = "Einstieg"; -$a->strings["Friendica Walk-Through"] = "Friendica Rundgang"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."; -$a->strings["Settings"] = "Einstellungen"; -$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können."; -$a->strings["Upload Profile Photo"] = "Profilbild hochladen"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."; -$a->strings["Edit Your Profile"] = "Editiere dein Profil"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein Standard Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils."; -$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."; -$a->strings["Connecting"] = "Verbindungen knüpfen"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn Du im Augenblick ein Facebook-Konto hast und (optional) Deine Facebook-Freunde und -Unterhaltungen importieren willst."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Wenn dies Dein privater Server ist, könnte die Installation des Facebook Connectors Deinen Umzug ins freie soziale Netz angenehmer gestalten."; -$a->strings["Importing Emails"] = "Emails Importieren"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willst."; -$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein."; -$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis Deiner Friendica Instanz"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."; -$a->strings["Finding New People"] = "Neue Leute kennenlernen"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."; -$a->strings["Groups"] = "Gruppen"; -$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald Du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."; -$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."; -$a->strings["Getting Help"] = "Hilfe bekommen"; -$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."; -$a->strings["Login failed."] = "Anmeldung fehlgeschlagen."; -$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl."; -$a->strings["Profile Photos"] = "Profilbilder"; -$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."; -$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden"; -$a->strings["Image exceeds size limit of %s"] = "Bildgröße überschreitet das Limit von %s"; -$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten."; -$a->strings["Upload File:"] = "Datei hochladen:"; -$a->strings["Select a profile:"] = "Profil auswählen:"; -$a->strings["Upload"] = "Hochladen"; -$a->strings["or"] = "oder"; -$a->strings["skip this step"] = "diesen Schritt überspringen"; -$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben"; -$a->strings["Crop Image"] = "Bild zurechtschneiden"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."; -$a->strings["Done Editing"] = "Bearbeitung abgeschlossen"; -$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen."; -$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert."; -$a->strings["photo"] = "Foto"; -$a->strings["status"] = "Status"; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s"; -$a->strings["Tag removed"] = "Tag entfernt"; -$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen"; -$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: "; -$a->strings["Remove"] = "Entfernen"; -$a->strings["Save to Folder:"] = "In diesem Ordner speichern:"; -$a->strings["- select -"] = "- auswählen -"; -$a->strings["Save"] = "Speichern"; -$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt."; -$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:"; -$a->strings["Does %s know you?"] = "Kennt %s Dich?"; -$a->strings["No"] = "Nein"; -$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:"; -$a->strings["Your Identity Address:"] = "Adresse Deines Profils:"; -$a->strings["Submit Request"] = "Anfrage abschicken"; -$a->strings["Contact added"] = "Kontakt hinzugefügt"; -$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden."; -$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen."; -$a->strings["Wall Photos"] = "Pinnwand-Bilder"; -$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."; -$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest."; -$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht."; -$a->strings["Group created."] = "Gruppe erstellt."; -$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen."; -$a->strings["Group not found."] = "Gruppe nicht gefunden."; -$a->strings["Group name changed."] = "Gruppenname geändert."; -$a->strings["Save Group"] = "Gruppe speichern"; -$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen."; -$a->strings["Group Name: "] = "Gruppenname:"; -$a->strings["Group removed."] = "Gruppe entfernt."; -$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen."; -$a->strings["Group Editor"] = "Gruppeneditor"; -$a->strings["Members"] = "Mitglieder"; +$a->strings["save to folder"] = "In Ordner speichern"; +$a->strings["add star"] = "markieren"; +$a->strings["remove star"] = "Markierung entfernen"; +$a->strings["toggle star status"] = "Markierung umschalten"; +$a->strings["starred"] = "markiert"; +$a->strings["ignore thread"] = "Thread ignorieren"; +$a->strings["unignore thread"] = "Thread nicht mehr ignorieren"; +$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten"; +$a->strings["ignored"] = "Ignoriert"; +$a->strings["add tag"] = "Tag hinzufügen"; +$a->strings["I like this (toggle)"] = "Ich mag das (toggle)"; +$a->strings["like"] = "mag ich"; +$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)"; +$a->strings["dislike"] = "mag ich nicht"; +$a->strings["Share this"] = "Weitersagen"; +$a->strings["share"] = "Teilen"; +$a->strings["Categories:"] = "Kategorien:"; +$a->strings["Filed under:"] = "Abgelegt unter:"; +$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten."; +$a->strings["to"] = "zu"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; +$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; +$a->strings["%s from %s"] = "%s von %s"; +$a->strings["Comment"] = "Kommentar"; +$a->strings["Please wait"] = "Bitte warten"; +$a->strings["%d comment"] = array( + 0 => "%d Kommentar", + 1 => "%d Kommentare", +); +$a->strings["comment"] = array( + 0 => "Kommentar", + 1 => "Kommentare", +); +$a->strings["show more"] = "mehr anzeigen"; +$a->strings["This is you"] = "Das bist Du"; +$a->strings["Submit"] = "Senden"; +$a->strings["Bold"] = "Fett"; +$a->strings["Italic"] = "Kursiv"; +$a->strings["Underline"] = "Unterstrichen"; +$a->strings["Quote"] = "Zitat"; +$a->strings["Code"] = "Code"; +$a->strings["Image"] = "Bild"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Preview"] = "Vorschau"; $a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können."; -$a->strings["Applications"] = "Anwendungen"; -$a->strings["No installed applications."] = "Keine Applikationen installiert."; -$a->strings["Profile not found."] = "Profil nicht gefunden."; +$a->strings["Not Found"] = "Nicht gefunden"; +$a->strings["Page not found."] = "Seite nicht gefunden."; +$a->strings["Permission denied"] = "Zugriff verweigert"; +$a->strings["Permission denied."] = "Zugriff verweigert."; +$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln"; +$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"; $a->strings["Contact not found."] = "Kontakt nicht gefunden."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."; -$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich."; -$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: "; -$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen."; -$a->strings["Remote site reported: "] = "Gegenstelle meldet: "; -$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."; -$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen."; -$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet"; -$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden"; -$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."; -$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."; -$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."; -$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."; -$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden"; -$a->strings["[Name Withheld]"] = "[Name unterdrückt]"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten"; -$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden."; -$a->strings["Tips for New Members"] = "Tipps für neue Nutzer"; -$a->strings["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?"; -$a->strings["Delete Video"] = "Video Löschen"; -$a->strings["No videos selected"] = "Keine Videos ausgewählt"; -$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt."; -$a->strings["View Video"] = "Video ansehen"; -$a->strings["View Album"] = "Album betrachten"; -$a->strings["Recent Videos"] = "Neueste Videos"; -$a->strings["Upload New Videos"] = "Neues Video hochladen"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt"; $a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet."; $a->strings["Suggest Friends"] = "Kontakte vorschlagen"; $a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor"; -$a->strings["Invalid request."] = "Ungültige Anfrage"; -$a->strings["No valid account found."] = "Kein gültiges Konto gefunden."; -$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast."; -$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s"; -$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."; -$a->strings["Password Reset"] = "Passwort zurücksetzen"; -$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt."; -$a->strings["Your new password is"] = "Dein neues Passwort lautet"; -$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann"; -$a->strings["click here to login"] = "hier klicken, um Dich anzumelden"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Du kannst das Passwort in den Einstellungen ändern, sobald Du Dich erfolgreich angemeldet hast."; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)."; -$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."; -$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert"; -$a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."; -$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:"; -$a->strings["Reset"] = "Zurücksetzen"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht"; -$a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten"; -$a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht"; -$a->strings["{0} requested registration"] = "{0} möchte sich registrieren"; -$a->strings["No contacts."] = "Keine Kontakte."; -$a->strings["View Contacts"] = "Kontakte anzeigen"; +$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."; +$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden", + 1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden", +); +$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen."; +$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler."; +$a->strings["Profile unavailable."] = "Profil nicht verfügbar."; +$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten."; +$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."; +$a->strings["Invalid locator"] = "Ungültiger Locator"; +$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse."; +$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."; +$a->strings["Unable to resolve your name at the provided location."] = "Konnte Deinen Namen an der angegebenen Stelle nicht finden."; +$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt."; +$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s befreundet bist."; +$a->strings["Invalid profile URL."] = "Ungültige Profil-URL."; +$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL."; +$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen."; +$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet."; +$a->strings["Please login to confirm introduction."] = "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an."; +$a->strings["Confirm"] = "Bestätigen"; +$a->strings["Hide this contact"] = "Verberge diesen Kontakt"; +$a->strings["Welcome home %s."] = "Willkommen zurück %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s."; +$a->strings["[Name Withheld]"] = "[Name unterdrückt]"; +$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten."; +$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:"; +$a->strings["Does %s know you?"] = "Kennt %s Dich?"; +$a->strings["No"] = "Nein"; +$a->strings["Yes"] = "Ja"; +$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste."; +$a->strings["Your Identity Address:"] = "Adresse Deines Profils:"; +$a->strings["Submit Request"] = "Anfrage abschicken"; +$a->strings["Cancel"] = "Abbrechen"; +$a->strings["View Video"] = "Video ansehen"; +$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden."; +$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt."; +$a->strings["Tips for New Members"] = "Tipps für neue Nutzer"; $a->strings["Invalid request identifier."] = "Invalid request identifier."; $a->strings["Discard"] = "Verwerfen"; +$a->strings["Ignore"] = "Ignorieren"; $a->strings["System"] = "System"; $a->strings["Network"] = "Netzwerk"; $a->strings["Personal"] = "Persönlich"; @@ -290,6 +132,7 @@ $a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen"; $a->strings["Notification type: "] = "Benachrichtigungstyp: "; $a->strings["Friend Suggestion"] = "Kontaktvorschlag"; $a->strings["suggested by %s"] = "vorgeschlagen von %s"; +$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor andere"; $a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden"; $a->strings["if applicable"] = "falls anwendbar"; $a->strings["Approve"] = "Genehmigen"; @@ -322,6 +165,13 @@ $a->strings["No more personal notifications."] = "Keine weiteren persönlichen B $a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen"; $a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen"; $a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen"; +$a->strings["photo"] = "Foto"; +$a->strings["status"] = "Status"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht"; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."; +$a->strings["Login failed."] = "Anmeldung fehlgeschlagen."; $a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:"; $a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"; $a->strings["Source input: "] = "Originaltext:"; @@ -334,72 +184,6 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb: "; $a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; $a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): "; $a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Nothing new here"] = "Keine Neuigkeiten"; -$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen"; -$a->strings["New Message"] = "Neue Nachricht"; -$a->strings["No recipient selected."] = "Kein Empfänger gewählt."; -$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden."; -$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden."; -$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen."; -$a->strings["Message sent."] = "Nachricht gesendet."; -$a->strings["Messages"] = "Nachrichten"; -$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?"; -$a->strings["Message deleted."] = "Nachricht gelöscht."; -$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; -$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:"; -$a->strings["Send Private Message"] = "Private Nachricht senden"; -$a->strings["To:"] = "An:"; -$a->strings["Subject:"] = "Betreff:"; -$a->strings["Your message:"] = "Deine Nachricht:"; -$a->strings["Upload photo"] = "Foto hochladen"; -$a->strings["Insert web link"] = "Einen Link einfügen"; -$a->strings["Please wait"] = "Bitte warten"; -$a->strings["No messages."] = "Keine Nachrichten."; -$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s"; -$a->strings["You and %s"] = "Du und %s"; -$a->strings["%s and You"] = "%s und Du"; -$a->strings["Delete conversation"] = "Unterhaltung löschen"; -$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d Nachricht", - 1 => "%d Nachrichten", -); -$a->strings["Message not available."] = "Nachricht nicht verfügbar."; -$a->strings["Delete message"] = "Nachricht löschen"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; -$a->strings["Send Reply"] = "Antwort senden"; -$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"; -$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt."; -$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren."; -$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst."; -$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor"; -$a->strings["No mirroring"] = "Kein Spiegeln"; -$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge"; -$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge"; -$a->strings["Refetch contact data"] = "Kontaktdaten neu laden"; -$a->strings["Name"] = "Name"; -$a->strings["Account Nickname"] = "Konto-Spitzname"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname"; -$a->strings["Account URL"] = "Konto-URL"; -$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen"; -$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen"; -$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen"; -$a->strings["Poll/Feed URL"] = "Pull/Feed-URL"; -$a->strings["New photo from this URL"] = "Neues Foto von dieser URL"; -$a->strings["Remote Self"] = "Entfernte Konten"; -$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."; -$a->strings["Login"] = "Anmeldung"; -$a->strings["The post was created"] = "Der Beitrag wurde angelegt"; -$a->strings["Access denied."] = "Zugriff verweigert."; -$a->strings["People Search - %s"] = "Personensuche - %s"; -$a->strings["Connect"] = "Verbinden"; -$a->strings["No matches"] = "Keine Übereinstimmungen"; -$a->strings["Photos"] = "Bilder"; -$a->strings["Files"] = "Dateien"; -$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind"; $a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert."; $a->strings["Site"] = "Seite"; $a->strings["Users"] = "Nutzer"; @@ -414,6 +198,7 @@ $a->strings["Admin"] = "Administration"; $a->strings["Plugin Features"] = "Plugin Features"; $a->strings["diagnostics"] = "Diagnose"; $a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten"; +$a->strings["Item not found."] = "Beitrag nicht gefunden."; $a->strings["Administration"] = "Administration"; $a->strings["ID"] = "ID"; $a->strings["Recipient Name"] = "Empfänger Name"; @@ -434,16 +219,19 @@ $a->strings["Pending registrations"] = "Anstehende Anmeldungen"; $a->strings["Version"] = "Version"; $a->strings["Active plugins"] = "Aktive Plugins"; $a->strings["Can not parse base url. Must have at least ://"] = "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen"; +$a->strings["RINO2 needs mcrypt php extension to work."] = "RINO2 benötigt die PHP Extension mcrypt."; $a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert."; $a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden."; $a->strings["No community page"] = "Keine Gemeinschaftsseite"; $a->strings["Public postings from users of this site"] = "Öffentliche Beiträge von Nutzer_innen dieser Seite"; $a->strings["Global community page"] = "Globale Gemeinschaftsseite"; +$a->strings["Never"] = "Niemals"; $a->strings["At post arrival"] = "Beim Empfang von Nachrichten"; $a->strings["Frequently"] = "immer wieder"; $a->strings["Hourly"] = "Stündlich"; $a->strings["Twice daily"] = "Zweimal täglich"; $a->strings["Daily"] = "Täglich"; +$a->strings["Disabled"] = "Deaktiviert"; $a->strings["Users, Global Contacts"] = "Nutzer, globale Kontakte"; $a->strings["Users, Global Contacts/fallback"] = "Nutzer, globale Kontakte / Fallback"; $a->strings["One month"] = "ein Monat"; @@ -512,8 +300,8 @@ $a->strings["Block public"] = "Öffentlichen Zugriff blockieren"; $a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."; $a->strings["Force publish"] = "Erzwinge Veröffentlichung"; $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."; -$a->strings["Global directory update URL"] = "URL für Updates beim weltweiten Verzeichnis"; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."; +$a->strings["Global directory URL"] = "URL des weltweiten Verzeichnisses"; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar."; $a->strings["Allow threaded items"] = "Erlaube Threads in Diskussionen"; $a->strings["Allow infinite level threading for items on this site."] = "Erlaube ein unendliches Level für Threads auf dieser Seite."; $a->strings["Private posts by default for new users"] = "Private Beiträge als Standard für neue Nutzer"; @@ -562,6 +350,8 @@ $a->strings["Maximum Load Average (Frontend)"] = "Maximum Load Average (Frontend $a->strings["Maximum system load before the frontend quits service - default 50."] = "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."; $a->strings["Periodical check of global contacts"] = "Regelmäßig globale Kontakte überprüfen"; $a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft."; +$a->strings["Days between requery"] = "Tage zwischen erneuten Abfragen"; +$a->strings["Number of days after which a server is requeried for his contacts."] = "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll."; $a->strings["Discover contacts from other servers"] = "Neue Kontakte auf anderen Servern entdecken"; $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'."] = "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für aältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'."; $a->strings["Timeframe for fetching global contacts"] = "Zeitfenster für globale Kontakte"; @@ -632,9 +422,12 @@ $a->strings["select all"] = "Alle auswählen"; $a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten"; $a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung"; $a->strings["Request date"] = "Anfragedatum"; +$a->strings["Name"] = "Name"; $a->strings["Email"] = "E-Mail"; $a->strings["No registrations."] = "Keine Neuanmeldungen."; $a->strings["Deny"] = "Verwehren"; +$a->strings["Block"] = "Sperren"; +$a->strings["Unblock"] = "Entsperren"; $a->strings["Site admin"] = "Seitenadministrator"; $a->strings["Account expired"] = "Account ist abgelaufen"; $a->strings["New User"] = "Neuer Nutzer"; @@ -654,6 +447,7 @@ $a->strings["Plugin %s enabled."] = "Plugin %s aktiviert."; $a->strings["Disable"] = "Ausschalten"; $a->strings["Enable"] = "Einschalten"; $a->strings["Toggle"] = "Umschalten"; +$a->strings["Settings"] = "Einstellungen"; $a->strings["Author: "] = "Autor:"; $a->strings["Maintainer: "] = "Betreuer:"; $a->strings["No themes found."] = "Keine Themen gefunden."; @@ -666,39 +460,83 @@ $a->strings["Enable Debugging"] = "Protokoll führen"; $a->strings["Log file"] = "Protokolldatei"; $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."; $a->strings["Log level"] = "Protokoll-Level"; +$a->strings["Update now"] = "Jetzt aktualisieren"; $a->strings["Close"] = "Schließen"; $a->strings["FTP Host"] = "FTP Host"; $a->strings["FTP Path"] = "FTP Pfad"; $a->strings["FTP User"] = "FTP Nutzername"; $a->strings["FTP Password"] = "FTP Passwort"; -$a->strings["Search Results For: %s"] = "Suchergebnisse für: %s"; -$a->strings["Remove term"] = "Begriff entfernen"; -$a->strings["Saved Searches"] = "Gespeicherte Suchen"; -$a->strings["add"] = "hinzufügen"; -$a->strings["Commented Order"] = "Neueste Kommentare"; -$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren"; -$a->strings["Posted Order"] = "Neueste Beiträge"; -$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren"; -$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht"; -$a->strings["New"] = "Neue"; -$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum"; -$a->strings["Shared Links"] = "Geteilte Links"; -$a->strings["Interesting Links"] = "Interessante Links"; -$a->strings["Starred"] = "Markierte"; -$a->strings["Favourite Posts"] = "Favorisierte Beiträge"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.", - 1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.", +$a->strings["New Message"] = "Neue Nachricht"; +$a->strings["No recipient selected."] = "Kein Empfänger gewählt."; +$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden."; +$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden."; +$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen."; +$a->strings["Message sent."] = "Nachricht gesendet."; +$a->strings["Messages"] = "Nachrichten"; +$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?"; +$a->strings["Message deleted."] = "Nachricht gelöscht."; +$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; +$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:"; +$a->strings["Send Private Message"] = "Private Nachricht senden"; +$a->strings["To:"] = "An:"; +$a->strings["Subject:"] = "Betreff:"; +$a->strings["Your message:"] = "Deine Nachricht:"; +$a->strings["Upload photo"] = "Foto hochladen"; +$a->strings["Insert web link"] = "Einen Link einfügen"; +$a->strings["No messages."] = "Keine Nachrichten."; +$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s"; +$a->strings["You and %s"] = "Du und %s"; +$a->strings["%s and You"] = "%s und Du"; +$a->strings["Delete conversation"] = "Unterhaltung löschen"; +$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d Nachricht", + 1 => "%d Nachrichten", ); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."; -$a->strings["No such group"] = "Es gibt keine solche Gruppe"; -$a->strings["Group is empty"] = "Gruppe ist leer"; -$a->strings["Group: %s"] = "Gruppe: %s"; -$a->strings["Contact: %s"] = "Kontakt: %s"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."; -$a->strings["Invalid contact."] = "Ungültiger Kontakt."; -$a->strings["Friends of %s"] = "Freunde von %s"; -$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen."; +$a->strings["Message not available."] = "Nachricht nicht verfügbar."; +$a->strings["Delete message"] = "Nachricht löschen"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; +$a->strings["Send Reply"] = "Antwort senden"; +$a->strings["Item not found"] = "Beitrag nicht gefunden"; +$a->strings["Edit post"] = "Beitrag bearbeiten"; +$a->strings["Save"] = "Speichern"; +$a->strings["upload photo"] = "Bild hochladen"; +$a->strings["Attach file"] = "Datei anhängen"; +$a->strings["attach file"] = "Datei anhängen"; +$a->strings["web link"] = "Weblink"; +$a->strings["Insert video link"] = "Video-Adresse einfügen"; +$a->strings["video link"] = "Video-Link"; +$a->strings["Insert audio link"] = "Audio-Adresse einfügen"; +$a->strings["audio link"] = "Audio-Link"; +$a->strings["Set your location"] = "Deinen Standort festlegen"; +$a->strings["set location"] = "Ort setzen"; +$a->strings["Clear browser location"] = "Browser-Standort leeren"; +$a->strings["clear location"] = "Ort löschen"; +$a->strings["Permission settings"] = "Berechtigungseinstellungen"; +$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen"; +$a->strings["Public post"] = "Öffentlicher Beitrag"; +$a->strings["Set title"] = "Titel setzen"; +$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com"; +$a->strings["Profile not found."] = "Profil nicht gefunden."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."; +$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich."; +$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: "; +$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen."; +$a->strings["Remote site reported: "] = "Gegenstelle meldet: "; +$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."; +$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen."; +$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet"; +$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden"; +$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."; +$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."; +$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."; +$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."; +$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten"; $a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt."; $a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."; $a->strings["l, F j"] = "l, F j"; @@ -718,134 +556,306 @@ $a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpasse $a->strings["Description:"] = "Beschreibung"; $a->strings["Title:"] = "Titel:"; $a->strings["Share this event"] = "Veranstaltung teilen"; -$a->strings["Preview"] = "Vorschau"; -$a->strings["Select"] = "Auswählen"; -$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten."; -$a->strings["%s from %s"] = "%s von %s"; -$a->strings["View in context"] = "Im Zusammenhang betrachten"; -$a->strings["%d comment"] = array( - 0 => "%d Kommentar", - 1 => "%d Kommentare", -); -$a->strings["comment"] = array( - 0 => "Kommentar", - 1 => "Kommentare", -); -$a->strings["show more"] = "mehr anzeigen"; -$a->strings["Private Message"] = "Private Nachricht"; -$a->strings["I like this (toggle)"] = "Ich mag das (toggle)"; -$a->strings["like"] = "mag ich"; -$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)"; -$a->strings["dislike"] = "mag ich nicht"; -$a->strings["Share this"] = "Weitersagen"; -$a->strings["share"] = "Teilen"; -$a->strings["This is you"] = "Das bist Du"; -$a->strings["Comment"] = "Kommentar"; -$a->strings["Bold"] = "Fett"; -$a->strings["Italic"] = "Kursiv"; -$a->strings["Underline"] = "Unterstrichen"; -$a->strings["Quote"] = "Zitat"; -$a->strings["Code"] = "Code"; -$a->strings["Image"] = "Bild"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Edit"] = "Bearbeiten"; -$a->strings["add star"] = "markieren"; -$a->strings["remove star"] = "Markierung entfernen"; -$a->strings["toggle star status"] = "Markierung umschalten"; -$a->strings["starred"] = "markiert"; -$a->strings["add tag"] = "Tag hinzufügen"; -$a->strings["save to folder"] = "In Ordner speichern"; -$a->strings["to"] = "zu"; -$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; -$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; -$a->strings["Remove My Account"] = "Konto löschen"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."; -$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:"; -$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup"; -$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert."; -$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden."; -$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\"."; -$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet."; -$a->strings["System check"] = "Systemtest"; -$a->strings["Check again"] = "Noch einmal testen"; -$a->strings["Database connection"] = "Datenbankverbindung"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."; -$a->strings["Database Server Name"] = "Datenbank-Server"; -$a->strings["Database Login Name"] = "Datenbank-Nutzer"; -$a->strings["Database Login Password"] = "Datenbank-Passwort"; -$a->strings["Database Name"] = "Datenbank-Name"; -$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."; -$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite"; -$a->strings["Site settings"] = "Server-Einstellungen"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'"; -$a->strings["PHP executable path"] = "Pfad zu PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."; -$a->strings["Command line PHP"] = "Kommandozeilen-PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"; -$a->strings["Found PHP version: "] = "Gefundene PHP Version:"; -$a->strings["PHP cli binary"] = "PHP CLI Binary"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."; -$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."; -$a->strings["Generate encryption keys"] = "Schlüssel erzeugen"; -$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul"; -$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul"; -$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul"; -$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul"; -$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul"; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."; -$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."; -$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."; -$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."; -$a->strings["Url rewrite is working"] = "URL rewrite funktioniert"; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."; -$a->strings["

What next

"] = "

Wie geht es weiter?

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."; +$a->strings["Photos"] = "Bilder"; +$a->strings["Files"] = "Dateien"; +$a->strings["Welcome to %s"] = "Willkommen zu %s"; +$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar."; +$a->strings["Visible to:"] = "Sichtbar für:"; $a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."; $a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen."; $a->strings["No recipient."] = "Kein Empfänger."; $a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."; +$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]"; +$a->strings["Edit contact"] = "Kontakt bearbeiten"; +$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind"; +$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version"; +$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren."; +$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; +$a->strings["the bugtracker at github"] = "dem Bugtracker auf github"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"; +$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps"; +$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert"; +$a->strings["Remove My Account"] = "Konto löschen"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."; +$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:"; +$a->strings["Invalid request."] = "Ungültige Anfrage"; +$a->strings["Image exceeds size limit of %s"] = "Bildgröße überschreitet das Limit von %s"; +$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten."; +$a->strings["Wall Photos"] = "Pinnwand-Bilder"; +$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert."; +$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren"; +$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"; +$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt"; +$a->strings["Contact Photos"] = "Kontaktbilder"; +$a->strings["Photo Albums"] = "Fotoalben"; +$a->strings["Recent Photos"] = "Neueste Fotos"; +$a->strings["Upload New Photos"] = "Neue Fotos hochladen"; +$a->strings["everybody"] = "jeder"; +$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar"; +$a->strings["Profile Photos"] = "Profilbilder"; +$a->strings["Album not found."] = "Album nicht gefunden."; +$a->strings["Delete Album"] = "Album löschen"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"; +$a->strings["Delete Photo"] = "Foto löschen"; +$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt"; +$a->strings["a photo"] = "einem Foto"; +$a->strings["Image file is empty."] = "Bilddatei ist leer."; +$a->strings["No photos selected"] = "Keine Bilder ausgewählt"; +$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."; +$a->strings["Upload Photos"] = "Bilder hochladen"; +$a->strings["New album name: "] = "Name des neuen Albums: "; +$a->strings["or existing album name: "] = "oder existierender Albumname: "; +$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen"; +$a->strings["Permissions"] = "Berechtigungen"; +$a->strings["Show to Groups"] = "Zeige den Gruppen"; +$a->strings["Show to Contacts"] = "Zeige den Kontakten"; +$a->strings["Private Photo"] = "Privates Foto"; +$a->strings["Public Photo"] = "Öffentliches Foto"; +$a->strings["Edit Album"] = "Album bearbeiten"; +$a->strings["Show Newest First"] = "Zeige neueste zuerst"; +$a->strings["Show Oldest First"] = "Zeige älteste zuerst"; +$a->strings["View Photo"] = "Foto betrachten"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."; +$a->strings["Photo not available"] = "Foto nicht verfügbar"; +$a->strings["View photo"] = "Fotos ansehen"; +$a->strings["Edit photo"] = "Foto bearbeiten"; +$a->strings["Use as profile photo"] = "Als Profilbild verwenden"; +$a->strings["View Full Size"] = "Betrachte Originalgröße"; +$a->strings["Tags: "] = "Tags: "; +$a->strings["[Remove any tag]"] = "[Tag entfernen]"; +$a->strings["New album name"] = "Name des neuen Albums"; +$a->strings["Caption"] = "Bildunterschrift"; +$a->strings["Add a Tag"] = "Tag hinzufügen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Do not rotate"] = "Nicht rotieren"; +$a->strings["Rotate CW (right)"] = "Drehen US (rechts)"; +$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; +$a->strings["Private photo"] = "Privates Foto"; +$a->strings["Public photo"] = "Öffentliches Foto"; +$a->strings["Share"] = "Teilen"; +$a->strings["View Album"] = "Album betrachten"; +$a->strings["No profile"] = "Kein Profil"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."; +$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; +$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."; +$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): "; +$a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"; +$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; +$a->strings["Your invitation ID: "] = "ID Deiner Einladung: "; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): "; +$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: "; +$a->strings["New Password:"] = "Neues Passwort:"; +$a->strings["Leave empty for an auto generated password."] = "Leer lassen um das Passwort automatisch zu generieren."; +$a->strings["Confirm:"] = "Bestätigen:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@\$sitename' sein."; +$a->strings["Choose a nickname: "] = "Spitznamen wählen: "; +$a->strings["Register"] = "Registrieren"; +$a->strings["Import"] = "Import"; +$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz"; +$a->strings["No valid account found."] = "Kein gültiges Konto gefunden."; +$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast."; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s"; +$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."; +$a->strings["Password Reset"] = "Passwort zurücksetzen"; +$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt."; +$a->strings["Your new password is"] = "Dein neues Passwort lautet"; +$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann"; +$a->strings["click here to login"] = "hier klicken, um Dich anzumelden"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Du kannst das Passwort in den Einstellungen ändern, sobald Du Dich erfolgreich angemeldet hast."; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)."; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."; +$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert"; +$a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."; +$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:"; +$a->strings["Reset"] = "Zurücksetzen"; +$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet"; +$a->strings["Item not available."] = "Beitrag nicht verfügbar."; +$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden."; +$a->strings["Applications"] = "Anwendungen"; +$a->strings["No installed applications."] = "Keine Applikationen installiert."; $a->strings["Help:"] = "Hilfe:"; $a->strings["Help"] = "Hilfe"; -$a->strings["Not Found"] = "Nicht gefunden"; -$a->strings["Page not found."] = "Seite nicht gefunden."; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen"; -$a->strings["Welcome to %s"] = "Willkommen zu %s"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."; -$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?"; -$a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s"; -$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen."; -$a->strings["Profile Match"] = "Profilübereinstimmungen"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."; -$a->strings["is interested in:"] = "ist interessiert an:"; -$a->strings["link"] = "Link"; -$a->strings["Not available."] = "Nicht verfügbar."; -$a->strings["Community"] = "Gemeinschaft"; +$a->strings["%d contact edited."] = array( + 0 => "%d Kontakt bearbeitet.", + 1 => "%d Kontakte bearbeitet", +); +$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen."; +$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden."; +$a->strings["Contact updated."] = "Kontakt aktualisiert."; +$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert"; +$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben"; +$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert"; +$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert"; +$a->strings["Contact has been archived"] = "Kontakt wurde archiviert"; +$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt"; +$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?"; +$a->strings["Contact has been removed."] = "Kontakt wurde entfernt."; +$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft"; +$a->strings["You are sharing with %s"] = "Du teilst mit %s"; +$a->strings["%s is sharing with you"] = "%s teilt mit Dir"; +$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar."; +$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)"; +$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)"; +$a->strings["Suggest friends"] = "Kontakte vorschlagen"; +$a->strings["Network type: %s"] = "Netzwerktyp: %s"; +$a->strings["%d contact in common"] = array( + 0 => "%d gemeinsamer Kontakt", + 1 => "%d gemeinsame Kontakte", +); +$a->strings["View all contacts"] = "Alle Kontakte anzeigen"; +$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten"; +$a->strings["Unignore"] = "Ignorieren aufheben"; +$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten"; +$a->strings["Unarchive"] = "Aus Archiv zurückholen"; +$a->strings["Archive"] = "Archivieren"; +$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten"; +$a->strings["Repair"] = "Reparieren"; +$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen"; +$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!"; +$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen"; +$a->strings["Fetch information"] = "Beziehe Information"; +$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte"; +$a->strings["Contact Editor"] = "Kontakt Editor"; +$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."; +$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen"; +$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten"; +$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten"; +$a->strings["Ignore contact"] = "Ignoriere den Kontakt"; +$a->strings["Repair URL settings"] = "URL Einstellungen reparieren"; +$a->strings["View conversations"] = "Unterhaltungen anzeigen"; +$a->strings["Delete contact"] = "Lösche den Kontakt"; +$a->strings["Last update:"] = "Letzte Aktualisierung: "; +$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; +$a->strings["Currently blocked"] = "Derzeit geblockt"; +$a->strings["Currently ignored"] = "Derzeit ignoriert"; +$a->strings["Currently archived"] = "Momentan archiviert"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein"; +$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen"; +$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."; +$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte "; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"; +$a->strings["Profile URL"] = "Profil URL"; +$a->strings["Suggestions"] = "Kontaktvorschläge"; +$a->strings["Suggest potential friends"] = "Freunde vorschlagen"; +$a->strings["All Contacts"] = "Alle Kontakte"; +$a->strings["Show all contacts"] = "Alle Kontakte anzeigen"; +$a->strings["Unblocked"] = "Ungeblockt"; +$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen"; +$a->strings["Blocked"] = "Geblockt"; +$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen"; +$a->strings["Ignored"] = "Ignoriert"; +$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen"; +$a->strings["Archived"] = "Archiviert"; +$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen"; +$a->strings["Hidden"] = "Verborgen"; +$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen"; +$a->strings["Contacts"] = "Kontakte"; +$a->strings["Search your contacts"] = "Suche in deinen Kontakten"; +$a->strings["Finding: "] = "Funde: "; +$a->strings["Find"] = "Finde"; +$a->strings["Update"] = "Aktualisierungen"; +$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft"; +$a->strings["is a fan of yours"] = "ist ein Fan von dir"; +$a->strings["you are a fan of"] = "Du bist Fan von"; +$a->strings["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?"; +$a->strings["Delete Video"] = "Video Löschen"; +$a->strings["No videos selected"] = "Keine Videos ausgewählt"; +$a->strings["Recent Videos"] = "Neueste Videos"; +$a->strings["Upload New Videos"] = "Neues Video hochladen"; +$a->strings["Common Friends"] = "Gemeinsame Freunde"; +$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; +$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt."; +$a->strings["Contact added"] = "Kontakt hinzugefügt"; +$a->strings["Login"] = "Anmeldung"; +$a->strings["The post was created"] = "Der Beitrag wurde angelegt"; +$a->strings["Move account"] = "Account umziehen"; +$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"; +$a->strings["Account file"] = "Account Datei"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s"; +$a->strings["Friends of %s"] = "Freunde von %s"; +$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen."; +$a->strings["Tag removed"] = "Tag entfernt"; +$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen"; +$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: "; +$a->strings["Remove"] = "Entfernen"; +$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica"; +$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."; +$a->strings["Getting Started"] = "Einstieg"; +$a->strings["Friendica Walk-Through"] = "Friendica Rundgang"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."; +$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können."; +$a->strings["Profile"] = "Profil"; +$a->strings["Upload Profile Photo"] = "Profilbild hochladen"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."; +$a->strings["Edit Your Profile"] = "Editiere dein Profil"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein Standard Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils."; +$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."; +$a->strings["Connecting"] = "Verbindungen knüpfen"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn Du im Augenblick ein Facebook-Konto hast und (optional) Deine Facebook-Freunde und -Unterhaltungen importieren willst."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Wenn dies Dein privater Server ist, könnte die Installation des Facebook Connectors Deinen Umzug ins freie soziale Netz angenehmer gestalten."; +$a->strings["Importing Emails"] = "Emails Importieren"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willst."; +$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein."; +$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis Deiner Friendica Instanz"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."; +$a->strings["Finding New People"] = "Neue Leute kennenlernen"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."; +$a->strings["Groups"] = "Gruppen"; +$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald Du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."; +$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."; +$a->strings["Getting Help"] = "Hilfe bekommen"; +$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."; +$a->strings["Remove term"] = "Begriff entfernen"; +$a->strings["Saved Searches"] = "Gespeicherte Suchen"; +$a->strings["Search"] = "Suche"; $a->strings["No results."] = "Keine Ergebnisse."; -$a->strings["everybody"] = "jeder"; +$a->strings["Items tagged with: %s"] = "Beiträge markiert mit: %s"; +$a->strings["Search results for: %s"] = "Suchergebnisse für: %s"; +$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht."; +$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse."; +$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."; +$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen."; +$a->strings["%d message sent."] = array( + 0 => "%d Nachricht gesendet.", + 1 => "%d Nachrichten gesendet.", +); +$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."; +$a->strings["Send invitations"] = "Einladungen senden"; +$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"; $a->strings["Additional features"] = "Zusätzliche Features"; $a->strings["Display"] = "Anzeige"; $a->strings["Social Networks"] = "Soziale Netzwerke"; @@ -891,8 +901,10 @@ $a->strings["Disable intelligent shortening"] = "Intelligentes Link kürzen auss $a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt."; $a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"; $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."] = "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,."; +$a->strings["Your legacy GNU Social account"] = "Dein alter 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."] = "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden."; +$a->strings["Repair OStatus subscriptions"] = "OStatus Abonnements reparieren"; $a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s"; -$a->strings["Diaspora"] = "Diaspora"; $a->strings["enabled"] = "eingeschaltet"; $a->strings["disabled"] = "ausgeschaltet"; $a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)"; @@ -961,8 +973,6 @@ $a->strings["Expire photos:"] = "Fotos verfallen lassen:"; $a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen:"; $a->strings["Account Settings"] = "Kontoeinstellungen"; $a->strings["Password Settings"] = "Passwort-Einstellungen"; -$a->strings["New Password:"] = "Neues Passwort:"; -$a->strings["Confirm:"] = "Bestätigen:"; $a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"; $a->strings["Current Password:"] = "Aktuelles Passwort:"; $a->strings["Your current password to confirm the changes"] = "Dein aktuelles Passwort um die Änderungen zu bestätigen"; @@ -978,8 +988,6 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Freundschafts $a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)"; $a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge"; $a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)"; -$a->strings["Show to Groups"] = "Zeige den Gruppen"; -$a->strings["Show to Contacts"] = "Zeige den Kontakten"; $a->strings["Default Private Post"] = "Privater Standardbeitrag"; $a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag"; $a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge"; @@ -1007,94 +1015,10 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ve $a->strings["Relocate"] = "Umziehen"; $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button."; $a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden"; -$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."; -$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden", - 1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden", -); -$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen."; -$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler."; -$a->strings["Profile unavailable."] = "Profil nicht verfügbar."; -$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten."; -$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."; -$a->strings["Invalid locator"] = "Ungültiger Locator"; -$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse."; -$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."; -$a->strings["Unable to resolve your name at the provided location."] = "Konnte Deinen Namen an der angegebenen Stelle nicht finden."; -$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt."; -$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s befreundet bist."; -$a->strings["Invalid profile URL."] = "Ungültige Profil-URL."; -$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL."; -$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet."; -$a->strings["Please login to confirm introduction."] = "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an."; -$a->strings["Confirm"] = "Bestätigen"; -$a->strings["Hide this contact"] = "Verberge diesen Kontakt"; -$a->strings["Welcome home %s."] = "Willkommen zurück %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s."; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten."; -$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste."; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; -$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."; -$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; -$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."; -$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): "; -$a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"; -$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; -$a->strings["Your invitation ID: "] = "ID Deiner Einladung: "; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): "; -$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: "; -$a->strings["Leave empty for an auto generated password."] = "Leer lassen um das Passwort automatisch zu generieren."; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@\$sitename' sein."; -$a->strings["Choose a nickname: "] = "Spitznamen wählen: "; -$a->strings["Register"] = "Registrieren"; -$a->strings["Import"] = "Import"; -$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz"; -$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet"; -$a->strings["Search"] = "Suche"; -$a->strings["Items tagged with: %s"] = "Beiträge markiert mit: %s"; -$a->strings["Search results for: %s"] = "Suchergebnisse für: %s"; -$a->strings["Global Directory"] = "Weltweites Verzeichnis"; -$a->strings["Find on this site"] = "Auf diesem Server suchen"; -$a->strings["Site Directory"] = "Verzeichnis"; -$a->strings["Age: "] = "Alter: "; -$a->strings["Gender: "] = "Geschlecht:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein)."; -$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden."; -$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite"; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"; -$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager"; -$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite"; -$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte"; -$a->strings["Add"] = "Hinzufügen"; -$a->strings["No entries."] = "Keine Einträge."; -$a->strings["Common Friends"] = "Gemeinsame Freunde"; -$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; -$a->strings["Export account"] = "Account exportieren"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."; -$a->strings["Export all"] = "Alles exportieren"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s"; -$a->strings["Mood"] = "Stimmung"; -$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden"; -$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?"; -$a->strings["Friend Suggestions"] = "Kontaktvorschläge"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."; -$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen"; +$a->strings["Item has been removed."] = "Eintrag wurde entfernt."; +$a->strings["People Search - %s"] = "Personensuche - %s"; +$a->strings["Connect"] = "Verbinden"; +$a->strings["No matches"] = "Keine Übereinstimmungen"; $a->strings["Profile deleted."] = "Profil gelöscht."; $a->strings["Profile-"] = "Profil-"; $a->strings["New profile created."] = "Neues Profil angelegt."; @@ -1169,47 +1093,78 @@ $a->strings["Love/romance"] = "Liebe/Romantik"; $a->strings["Work/employment"] = "Arbeit/Anstellung"; $a->strings["School/education"] = "Schule/Ausbildung"; $a->strings["This is your public profile.
It may be visible to anybody using the internet."] = "Dies ist Dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein."; +$a->strings["Age: "] = "Alter: "; $a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile"; $a->strings["Change profile photo"] = "Profilbild ändern"; $a->strings["Create New Profile"] = "Neues Profil anlegen"; $a->strings["Profile Image"] = "Profilbild"; $a->strings["visible to everybody"] = "sichtbar für jeden"; $a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; -$a->strings["Item not found"] = "Beitrag nicht gefunden"; -$a->strings["Edit post"] = "Beitrag bearbeiten"; -$a->strings["upload photo"] = "Bild hochladen"; -$a->strings["Attach file"] = "Datei anhängen"; -$a->strings["attach file"] = "Datei anhängen"; -$a->strings["web link"] = "Weblink"; -$a->strings["Insert video link"] = "Video-Adresse einfügen"; -$a->strings["video link"] = "Video-Link"; -$a->strings["Insert audio link"] = "Audio-Adresse einfügen"; -$a->strings["audio link"] = "Audio-Link"; -$a->strings["Set your location"] = "Deinen Standort festlegen"; -$a->strings["set location"] = "Ort setzen"; -$a->strings["Clear browser location"] = "Browser-Standort leeren"; -$a->strings["clear location"] = "Ort löschen"; -$a->strings["Permission settings"] = "Berechtigungseinstellungen"; -$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen"; -$a->strings["Public post"] = "Öffentlicher Beitrag"; -$a->strings["Set title"] = "Titel setzen"; -$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com"; -$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version"; -$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren."; -$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; -$a->strings["the bugtracker at github"] = "dem Bugtracker auf github"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"; -$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps"; -$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert"; -$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren"; -$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"; -$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"; -$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar."; -$a->strings["Visible to:"] = "Sichtbar für:"; +$a->strings["link"] = "Link"; +$a->strings["Export account"] = "Account exportieren"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."; +$a->strings["Export all"] = "Alles exportieren"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."; +$a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten"; +$a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht"; +$a->strings["{0} requested registration"] = "{0} möchte sich registrieren"; +$a->strings["Nothing new here"] = "Keine Neuigkeiten"; +$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen"; +$a->strings["Not available."] = "Nicht verfügbar."; +$a->strings["Community"] = "Gemeinschaft"; +$a->strings["Save to Folder:"] = "In diesem Ordner speichern:"; +$a->strings["- select -"] = "- auswählen -"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."; +$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?"; +$a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s"; +$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen."; +$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner."; +$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit"; +$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"; +$a->strings["Visible To"] = "Sichtbar für"; +$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)"; +$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?"; +$a->strings["Friend Suggestions"] = "Kontaktvorschläge"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."; +$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen"; +$a->strings["Access denied."] = "Zugriff verweigert."; +$a->strings["Resubsribing to OStatus contacts"] = "Erneuern der OStatus Abonements"; +$a->strings["Error"] = "Fehler"; +$a->strings["Done"] = "Erledigt"; +$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen"; +$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."; +$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: "; +$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden."; +$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite"; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"; +$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager"; +$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite"; +$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte"; +$a->strings["Add"] = "Hinzufügen"; +$a->strings["No entries."] = "Keine Einträge."; +$a->strings["No contacts."] = "Keine Kontakte."; +$a->strings["View Contacts"] = "Kontakte anzeigen"; $a->strings["Personal Notes"] = "Persönliche Notizen"; +$a->strings["Poke/Prod"] = "Anstupsen"; +$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen"; +$a->strings["Recipient"] = "Empfänger"; +$a->strings["Choose what you wish to do to recipient"] = "Was willst Du mit dem Empfänger machen:"; +$a->strings["Make this post private"] = "Diesen Beitrag privat machen"; +$a->strings["Global Directory"] = "Weltweites Verzeichnis"; +$a->strings["Find on this site"] = "Auf diesem Server suchen"; +$a->strings["Site Directory"] = "Verzeichnis"; +$a->strings["Gender: "] = "Geschlecht:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein)."; +$a->strings["Subsribing to OStatus contacts"] = "OStatus Kontakten folgen"; +$a->strings["No contact provided."] = "Keine Kontakte gefunden."; +$a->strings["Couldn't fetch information for contact."] = "Konnte die Kontaktinformationen nicht einholen."; +$a->strings["Couldn't fetch friends for contact."] = "Konnte die Kontaktliste des Kontakts nicht abfragen."; +$a->strings["success"] = "Erfolg"; +$a->strings["failed"] = "Fehlgeschlagen"; $a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i"; $a->strings["Time Conversion"] = "Zeitumrechnung"; $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."; @@ -1217,87 +1172,226 @@ $a->strings["UTC time: %s"] = "UTC Zeit: %s"; $a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s"; $a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s"; $a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:"; -$a->strings["Poke/Prod"] = "Anstupsen"; -$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen"; -$a->strings["Recipient"] = "Empfänger"; -$a->strings["Choose what you wish to do to recipient"] = "Was willst Du mit dem Empfänger machen:"; -$a->strings["Make this post private"] = "Diesen Beitrag privat machen"; -$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht."; -$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse."; -$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."; -$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen."; -$a->strings["%d message sent."] = array( - 0 => "%d Nachricht gesendet.", - 1 => "%d Nachrichten gesendet.", -); -$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."; -$a->strings["Send invitations"] = "Einladungen senden"; -$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"; -$a->strings["Contact Photos"] = "Kontaktbilder"; -$a->strings["Photo Albums"] = "Fotoalben"; -$a->strings["Recent Photos"] = "Neueste Fotos"; -$a->strings["Upload New Photos"] = "Neue Fotos hochladen"; -$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar"; -$a->strings["Album not found."] = "Album nicht gefunden."; -$a->strings["Delete Album"] = "Album löschen"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"; -$a->strings["Delete Photo"] = "Foto löschen"; -$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt"; -$a->strings["a photo"] = "einem Foto"; -$a->strings["Image file is empty."] = "Bilddatei ist leer."; -$a->strings["No photos selected"] = "Keine Bilder ausgewählt"; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."; -$a->strings["Upload Photos"] = "Bilder hochladen"; -$a->strings["New album name: "] = "Name des neuen Albums: "; -$a->strings["or existing album name: "] = "oder existierender Albumname: "; -$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen"; -$a->strings["Permissions"] = "Berechtigungen"; -$a->strings["Private Photo"] = "Privates Foto"; -$a->strings["Public Photo"] = "Öffentliches Foto"; -$a->strings["Edit Album"] = "Album bearbeiten"; -$a->strings["Show Newest First"] = "Zeige neueste zuerst"; -$a->strings["Show Oldest First"] = "Zeige älteste zuerst"; -$a->strings["View Photo"] = "Foto betrachten"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."; -$a->strings["Photo not available"] = "Foto nicht verfügbar"; -$a->strings["View photo"] = "Fotos ansehen"; -$a->strings["Edit photo"] = "Foto bearbeiten"; -$a->strings["Use as profile photo"] = "Als Profilbild verwenden"; -$a->strings["View Full Size"] = "Betrachte Originalgröße"; -$a->strings["Tags: "] = "Tags: "; -$a->strings["[Remove any tag]"] = "[Tag entfernen]"; -$a->strings["New album name"] = "Name des neuen Albums"; -$a->strings["Caption"] = "Bildunterschrift"; -$a->strings["Add a Tag"] = "Tag hinzufügen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Do not rotate"] = "Nicht rotieren"; -$a->strings["Rotate CW (right)"] = "Drehen US (rechts)"; -$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; -$a->strings["Private photo"] = "Privates Foto"; -$a->strings["Public photo"] = "Öffentliches Foto"; -$a->strings["Share"] = "Teilen"; +$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht."; +$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl."; +$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."; +$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden"; +$a->strings["Upload File:"] = "Datei hochladen:"; +$a->strings["Select a profile:"] = "Profil auswählen:"; +$a->strings["Upload"] = "Hochladen"; +$a->strings["or"] = "oder"; +$a->strings["skip this step"] = "diesen Schritt überspringen"; +$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben"; +$a->strings["Crop Image"] = "Bild zurechtschneiden"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."; +$a->strings["Done Editing"] = "Bearbeitung abgeschlossen"; +$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen."; +$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup"; +$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert."; +$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden."; +$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\"."; +$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet."; +$a->strings["System check"] = "Systemtest"; +$a->strings["Check again"] = "Noch einmal testen"; +$a->strings["Database connection"] = "Datenbankverbindung"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."; +$a->strings["Database Server Name"] = "Datenbank-Server"; +$a->strings["Database Login Name"] = "Datenbank-Nutzer"; +$a->strings["Database Login Password"] = "Datenbank-Passwort"; +$a->strings["Database Name"] = "Datenbank-Name"; +$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."; +$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite"; +$a->strings["Site settings"] = "Server-Einstellungen"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'"; +$a->strings["PHP executable path"] = "Pfad zu PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."; +$a->strings["Command line PHP"] = "Kommandozeilen-PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"; +$a->strings["Found PHP version: "] = "Gefundene PHP Version:"; +$a->strings["PHP cli binary"] = "PHP CLI Binary"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."; +$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."; +$a->strings["Generate encryption keys"] = "Schlüssel erzeugen"; +$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul"; +$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul"; +$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul"; +$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul"; +$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul"; +$a->strings["mcrypt PHP module"] = "PHP mcrypt Modul"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."; +$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das mcrypt Modul von PHP ist nicht installiert"; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."; +$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."; +$a->strings["Url rewrite is working"] = "URL rewrite funktioniert"; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."; +$a->strings["

What next

"] = "

Wie geht es weiter?

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."; $a->strings["Not Extended"] = "Nicht erweitert."; +$a->strings["Group created."] = "Gruppe erstellt."; +$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen."; +$a->strings["Group not found."] = "Gruppe nicht gefunden."; +$a->strings["Group name changed."] = "Gruppenname geändert."; +$a->strings["Save Group"] = "Gruppe speichern"; +$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen."; +$a->strings["Group Name: "] = "Gruppenname:"; +$a->strings["Group removed."] = "Gruppe entfernt."; +$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen."; +$a->strings["Group Editor"] = "Gruppeneditor"; +$a->strings["Members"] = "Mitglieder"; +$a->strings["No such group"] = "Es gibt keine solche Gruppe"; +$a->strings["Group is empty"] = "Gruppe ist leer"; +$a->strings["Group: %s"] = "Gruppe: %s"; +$a->strings["View in context"] = "Im Zusammenhang betrachten"; $a->strings["Account approved."] = "Konto freigegeben."; $a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen"; $a->strings["Please login."] = "Bitte melde Dich an."; -$a->strings["Move account"] = "Account umziehen"; -$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"; -$a->strings["Account file"] = "Account Datei"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""; -$a->strings["Item not available."] = "Beitrag nicht verfügbar."; -$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden."; +$a->strings["Profile Match"] = "Profilübereinstimmungen"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."; +$a->strings["is interested in:"] = "ist interessiert an:"; +$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden."; +$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen."; +$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."; +$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest."; +$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht."; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s"; +$a->strings["Mood"] = "Stimmung"; +$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden"; +$a->strings["Search Results For: %s"] = "Suchergebnisse für: %s"; +$a->strings["add"] = "hinzufügen"; +$a->strings["Commented Order"] = "Neueste Kommentare"; +$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren"; +$a->strings["Posted Order"] = "Neueste Beiträge"; +$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren"; +$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht"; +$a->strings["New"] = "Neue"; +$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum"; +$a->strings["Shared Links"] = "Geteilte Links"; +$a->strings["Interesting Links"] = "Interessante Links"; +$a->strings["Starred"] = "Markierte"; +$a->strings["Favourite Posts"] = "Favorisierte Beiträge"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.", + 1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.", +); +$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."; +$a->strings["Contact: %s"] = "Kontakt: %s"; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."; +$a->strings["Invalid contact."] = "Ungültiger Kontakt."; +$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt."; +$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren."; +$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst."; +$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor"; +$a->strings["No mirroring"] = "Kein Spiegeln"; +$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge"; +$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge"; +$a->strings["Refetch contact data"] = "Kontaktdaten neu laden"; +$a->strings["Account Nickname"] = "Konto-Spitzname"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname"; +$a->strings["Account URL"] = "Konto-URL"; +$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen"; +$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen"; +$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen"; +$a->strings["Poll/Feed URL"] = "Pull/Feed-URL"; +$a->strings["New photo from this URL"] = "Neues Foto von dieser URL"; +$a->strings["Remote Self"] = "Entfernte Konten"; +$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."; +$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; +$a->strings["Your profile page"] = "Deine Profilseite"; +$a->strings["Your contacts"] = "Deine Kontakte"; +$a->strings["Your photos"] = "Deine Fotos"; +$a->strings["Your events"] = "Deine Ereignisse"; +$a->strings["Personal notes"] = "Persönliche Notizen"; +$a->strings["Your personal photos"] = "Deine privaten Fotos"; +$a->strings["Community Pages"] = "Foren"; +$a->strings["Community Profiles"] = "Community-Profile"; +$a->strings["Last users"] = "Letzte Nutzer"; +$a->strings["Last likes"] = "Zuletzt gemocht"; +$a->strings["event"] = "Veranstaltung"; +$a->strings["Last photos"] = "Letzte Fotos"; +$a->strings["Find Friends"] = "Freunde finden"; +$a->strings["Local Directory"] = "Lokales Verzeichnis"; +$a->strings["Similar Interests"] = "Ähnliche Interessen"; +$a->strings["Invite Friends"] = "Freunde einladen"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer"; +$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer"; +$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere"; +$a->strings["Connect Services"] = "Verbinde Dienste"; +$a->strings["don't show"] = "nicht zeigen"; +$a->strings["show"] = "zeigen"; +$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen"; +$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen"; +$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen"; +$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen"; +$a->strings["Set color scheme"] = "Wähle Farbschema"; +$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer"; +$a->strings["Set style"] = "Stil auswählen"; +$a->strings["Set colour scheme"] = "Farbschema wählen"; +$a->strings["default"] = "Standard"; +$a->strings["greenzero"] = "greenzero"; +$a->strings["purplezero"] = "purplezero"; +$a->strings["easterbunny"] = "easterbunny"; +$a->strings["darkzero"] = "darkzero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = "slackr"; +$a->strings["Variations"] = "Variationen"; +$a->strings["Alignment"] = "Ausrichtung"; +$a->strings["Left"] = "Links"; +$a->strings["Center"] = "Mitte"; +$a->strings["Color scheme"] = "Farbschema"; +$a->strings["Posts font size"] = "Schriftgröße in Beiträgen"; +$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"; +$a->strings["Set theme width"] = "Theme Breite festlegen"; +$a->strings["Click here to download"] = "Zum Download hier klicken"; +$a->strings["Create new pull request"] = "Neuer Pull Request"; +$a->strings["Reload active plugins"] = "Aktive Plugins neu laden"; +$a->strings["Drop contact"] = "Kontakt löschen"; +$a->strings["Public projects on this node"] = "Öffentliche Beiträge von Nutzer_innen dieser Seite"; +$a->strings["Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone."] = "Möchtest du das Projekt '%s' löschen?\\n\\nDies kann nicht rückgängig gemacht werden."; +$a->strings["Visibility"] = "Sichtbarkeit"; +$a->strings["Create"] = "Erstellen"; +$a->strings["No pull requests to show"] = "Keine Pull Requests zum Anzeigen vorhanden"; +$a->strings["opened by"] = "geöffnet von"; +$a->strings["closed"] = "Geschlossen"; +$a->strings["merged"] = "merged"; +$a->strings["Projects"] = "Projekte"; +$a->strings["add new"] = "neue hinzufügen"; +$a->strings["delete"] = "löschen"; +$a->strings["Clone this project:"] = "Dieses Projekt clonen"; +$a->strings["New pull request"] = "Neuer Pull Request"; +$a->strings["Can't show you the diff at the moment. Sorry"] = "Entschuldigung, aber ich kann dir die Unterschiede gerade nicht anzeigen."; $a->strings["Delete this item?"] = "Diesen Beitrag löschen?"; $a->strings["show fewer"] = "weniger anzeigen"; $a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."; @@ -1312,40 +1406,6 @@ $a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen"; $a->strings["terms of service"] = "Nutzungsbedingungen"; $a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung"; $a->strings["privacy policy"] = "Datenschutzerklärung"; -$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet."; -$a->strings["ignore thread"] = "Thread ignorieren"; -$a->strings["unignore thread"] = "Thread nicht mehr ignorieren"; -$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten"; -$a->strings["ignored"] = "Ignoriert"; -$a->strings["Categories:"] = "Kategorien:"; -$a->strings["Filed under:"] = "Abgelegt unter:"; -$a->strings["via"] = "via"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]"; -$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."; -$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."; -$a->strings["Logged out."] = "Abgemeldet."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."; -$a->strings["The error message was:"] = "Die Fehlermeldung lautete:"; -$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen"; -$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d Einladung verfügbar", - 1 => "%d Einladungen verfügbar", -); -$a->strings["Find People"] = "Leute finden"; -$a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; -$a->strings["Connect/Follow"] = "Verbinden/Folgen"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln"; -$a->strings["Similar Interests"] = "Ähnliche Interessen"; -$a->strings["Random Profile"] = "Zufälliges Profil"; -$a->strings["Invite Friends"] = "Freunde einladen"; -$a->strings["Networks"] = "Netzwerke"; -$a->strings["All Networks"] = "Alle Netzwerke"; -$a->strings["Saved Folders"] = "Gespeicherte Ordner"; -$a->strings["Everything"] = "Alles"; -$a->strings["Categories"] = "Kategorien"; $a->strings["General Features"] = "Allgemeine Features"; $a->strings["Multiple Profiles"] = "Mehrere Profile"; $a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen"; @@ -1380,6 +1440,7 @@ $a->strings["Tagging"] = "Tagging"; $a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."; $a->strings["Post Categories"] = "Beitragskategorien"; $a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen"; +$a->strings["Saved Folders"] = "Gespeicherte Ordner"; $a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren"; $a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'"; $a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"; @@ -1387,126 +1448,13 @@ $a->strings["Star Posts"] = "Beiträge Markieren"; $a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"; $a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten"; $a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"; -$a->strings["Connect URL missing."] = "Connect-URL fehlt"; -$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."; -$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen."; -$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden."; -$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."; -$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."; -$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen."; -$a->strings["following"] = "folgen"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."; -$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte"; -$a->strings["Everybody"] = "Alle Kontakte"; -$a->strings["edit"] = "bearbeiten"; -$a->strings["Edit group"] = "Gruppe bearbeiten"; -$a->strings["Create a new group"] = "Neue Gruppe erstellen"; -$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe"; -$a->strings["Miscellaneous"] = "Verschiedenes"; -$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD"; -$a->strings["never"] = "nie"; -$a->strings["less than a second ago"] = "vor weniger als einer Sekunde"; -$a->strings["year"] = "Jahr"; -$a->strings["years"] = "Jahre"; -$a->strings["month"] = "Monat"; -$a->strings["months"] = "Monate"; -$a->strings["week"] = "Woche"; -$a->strings["weeks"] = "Wochen"; -$a->strings["day"] = "Tag"; -$a->strings["days"] = "Tage"; -$a->strings["hour"] = "Stunde"; -$a->strings["hours"] = "Stunden"; -$a->strings["minute"] = "Minute"; -$a->strings["minutes"] = "Minuten"; -$a->strings["second"] = "Sekunde"; -$a->strings["seconds"] = "Sekunden"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her"; -$a->strings["%s's birthday"] = "%ss Geburtstag"; -$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s"; -$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden."; -$a->strings["Edit profile"] = "Profil bearbeiten"; -$a->strings["Message"] = "Nachricht"; -$a->strings["Profiles"] = "Profile"; -$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren"; -$a->strings["Network:"] = "Netzwerk"; -$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r"; -$a->strings["F d"] = "d. F"; -$a->strings["[today]"] = "[heute]"; -$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen"; -$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:"; -$a->strings["[No description]"] = "[keine Beschreibung]"; -$a->strings["Event Reminders"] = "Veranstaltungserinnerungen"; -$a->strings["Events this week:"] = "Veranstaltungen diese Woche"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Geburtstag:"; -$a->strings["Age:"] = "Alter:"; -$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s"; -$a->strings["Religion:"] = "Religion:"; -$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:"; -$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:"; -$a->strings["Musical interests:"] = "Musikalische Interessen:"; -$a->strings["Books, literature:"] = "Literatur/Bücher:"; -$a->strings["Television:"] = "Fernsehen:"; -$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:"; -$a->strings["Love/Romance:"] = "Liebesleben:"; -$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:"; -$a->strings["School/education:"] = "Schule/Ausbildung:"; -$a->strings["Status"] = "Status"; -$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; -$a->strings["Profile Details"] = "Profildetails"; -$a->strings["Videos"] = "Videos"; -$a->strings["Events and Calendar"] = "Ereignisse und Kalender"; -$a->strings["Only You Can See This"] = "Nur Du kannst das sehen"; -$a->strings["Post to Email"] = "An E-Mail senden"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."; -$a->strings["Visible to everybody"] = "Für jeden sichtbar"; -$a->strings["show"] = "zeigen"; -$a->strings["don't show"] = "nicht zeigen"; +$a->strings["Logged out."] = "Abgemeldet."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."; +$a->strings["The error message was:"] = "Die Fehlermeldung lautete:"; +$a->strings["Starts:"] = "Beginnt:"; +$a->strings["Finishes:"] = "Endet:"; $a->strings["[no subject]"] = "[kein Betreff]"; -$a->strings["stopped following"] = "wird nicht mehr gefolgt"; -$a->strings["Poke"] = "Anstupsen"; -$a->strings["View Status"] = "Pinnwand anschauen"; -$a->strings["View Profile"] = "Profil anschauen"; -$a->strings["View Photos"] = "Bilder anschauen"; -$a->strings["Network Posts"] = "Netzwerkbeiträge"; -$a->strings["Edit Contact"] = "Kontakt bearbeiten"; -$a->strings["Drop Contact"] = "Kontakt löschen"; -$a->strings["Send PM"] = "Private Nachricht senden"; -$a->strings["Welcome "] = "Willkommen "; -$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch."; -$a->strings["Welcome back "] = "Willkommen zurück "; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."; -$a->strings["event"] = "Veranstaltung"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; -$a->strings["post/item"] = "Nachricht/Beitrag"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert"; -$a->strings["remove"] = "löschen"; -$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; -$a->strings["Follow Thread"] = "Folge der Unterhaltung"; -$a->strings["%s likes this."] = "%s mag das."; -$a->strings["%s doesn't like this."] = "%s mag das nicht."; -$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; -$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; -$a->strings["and"] = "und"; -$a->strings[", and %d other people"] = " und %d andere"; -$a->strings["%s like this."] = "%s mögen das."; -$a->strings["%s don't like this."] = "%s mögen das nicht."; -$a->strings["Visible to everybody"] = "Für jedermann sichtbar"; -$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:"; -$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Where are you right now?"] = "Wo hältst Du Dich jetzt gerade auf?"; -$a->strings["Delete item(s)?"] = "Einträge löschen?"; -$a->strings["permissions"] = "Zugriffsrechte"; -$a->strings["Post to Groups"] = "Poste an Gruppe"; -$a->strings["Post to Contacts"] = "Poste an Kontakte"; -$a->strings["Private post"] = "Privater Beitrag"; -$a->strings["view full size"] = "Volle Größe anzeigen"; +$a->strings[" on Last.fm"] = " bei Last.fm"; $a->strings["newer"] = "neuer"; $a->strings["older"] = "älter"; $a->strings["prev"] = "vorige"; @@ -1578,84 +1526,10 @@ $a->strings["bytes"] = "Byte"; $a->strings["Click to open/close"] = "Zum öffnen/schließen klicken"; $a->strings["View on separate page"] = "Auf separater Seite ansehen"; $a->strings["view on separate page"] = "auf separater Seite ansehen"; -$a->strings["default"] = "Standard"; $a->strings["Select an alternate language"] = "Alternative Sprache auswählen"; $a->strings["activity"] = "Aktivität"; $a->strings["post"] = "Beitrag"; $a->strings["Item filed"] = "Beitrag abgelegt"; -$a->strings["Image/photo"] = "Bild/Foto"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["%s wrote the following post"] = "%s schrieb den folgenden Beitrag"; -$a->strings["$1 wrote:"] = "$1 hat geschrieben:"; -$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; -$a->strings["(no subject)"] = "(kein Betreff)"; -$a->strings["noreply"] = "noreply"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."; -$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert"; -$a->strings["Block immediately"] = "Sofort blockieren"; -$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller"; -$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung"; -$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos"; -$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen"; -$a->strings["Weekly"] = "Wöchentlich"; -$a->strings["Monthly"] = "Monatlich"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Zot!"] = "Zott"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/Chat"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Diaspora"; -$a->strings["Statusnet"] = "StatusNet"; -$a->strings["App.net"] = "App.net"; -$a->strings["Redmatrix"] = "Redmatrix"; -$a->strings[" on Last.fm"] = " bei Last.fm"; -$a->strings["Starts:"] = "Beginnt:"; -$a->strings["Finishes:"] = "Endet:"; -$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze Deines Abonnements."; -$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Deinem Abonnement nicht verfügbar."; -$a->strings["End this session"] = "Diese Sitzung beenden"; -$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; -$a->strings["Your profile page"] = "Deine Profilseite"; -$a->strings["Your photos"] = "Deine Fotos"; -$a->strings["Your videos"] = "Deine Videos"; -$a->strings["Your events"] = "Deine Ereignisse"; -$a->strings["Personal notes"] = "Persönliche Notizen"; -$a->strings["Your personal notes"] = "Deine persönlichen Notizen"; -$a->strings["Sign in"] = "Anmelden"; -$a->strings["Home Page"] = "Homepage"; -$a->strings["Create an account"] = "Nutzerkonto erstellen"; -$a->strings["Help and documentation"] = "Hilfe und Dokumentation"; -$a->strings["Apps"] = "Apps"; -$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele"; -$a->strings["Search site content"] = "Inhalt der Seite durchsuchen"; -$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite"; -$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk"; -$a->strings["Directory"] = "Verzeichnis"; -$a->strings["People directory"] = "Nutzerverzeichnis"; -$a->strings["Information"] = "Information"; -$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz"; -$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte"; -$a->strings["Network Reset"] = "Netzwerk zurücksetzen"; -$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden"; -$a->strings["Friend Requests"] = "Kontaktanfragen"; -$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen"; -$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen"; -$a->strings["Private mail"] = "Private E-Mail"; -$a->strings["Inbox"] = "Eingang"; -$a->strings["Outbox"] = "Ausgang"; -$a->strings["Manage"] = "Verwalten"; -$a->strings["Manage other pages"] = "Andere Seiten verwalten"; -$a->strings["Account settings"] = "Kontoeinstellungen"; -$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren"; -$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren"; -$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration"; -$a->strings["Navigation"] = "Navigation"; -$a->strings["Site map"] = "Sitemap"; $a->strings["User not found."] = "Nutzer nicht gefunden."; $a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; $a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; @@ -1665,29 +1539,66 @@ $a->strings["There is no conversation with this id."] = "Es existiert keine Unte $a->strings["Invalid item."] = "Ungültiges Objekt"; $a->strings["Invalid action. "] = "Ungültige Aktion"; $a->strings["DB error"] = "DB Error"; -$a->strings["An invitation is required."] = "Du benötigst eine Einladung."; -$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden."; -$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL"; -$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein."; -$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen."; -$a->strings["Name too short."] = "Der Name ist zu kurz."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."; -$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."; -$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse."; -$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."; -$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."; -$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; -$a->strings["Friends"] = "Freunde"; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet."; -$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s."; -$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora"; -$a->strings["Attachments:"] = "Anhänge:"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."; +$a->strings["%s's birthday"] = "%ss Geburtstag"; +$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s"; $a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?"; $a->strings["Archives"] = "Archiv"; +$a->strings["(no subject)"] = "(kein Betreff)"; +$a->strings["noreply"] = "noreply"; +$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora"; +$a->strings["Attachments:"] = "Anhänge:"; +$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden."; +$a->strings["Edit profile"] = "Profil bearbeiten"; +$a->strings["Message"] = "Nachricht"; +$a->strings["Profiles"] = "Profile"; +$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren"; +$a->strings["Network:"] = "Netzwerk"; +$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r"; +$a->strings["F d"] = "d. F"; +$a->strings["[today]"] = "[heute]"; +$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen"; +$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:"; +$a->strings["[No description]"] = "[keine Beschreibung]"; +$a->strings["Event Reminders"] = "Veranstaltungserinnerungen"; +$a->strings["Events this week:"] = "Veranstaltungen diese Woche"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Geburtstag:"; +$a->strings["Age:"] = "Alter:"; +$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s"; +$a->strings["Religion:"] = "Religion:"; +$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:"; +$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:"; +$a->strings["Musical interests:"] = "Musikalische Interessen:"; +$a->strings["Books, literature:"] = "Literatur/Bücher:"; +$a->strings["Television:"] = "Fernsehen:"; +$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:"; +$a->strings["Love/Romance:"] = "Liebesleben:"; +$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:"; +$a->strings["School/education:"] = "Schule/Ausbildung:"; +$a->strings["Status"] = "Status"; +$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; +$a->strings["Profile Details"] = "Profildetails"; +$a->strings["Videos"] = "Videos"; +$a->strings["Events and Calendar"] = "Ereignisse und Kalender"; +$a->strings["Only You Can See This"] = "Nur Du kannst das sehen"; +$a->strings["Connect URL missing."] = "Connect-URL fehlt"; +$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."; +$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen."; +$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden."; +$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."; +$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."; +$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen."; +$a->strings["following"] = "folgen"; +$a->strings["Welcome "] = "Willkommen "; +$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch."; +$a->strings["Welcome back "] = "Willkommen zurück "; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."; $a->strings["Male"] = "Männlich"; $a->strings["Female"] = "Weiblich"; $a->strings["Currently Male"] = "Momentan männlich"; @@ -1724,6 +1635,7 @@ $a->strings["Infatuated"] = "verliebt"; $a->strings["Dating"] = "Dating"; $a->strings["Unfaithful"] = "Untreu"; $a->strings["Sex Addict"] = "Sexbesessen"; +$a->strings["Friends"] = "Freunde"; $a->strings["Friends/Benefits"] = "Freunde/Zuwendungen"; $a->strings["Casual"] = "Casual"; $a->strings["Engaged"] = "Verlobt"; @@ -1745,6 +1657,121 @@ $a->strings["Uncertain"] = "Unsicher"; $a->strings["It's complicated"] = "Ist kompliziert"; $a->strings["Don't care"] = "Ist mir nicht wichtig"; $a->strings["Ask me"] = "Frag mich"; +$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"; +$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen."; +$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!"; +$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten"; +$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos"; +$a->strings["%d contact not imported"] = array( + 0 => "%d Kontakt nicht importiert", + 1 => "%d Kontakte nicht importiert", +); +$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"; +$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze Deines Abonnements."; +$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Deinem Abonnement nicht verfügbar."; +$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; +$a->strings["post/item"] = "Nachricht/Beitrag"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert"; +$a->strings["remove"] = "löschen"; +$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; +$a->strings["Follow Thread"] = "Folge der Unterhaltung"; +$a->strings["View Status"] = "Pinnwand anschauen"; +$a->strings["View Profile"] = "Profil anschauen"; +$a->strings["View Photos"] = "Bilder anschauen"; +$a->strings["Network Posts"] = "Netzwerkbeiträge"; +$a->strings["Edit Contact"] = "Kontakt bearbeiten"; +$a->strings["Send PM"] = "Private Nachricht senden"; +$a->strings["Poke"] = "Anstupsen"; +$a->strings["%s likes this."] = "%s mag das."; +$a->strings["%s doesn't like this."] = "%s mag das nicht."; +$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; +$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; +$a->strings["and"] = "und"; +$a->strings[", and %d other people"] = " und %d andere"; +$a->strings["%s like this."] = "%s mögen das."; +$a->strings["%s don't like this."] = "%s mögen das nicht."; +$a->strings["Visible to everybody"] = "Für jedermann sichtbar"; +$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:"; +$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:"; +$a->strings["Tag term:"] = "Tag:"; +$a->strings["Where are you right now?"] = "Wo hältst Du Dich jetzt gerade auf?"; +$a->strings["Delete item(s)?"] = "Einträge löschen?"; +$a->strings["permissions"] = "Zugriffsrechte"; +$a->strings["Post to Groups"] = "Poste an Gruppe"; +$a->strings["Post to Contacts"] = "Poste an Kontakte"; +$a->strings["Private post"] = "Privater Beitrag"; +$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen"; +$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d Einladung verfügbar", + 1 => "%d Einladungen verfügbar", +); +$a->strings["Find People"] = "Leute finden"; +$a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; +$a->strings["Connect/Follow"] = "Verbinden/Folgen"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln"; +$a->strings["Random Profile"] = "Zufälliges Profil"; +$a->strings["Networks"] = "Netzwerke"; +$a->strings["All Networks"] = "Alle Netzwerke"; +$a->strings["Everything"] = "Alles"; +$a->strings["Categories"] = "Kategorien"; +$a->strings["End this session"] = "Diese Sitzung beenden"; +$a->strings["Your videos"] = "Deine Videos"; +$a->strings["Your personal notes"] = "Deine persönlichen Notizen"; +$a->strings["Sign in"] = "Anmelden"; +$a->strings["Home Page"] = "Homepage"; +$a->strings["Create an account"] = "Nutzerkonto erstellen"; +$a->strings["Help and documentation"] = "Hilfe und Dokumentation"; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele"; +$a->strings["Search site content"] = "Inhalt der Seite durchsuchen"; +$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite"; +$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk"; +$a->strings["Directory"] = "Verzeichnis"; +$a->strings["People directory"] = "Nutzerverzeichnis"; +$a->strings["Information"] = "Information"; +$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz"; +$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte"; +$a->strings["Network Reset"] = "Netzwerk zurücksetzen"; +$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden"; +$a->strings["Friend Requests"] = "Kontaktanfragen"; +$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen"; +$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen"; +$a->strings["Private mail"] = "Private E-Mail"; +$a->strings["Inbox"] = "Eingang"; +$a->strings["Outbox"] = "Ausgang"; +$a->strings["Manage"] = "Verwalten"; +$a->strings["Manage other pages"] = "Andere Seiten verwalten"; +$a->strings["Account settings"] = "Kontoeinstellungen"; +$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren"; +$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren"; +$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration"; +$a->strings["Navigation"] = "Navigation"; +$a->strings["Site map"] = "Sitemap"; +$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert"; +$a->strings["Block immediately"] = "Sofort blockieren"; +$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller"; +$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung"; +$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos"; +$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen"; +$a->strings["Weekly"] = "Wöchentlich"; +$a->strings["Monthly"] = "Monatlich"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = "Zott"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/Chat"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Diaspora"; +$a->strings["Statusnet"] = "StatusNet"; +$a->strings["App.net"] = "App.net"; +$a->strings["Redmatrix"] = "Redmatrix"; $a->strings["Friendica Notification"] = "Friendica-Benachrichtigung"; $a->strings["Thank You,"] = "Danke,"; $a->strings["%s Administrator"] = "der Administrator von %s"; @@ -1802,55 +1829,64 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "D $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten."; $a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"; $a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten."; +$a->strings["An invitation is required."] = "Du benötigst eine Einladung."; +$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden."; +$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL"; +$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein."; +$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen."; +$a->strings["Name too short."] = "Der Name ist zu kurz."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."; +$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."; +$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse."; +$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."; +$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."; +$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet."; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s."; +$a->strings["Post to Email"] = "An E-Mail senden"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."; +$a->strings["Visible to everybody"] = "Für jeden sichtbar"; +$a->strings["Image/photo"] = "Bild/Foto"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["%s wrote the following post"] = "%s schrieb den folgenden Beitrag"; +$a->strings["$1 wrote:"] = "$1 hat geschrieben:"; +$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; $a->strings["Embedded content"] = "Eingebetteter Inhalt"; $a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; -$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"; -$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen."; -$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!"; -$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten"; -$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos"; -$a->strings["%d contact not imported"] = array( - 0 => "%d Kontakt nicht importiert", - 1 => "%d Kontakte nicht importiert", -); -$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"; -$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"; -$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen"; -$a->strings["Set theme width"] = "Theme Breite festlegen"; -$a->strings["Color scheme"] = "Farbschema"; -$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen"; -$a->strings["Set colour scheme"] = "Farbschema wählen"; -$a->strings["Alignment"] = "Ausrichtung"; -$a->strings["Left"] = "Links"; -$a->strings["Center"] = "Mitte"; -$a->strings["Posts font size"] = "Schriftgröße in Beiträgen"; -$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern"; -$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen"; -$a->strings["Set color scheme"] = "Wähle Farbschema"; -$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer"; -$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer"; -$a->strings["Community Pages"] = "Foren"; -$a->strings["Earth Layers"] = "Earth Layers"; -$a->strings["Community Profiles"] = "Community-Profile"; -$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere"; -$a->strings["Connect Services"] = "Verbinde Dienste"; -$a->strings["Find Friends"] = "Freunde finden"; -$a->strings["Last users"] = "Letzte Nutzer"; -$a->strings["Last photos"] = "Letzte Fotos"; -$a->strings["Last likes"] = "Zuletzt gemocht"; -$a->strings["Your contacts"] = "Deine Kontakte"; -$a->strings["Your personal photos"] = "Deine privaten Fotos"; -$a->strings["Local Directory"] = "Lokales Verzeichnis"; -$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer"; -$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen"; -$a->strings["Set style"] = "Stil auswählen"; -$a->strings["greenzero"] = "greenzero"; -$a->strings["purplezero"] = "purplezero"; -$a->strings["easterbunny"] = "easterbunny"; -$a->strings["darkzero"] = "darkzero"; -$a->strings["comix"] = "comix"; -$a->strings["slackr"] = "slackr"; -$a->strings["Variations"] = "Variationen"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."; +$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte"; +$a->strings["Everybody"] = "Alle Kontakte"; +$a->strings["edit"] = "bearbeiten"; +$a->strings["Edit group"] = "Gruppe bearbeiten"; +$a->strings["Create a new group"] = "Neue Gruppe erstellen"; +$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe"; +$a->strings["stopped following"] = "wird nicht mehr gefolgt"; +$a->strings["Drop Contact"] = "Kontakt löschen"; +$a->strings["Miscellaneous"] = "Verschiedenes"; +$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD"; +$a->strings["never"] = "nie"; +$a->strings["less than a second ago"] = "vor weniger als einer Sekunde"; +$a->strings["year"] = "Jahr"; +$a->strings["years"] = "Jahre"; +$a->strings["month"] = "Monat"; +$a->strings["months"] = "Monate"; +$a->strings["week"] = "Woche"; +$a->strings["weeks"] = "Wochen"; +$a->strings["day"] = "Tag"; +$a->strings["days"] = "Tage"; +$a->strings["hour"] = "Stunde"; +$a->strings["hours"] = "Stunden"; +$a->strings["minute"] = "Minute"; +$a->strings["minutes"] = "Minuten"; +$a->strings["second"] = "Sekunde"; +$a->strings["seconds"] = "Sekunden"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her"; +$a->strings["view full size"] = "Volle Größe anzeigen"; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]"; +$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."; +$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."; From fd80e75693e71efb11bcea4cc93f04dda22dd4d9 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 12:02:44 +0200 Subject: [PATCH 047/443] Documentation of .htconfig.php values --- doc/Home.md | 1 + doc/de/Home.md | 1 + doc/htconfig.md | 72 +++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 74 insertions(+) create mode 100644 doc/htconfig.md diff --git a/doc/Home.md b/doc/Home.md index ff991e3d2a..11b1f9e159 100644 --- a/doc/Home.md +++ b/doc/Home.md @@ -33,6 +33,7 @@ Friendica Documentation and Resources * [Message Flow](help/Message-Flow) * [Using SSL with Friendica](help/SSL) * [Twitter/GNU Social API Functions](help/api) +* [Config values that can only be set in .htconfig.php](help/htconfig) **Developer Manual** diff --git a/doc/de/Home.md b/doc/de/Home.md index 561809d6ce..a101b5f734 100644 --- a/doc/de/Home.md +++ b/doc/de/Home.md @@ -37,6 +37,7 @@ Friendica - Dokumentation und Ressourcen * [Entwickler](help/Developers) * [Twitter/GNU Social API Functions](help/api) (EN) * [Translation of Friendica](help/translations) (EN) +* [Konfigurationswerte, die nur in der .htconfig.php gesetzt werden können](help/htconfig) (EN) **Entwickler Dokumentation** diff --git a/doc/htconfig.md b/doc/htconfig.md new file mode 100644 index 0000000000..4c2318129e --- /dev/null +++ b/doc/htconfig.md @@ -0,0 +1,72 @@ +Config values that can only be set in .htconfig.php +=================================================== + +There are some config values that haven't found their way into the administration page. This has several reasons. Maybe they are part of a +current development that isn't considered stable and will be added later in the administration page when it is considered safe. Or it triggers +something that isn't expected to be of public interest. Or it is for testing purposes only. + +Please be warned that you shouldn't use one of these values without the knowledge what it could trigger. Especially don't do that with +undocumented values. + +## Jabber ## +* debug (Boolean) - Enable debug level for the jabber account synchronisation. +* logfile - Logfile for the jabber account synchronisation. + +## System ## + +* birthday_input_format - Default value is "ymd". +* block_local_dir (Boolean) - Blocks the access to the directory of the local users. +* default_service_class - +* delivery_batch_count - Number of deliveries per process. Default value is 1. (Disabled when using the worker) +* diaspora_test (Boolean) - For development only. Disables the message transfer. +* directory - The path to global directory. If not set then "http://dir.friendi.ca" is used. +* disable_email_validation (Boolean) - Disables the check if a mail address is in a valid format and can be resolved via DNS. +* disable_url_validation (Boolean) - Disables the DNS lookup of an URL. +* event_input_format - Default value is "ymd". +* ignore_cache (Boolean) - For development only. Disables the item cache. +* like_no_comment (Boolean) - Don't update the "commented" value of an item when it is liked. +* local_block (Boolean) - Used in conjunction with "block_public". +* local_search (Boolean) - Blocks the search for not logged in users to prevent crawlers from blocking your system. +* max_contact_queue - Default value is 500. +* max_batch_queue - Default value is 1000. +* no_oembed (Boolean) - Don't use OEmbed to fetch more information about a link. +* no_oembed_rich_content (Boolean) - Don't show the rich content (e.g. embedded PDF). +* no_smilies (Boolean) - Don't show smilies. +* no_view_full_size (Boolean) - Don't add the link "View full size" under a resized image. +* optimize_items (Boolean) - Triggers an SQL command to optimize the item table before expiring items. +* ostatus_poll_timeframe - Defines how old an item can be to try to complete the conversation with it. +* paranoia (Boolean) - Log out users if their IP address changed. +* permit_crawling (Boolean) - Restricts the search for not logged in users to one search per minute. +* png_quality - Default value is 8. +* proc_windows (Boolean) - Should be enabled if Friendica is running under Windows. +* proxy_cache_time - Time after which the cache is cleared. Default value is one day. +* pushpoll_frequency - +* qsearch_limit - Default value is 100. +* relay_server - Experimental Diaspora feature. Address of the relay server where public posts should be send to. For example https://podrelay.net +* relay_subscribe (Boolean) - Enables the receiving of public posts from the relay. They will be included in the search and on the community page when it is set up to show all public items. +* relay_scope - Can be "all" or "tags". "all" means that every public post should be received. "tags" means that only posts witt selected tags should be received. +* relay_server_tags - Comma separated list of tags for the "tags" subscription (see "relay_scrope") +* relay_user_tags (Boolean) - If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags". +* remove_multiplicated_lines (Boolean) - If enabled, multiple linefeeds in items are stripped to a single one. +* show_unsupported_addons (Boolean) - Show all addons including the unsupported ones. +* show_unsupported_themes (Boolean) - Show all themes including the unsupported ones. +* throttle_limit_day - Maximum number of posts that a user can send per day with the API. +* throttle_limit_week - Maximum number of posts that a user can send per week with the API. +* throttle_limit_month - Maximum number of posts that a user can send per month with the API. +* wall-to-wall_share (Boolean) - Displays forwarded posts like "wall-to-wall" posts. +* worker (Boolean) - (Experimental) Use the worker system instead of calling several background processes. Reduces the overall load and speeds up item delivery. +* worker_dont_fork (Boolean) - if enabled, the workers are only called from the poller process. Useful on systems that permit the use of "proc_open". +* worker_queues - Number of parallel workers. Default value is 10 queues. +* xrd_timeout - Timeout for fetching the XRD links. Default value is 20 seconds. + +## service_class ## + +* upgrade_link - + +## experimentals ## + +* exp_themes (Boolean) - Show experimental themes as well. + +## theme ## + +* hide_eventlist (Boolean) - Don't show the birthdays and events on the profile and network page From 3b18c6cb0c7e8761017a494ae3dbc5413f4cb674 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 12:24:00 +0200 Subject: [PATCH 048/443] Small optical changes in "vier" --- view/theme/vier/style.css | 2 +- view/theme/vier/wide.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index aadd09c61d..d6d13b9d3c 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -874,7 +874,7 @@ ul.menu-popup .empty { right_aside { width: 0px; top: 32px; - display: block; + display: none; } /* aside */ diff --git a/view/theme/vier/wide.css b/view/theme/vier/wide.css index ecffd485e0..6f8d5427cc 100644 --- a/view/theme/vier/wide.css +++ b/view/theme/vier/wide.css @@ -39,7 +39,7 @@ right_aside img.directory-photo-img { } right_aside #right_services img { - width: 32px; + width: 34px; } right_aside #lastusers-wrapper, From 1d71dde7ef40736cd98cf96b9afb4fb5e7e713f3 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 14:40:02 +0200 Subject: [PATCH 049/443] Beautyfied code. Link to "follow" on community profiles --- view/theme/vier/config.php | 58 +++++++++++++++++++------------------- view/theme/vier/theme.php | 3 +- 2 files changed, 31 insertions(+), 30 deletions(-) diff --git a/view/theme/vier/config.php b/view/theme/vier/config.php index 5084a26053..9f4fb0f93a 100644 --- a/view/theme/vier/config.php +++ b/view/theme/vier/config.php @@ -17,12 +17,12 @@ function theme_content(&$a){ if ($style == "") $style = "plus"; - $show_pages = get_vier_config('show_pages', true); - $show_profiles = get_vier_config('show_profiles', true); - $show_helpers = get_vier_config('show_helpers', true); - $show_services = get_vier_config('show_services', true); - $show_friends = get_vier_config('show_friends', true); - $show_lastusers = get_vier_config('show_lastusers', true); + $show_pages = get_vier_config('show_pages', true); + $show_profiles = get_vier_config('show_profiles', true); + $show_helpers = get_vier_config('show_helpers', true); + $show_services = get_vier_config('show_services', true); + $show_friends = get_vier_config('show_friends', true); + $show_lastusers = get_vier_config('show_lastusers', true); return vier_form($a,$style, $show_pages, $show_profiles, $show_helpers, $show_services, $show_friends, $show_lastusers); @@ -34,12 +34,12 @@ function theme_post(&$a){ if (isset($_POST['vier-settings-submit'])){ set_pconfig(local_user(), 'vier', 'style', $_POST['vier_style']); - set_pconfig(local_user(), 'vier', 'show_pages', $_POST['vier_show_pages']); - set_pconfig(local_user(), 'vier', 'show_profiles', $_POST['vier_show_profiles']); - set_pconfig(local_user(), 'vier', 'show_helpers', $_POST['vier_show_helpers']); - set_pconfig(local_user(), 'vier', 'show_services', $_POST['vier_show_services']); - set_pconfig(local_user(), 'vier', 'show_friends', $_POST['vier_show_friends']); - set_pconfig(local_user(), 'vier', 'show_lastusers', $_POST['vier_show_lastusers']); + set_pconfig(local_user(), 'vier', 'show_pages', $_POST['vier_show_pages']); + set_pconfig(local_user(), 'vier', 'show_profiles', $_POST['vier_show_profiles']); + set_pconfig(local_user(), 'vier', 'show_helpers', $_POST['vier_show_helpers']); + set_pconfig(local_user(), 'vier', 'show_services', $_POST['vier_show_services']); + set_pconfig(local_user(), 'vier', 'show_friends', $_POST['vier_show_friends']); + set_pconfig(local_user(), 'vier', 'show_lastusers', $_POST['vier_show_lastusers']); } } @@ -57,12 +57,12 @@ function theme_admin(&$a){ '$helperlist' => array('vier_helperlist', t('Comma separated list of helper forums'), $helperlist, '', ''), )); - $show_pages = get_vier_config('show_pages', true, true); - $show_profiles = get_vier_config('show_profiles', true, true); - $show_helpers = get_vier_config('show_helpers', true, true); - $show_services = get_vier_config('show_services', true, true); - $show_friends = get_vier_config('show_friends', true, true); - $show_lastusers = get_vier_config('show_lastusers', true, true); + $show_pages = get_vier_config('show_pages', true, true); + $show_profiles = get_vier_config('show_profiles', true, true); + $show_helpers = get_vier_config('show_helpers', true, true); + $show_services = get_vier_config('show_services', true, true); + $show_friends = get_vier_config('show_friends', true, true); + $show_lastusers = get_vier_config('show_lastusers', true, true); $o .= vier_form($a,$style, $show_pages, $show_profiles, $show_helpers, $show_services, $show_friends, $show_lastusers); @@ -73,11 +73,11 @@ function theme_admin_post(&$a){ if (isset($_POST['vier-settings-submit'])){ set_config('vier', 'style', $_POST['vier_style']); set_config('vier', 'show_pages', $_POST['vier_show_pages']); - set_config('vier', 'show_profiles', $_POST['vier_show_profiles']); - set_config('vier', 'show_helpers', $_POST['vier_show_helpers']); - set_config('vier', 'show_services', $_POST['vier_show_services']); - set_config('vier', 'show_friends', $_POST['vier_show_friends']); - set_config('vier', 'show_lastusers', $_POST['vier_show_lastusers']); + set_config('vier', 'show_profiles', $_POST['vier_show_profiles']); + set_config('vier', 'show_helpers', $_POST['vier_show_helpers']); + set_config('vier', 'show_services', $_POST['vier_show_services']); + set_config('vier', 'show_friends', $_POST['vier_show_friends']); + set_config('vier', 'show_lastusers', $_POST['vier_show_lastusers']); set_config('vier', 'helperlist', $_POST['vier_helperlist']); } } @@ -93,7 +93,7 @@ function vier_form(&$a, $style, $show_pages, $show_profiles, $show_helpers, $sho "flat"=>"Flat" ); - $show_or_not = array('0'=>t("don't show"), '1'=>t("show"),); + $show_or_not = array('0'=>t("don't show"), '1'=>t("show"),); $t = get_markup_template("theme_settings.tpl"); $o .= replace_macros($t, array( @@ -102,11 +102,11 @@ function vier_form(&$a, $style, $show_pages, $show_profiles, $show_helpers, $sho '$title' => t("Theme settings"), '$style' => array('vier_style',t ('Set style'),$style,'',$styles), '$show_pages' => array('vier_show_pages', t('Community Pages'), $show_pages, '', $show_or_not), - '$show_profiles' => array('vier_show_profiles', t('Community Profiles'), $show_profiles, '', $show_or_not), - '$show_helpers' => array('vier_show_helpers', t('Help or @NewHere ?'), $show_helpers, '', $show_or_not), - '$show_services' => array('vier_show_services', t('Connect Services'), $show_services, '', $show_or_not), - '$show_friends' => array('vier_show_friends', t('Find Friends'), $show_friends, '', $show_or_not), - '$show_lastusers' => array('vier_show_lastusers', t('Last users'), $show_lastusers, '', $show_or_not) + '$show_profiles' => array('vier_show_profiles', t('Community Profiles'), $show_profiles, '', $show_or_not), + '$show_helpers' => array('vier_show_helpers', t('Help or @NewHere ?'), $show_helpers, '', $show_or_not), + '$show_services' => array('vier_show_services', t('Connect Services'), $show_services, '', $show_or_not), + '$show_friends' => array('vier_show_friends', t('Find Friends'), $show_friends, '', $show_or_not), + '$show_lastusers' => array('vier_show_lastusers', t('Last users'), $show_lastusers, '', $show_or_not) )); return $o; } diff --git a/view/theme/vier/theme.php b/view/theme/vier/theme.php index df28c0689e..6d3ac1caf6 100644 --- a/view/theme/vier/theme.php +++ b/view/theme/vier/theme.php @@ -130,7 +130,8 @@ function vier_community_info() { foreach($r as $rr) { $entry = replace_macros($tpl,array( '$id' => $rr['id'], - '$profile_link' => zrl($rr['url']), + //'$profile_link' => zrl($rr['url']), + '$profile_link' => $a->get_baseurl().'/follow/?url='.urlencode($rr['url']), '$photo' => proxy_url($rr['photo']), '$alt_text' => $rr['name'], )); From d0ae5ce3263ec96250ecc1da0031f420891a370f Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 14:41:39 +0200 Subject: [PATCH 050/443] Show more information when following a new contact --- mod/follow.php | 48 ++++++++++++++++++++------------- mod/notifications.php | 1 - object/Item.php | 2 +- view/templates/auto_request.tpl | 7 +++-- view/templates/dfrn_request.tpl | 5 ++++ 5 files changed, 40 insertions(+), 23 deletions(-) mode change 100755 => 100644 mod/follow.php diff --git a/mod/follow.php b/mod/follow.php old mode 100755 new mode 100644 index dd717aacd9..603707809b --- a/mod/follow.php +++ b/mod/follow.php @@ -61,6 +61,9 @@ function follow_content(&$a) { // Makes the connection request for friendica contacts easier $_SESSION["fastlane"] = $ret["url"]; + $r = q("SELECT `location`, `about`, `keywords` FROM `gcontact` WHERE `nurl` = '%s'", + normalise_link($ret["url"])); + $header = $ret["name"]; if ($ret["addr"] != "") @@ -71,25 +74,32 @@ function follow_content(&$a) { $o = replace_macros($tpl,array( '$header' => htmlentities($header), '$photo' => $ret["photo"], - '$desc' => "", - '$pls_answer' => t('Please answer the following:'), - '$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$ret["name"]), false, '', array(t('No'),t('Yes'))), - '$add_note' => t('Add a personal note:'), - '$page_desc' => "", - '$friendica' => "", - '$statusnet' => "", - '$diaspora' => "", - '$diasnote' => "", - '$your_address' => t('Your Identity Address:'), - '$invite_desc' => "", - '$emailnet' => "", - '$submit' => t('Submit Request'), - '$cancel' => t('Cancel'), - '$nickname' => "", - '$name' => $ret["name"], - '$url' => $ret["url"], - '$myaddr' => $myaddr, - '$request' => $request + '$desc' => "", + '$pls_answer' => t('Please answer the following:'), + '$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$ret["name"]), false, '', array(t('No'),t('Yes'))), + '$add_note' => t('Add a personal note:'), + '$page_desc' => "", + '$friendica' => "", + '$statusnet' => "", + '$diaspora' => "", + '$diasnote' => "", + '$your_address' => t('Your Identity Address:'), + '$invite_desc' => "", + '$emailnet' => "", + '$submit' => t('Submit Request'), + '$cancel' => t('Cancel'), + '$nickname' => "", + '$name' => $ret["name"], + '$url' => $ret["url"], + '$url_label' => t("Profile URL"), + '$myaddr' => $myaddr, + '$request' => $request, + '$location' => bbcode($r[0]["location"]), + '$location_label' => t("Location:"), + '$about' => bbcode($r[0]["about"]), + '$about_label' => t("About:"), + '$keywords' => bbcode($r[0]["keywords"]), + '$keywords_label' => t("Tags:") )); return $o; } diff --git a/mod/notifications.php b/mod/notifications.php index 44f6dd5675..1fc31c3eb9 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -216,7 +216,6 @@ function notifications_content(&$a) { '$contact_id' => $rr['contact-id'], '$photo' => ((x($rr,'photo')) ? proxy_url($rr['photo']) : "images/person-175.jpg"), '$fullname' => $rr['name'], - '$location_label' => t('Location:'), '$location' => $rr['glocation'], '$location_label' => t('Location:'), '$about' => proxy_parse_html(bbcode($rr['gabout'], false, false)), diff --git a/object/Item.php b/object/Item.php index 8d364e6023..c7a025861f 100644 --- a/object/Item.php +++ b/object/Item.php @@ -644,7 +644,7 @@ class Item extends BaseObject { if(!$this->is_toplevel() && !(get_config('system','thread_allow') && $a->theme_thread_allow)) { return ''; } - + $comment_box = ''; $conv = $this->get_conversation(); $template = get_markup_template($this->get_comment_box_template()); diff --git a/view/templates/auto_request.tpl b/view/templates/auto_request.tpl index 56653c6550..09e6163325 100644 --- a/view/templates/auto_request.tpl +++ b/view/templates/auto_request.tpl @@ -1,5 +1,3 @@ - -

{{$header}}

{{if $myaddr == ""}} @@ -30,6 +28,11 @@ {{/if}} +{{if $url}}
{{$url_label}}
{{$url}}
{{/if}} +{{if $location}}
{{$location_label}}
{{$location}}
{{/if}} +{{if $keywords}}
{{$keywords_label}}
{{$keywords}}
{{/if}} +{{if $about}}
{{$about_label}}
{{$about}}
{{/if}} +
{{if $myaddr}} diff --git a/view/templates/dfrn_request.tpl b/view/templates/dfrn_request.tpl index 6c63c53315..d376b3a5d5 100644 --- a/view/templates/dfrn_request.tpl +++ b/view/templates/dfrn_request.tpl @@ -27,6 +27,11 @@ {{/if}} +{{if $url}}
{{$url_label}}
{{$url}}
{{/if}} +{{if $location}}
{{$location_label}}
{{$location}}
{{/if}} +{{if $keywords}}
{{$keywords_label}}
{{$keywords}}
{{/if}} +{{if $about}}
{{$about_label}}
{{$about}}
{{/if}} +
{{if $myaddr}} From ba41336099141a25b84291c1bbd8366dc9797d1b Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 14:49:12 +0200 Subject: [PATCH 051/443] Preparation for a not found contact. --- mod/follow.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mod/follow.php b/mod/follow.php index 603707809b..b635b3493b 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -64,6 +64,9 @@ function follow_content(&$a) { $r = q("SELECT `location`, `about`, `keywords` FROM `gcontact` WHERE `nurl` = '%s'", normalise_link($ret["url"])); + if (!$r) + $r = array(array("location" => "", "about" => "", "keywords" => "")); + $header = $ret["name"]; if ($ret["addr"] != "") From 83ea4f72538bb4cd2e79979307744933010a2082 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 15:55:24 +0200 Subject: [PATCH 052/443] transfer some stuff from "follow" to the "notifications" to reduce the differences in the two dialogues. --- mod/follow.php | 4 ++-- mod/notifications.php | 3 ++- view/templates/intros.tpl | 1 + 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/mod/follow.php b/mod/follow.php index b635b3493b..7b1957c93b 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -99,9 +99,9 @@ function follow_content(&$a) { '$request' => $request, '$location' => bbcode($r[0]["location"]), '$location_label' => t("Location:"), - '$about' => bbcode($r[0]["about"]), + '$about' => proxy_parse_html(bbcode($r[0]["about"], false, false)), '$about_label' => t("About:"), - '$keywords' => bbcode($r[0]["keywords"]), + '$keywords' => $r[0]["keywords"], '$keywords_label' => t("Tags:") )); return $o; diff --git a/mod/notifications.php b/mod/notifications.php index 1fc31c3eb9..831beee765 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -216,7 +216,7 @@ function notifications_content(&$a) { '$contact_id' => $rr['contact-id'], '$photo' => ((x($rr,'photo')) ? proxy_url($rr['photo']) : "images/person-175.jpg"), '$fullname' => $rr['name'], - '$location' => $rr['glocation'], + '$location' => bbcode($rr['glocation'], false, false), '$location_label' => t('Location:'), '$about' => proxy_parse_html(bbcode($rr['gabout'], false, false)), '$about_label' => t('About:'), @@ -227,6 +227,7 @@ function notifications_content(&$a) { '$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''), '$activity' => array('activity', t('Post a new friend activity'), (intval(get_pconfig(local_user(),'system','post_newfriend')) ? '1' : 0), t('if applicable')), '$url' => zrl($rr['url']), + '$url_label' => t('Profile URL'), '$knowyou' => $knowyou, '$approve' => t('Approve'), '$note' => $rr['note'], diff --git a/view/templates/intros.tpl b/view/templates/intros.tpl index aa10cde48f..d50b14cd41 100644 --- a/view/templates/intros.tpl +++ b/view/templates/intros.tpl @@ -5,6 +5,7 @@

{{$str_notifytype}} {{$notify_type}}

{{$fullname}}
{{$fullname|escape:'html'}} +
{{$url_label}}
{{$url}}
{{if $location}}
{{$location_label}}
{{$location}}
{{/if}} {{if $gender}}
{{$gender_label}}
{{$gender}}
{{/if}} {{if $keywords}}
{{$keywords_label}}
{{$keywords}}
{{/if}} From 4003b9cc5de25bd68007d64e179649b36ce244a7 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 17:18:58 +0200 Subject: [PATCH 053/443] Let the notification look more like the follow dialog --- mod/notifications.php | 18 +++++++++++++++++- view/templates/intros.tpl | 3 +-- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/mod/notifications.php b/mod/notifications.php index 831beee765..513f685b47 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -1,5 +1,6 @@ user['nickname'] . '@' . $a->get_hostname() . (($a->path) ? '/' . $a->path : '')); @@ -206,7 +209,20 @@ function notifications_content(&$a) { )); } + $header = $rr["name"]; + + $ret = probe_url($rr["url"]); + + if ($rr['gnetwork'] == "") + $rr['gnetwork'] = $ret["network"]; + + if ($ret["addr"] != "") + $header .= " <".$ret["addr"].">"; + + $header .= " (".network_to_name($rr['gnetwork']).")"; + $notif_content .= replace_macros($tpl, array( + '$header' => htmlentities($header), '$str_notifytype' => t('Notification type: '), '$notify_type' => (($rr['network'] !== NETWORK_OSTATUS) ? t('Friend/Connect Request') : t('New Follower')), '$dfrn_text' => $dfrn_text, diff --git a/view/templates/intros.tpl b/view/templates/intros.tpl index d50b14cd41..8e5a24a6b8 100644 --- a/view/templates/intros.tpl +++ b/view/templates/intros.tpl @@ -1,9 +1,8 @@ - +

{{$header}}

{{$str_notifytype}} {{$notify_type}}

-
{{$fullname}}
{{$fullname|escape:'html'}}
{{$url_label}}
{{$url}}
{{if $location}}
{{$location_label}}
{{$location}}
{{/if}} From 8c514307cf11c0b000ce437fcb2bef2a8952ef0c Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 17:20:47 +0200 Subject: [PATCH 054/443] For safety reasons include the include --- mod/notifications.php | 1 + 1 file changed, 1 insertion(+) diff --git a/mod/notifications.php b/mod/notifications.php index 513f685b47..bcda5ba343 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -1,6 +1,7 @@ Date: Sun, 4 Oct 2015 17:37:08 +0200 Subject: [PATCH 055/443] Added explanation how to add a parameter to the .htconfig.pgp --- doc/htconfig.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/doc/htconfig.md b/doc/htconfig.md index 4c2318129e..5d98f55a76 100644 --- a/doc/htconfig.md +++ b/doc/htconfig.md @@ -5,9 +5,16 @@ There are some config values that haven't found their way into the administratio current development that isn't considered stable and will be added later in the administration page when it is considered safe. Or it triggers something that isn't expected to be of public interest. Or it is for testing purposes only. -Please be warned that you shouldn't use one of these values without the knowledge what it could trigger. Especially don't do that with +**Attention:** Please be warned that you shouldn't use one of these values without the knowledge what it could trigger. Especially don't do that with undocumented values. +The header of the section describes the category, the value is the parameter. Example: To set the directory value please add this +line to your .htconfig.php: + + $a->config['system']['directory'] = 'http://dir.friendi.ca'; + + + ## Jabber ## * debug (Boolean) - Enable debug level for the jabber account synchronisation. * logfile - Logfile for the jabber account synchronisation. From 72ecb9e67b6cad94a98c65e02d56c5a71f879660 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 19:39:55 +0200 Subject: [PATCH 056/443] Bugfix: Repairing a contact was more like killing the contact ... --- mod/contacts.php | 2 +- mod/follow.php | 1 + view/templates/auto_request.tpl | 2 +- view/templates/dfrn_request.tpl | 2 +- view/templates/intros.tpl | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/mod/contacts.php b/mod/contacts.php index 89154eded9..f3b8a1deff 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -243,7 +243,7 @@ function _contact_update_profile($contact_id) { return; $updatefields = array("name", "nick", "url", "addr", "batch", "notify", "poll", "request", "confirm", - "poco", "network", "alias", "pubkey"); + "poco", "network", "alias"); $update = array(); if ($data["network"] == NETWORK_OSTATUS) { diff --git a/mod/follow.php b/mod/follow.php index 7b1957c93b..8affa11b56 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -94,6 +94,7 @@ function follow_content(&$a) { '$nickname' => "", '$name' => $ret["name"], '$url' => $ret["url"], + '$zrl' => zrl($ret["url"]), '$url_label' => t("Profile URL"), '$myaddr' => $myaddr, '$request' => $request, diff --git a/view/templates/auto_request.tpl b/view/templates/auto_request.tpl index 09e6163325..f938d63719 100644 --- a/view/templates/auto_request.tpl +++ b/view/templates/auto_request.tpl @@ -28,7 +28,7 @@ {{/if}} -{{if $url}}
{{$url_label}}
{{$url}}
{{/if}} +{{if $url}}
{{$url_label}}
{{$url}}
{{/if}} {{if $location}}
{{$location_label}}
{{$location}}
{{/if}} {{if $keywords}}
{{$keywords_label}}
{{$keywords}}
{{/if}} {{if $about}}
{{$about_label}}
{{$about}}
{{/if}} diff --git a/view/templates/dfrn_request.tpl b/view/templates/dfrn_request.tpl index d376b3a5d5..178586a7b7 100644 --- a/view/templates/dfrn_request.tpl +++ b/view/templates/dfrn_request.tpl @@ -27,7 +27,7 @@ {{/if}} -{{if $url}}
{{$url_label}}
{{$url}}
{{/if}} +{{if $url}}
{{$url_label}}
{{$url}}
{{/if}} {{if $location}}
{{$location_label}}
{{$location}}
{{/if}} {{if $keywords}}
{{$keywords_label}}
{{$keywords}}
{{/if}} {{if $about}}
{{$about_label}}
{{$about}}
{{/if}} diff --git a/view/templates/intros.tpl b/view/templates/intros.tpl index 8e5a24a6b8..b9f7f15418 100644 --- a/view/templates/intros.tpl +++ b/view/templates/intros.tpl @@ -4,7 +4,7 @@

{{$str_notifytype}} {{$notify_type}}

{{$fullname|escape:'html'}} -
{{$url_label}}
{{$url}}
+
{{$url_label}}
{{$url}}
{{if $location}}
{{$location_label}}
{{$location}}
{{/if}} {{if $gender}}
{{$gender_label}}
{{$gender}}
{{/if}} {{if $keywords}}
{{$keywords_label}}
{{$keywords}}
{{/if}} From 05ae3d528e67e6bd49336aaa53f5ba1f30f1c46d Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 19:48:29 +0200 Subject: [PATCH 057/443] A contact that couldn't be resolved is know known as "UNKNOWN" --- mod/contacts.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/contacts.php b/mod/contacts.php index f3b8a1deff..92463cd8de 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -238,8 +238,8 @@ function _contact_update_profile($contact_id) { $data = probe_url($r[0]["url"]); - // "Feed" is mostly a sign of communication problems - if (($data["network"] == NETWORK_FEED) AND ($data["network"] != $r[0]["network"])) + // "Feed" or "Unknown" is mostly a sign of communication problems + if ((in_array($data["network"], array(NETWORK_FEED, NETWORK_PHANTOM))) AND ($data["network"] != $r[0]["network"])) return; $updatefields = array("name", "nick", "url", "addr", "batch", "notify", "poll", "request", "confirm", From b037f977fa7ae81ed9911577e2da1f227f7aa333 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 21:17:28 +0200 Subject: [PATCH 058/443] The contact menu is now improved (for example a "Follow" link) --- include/conversation.php | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/include/conversation.php b/include/conversation.php index 5a84ca42a6..143dd4e424 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -204,7 +204,7 @@ function localize_item(&$item){ // we can't have a translation string with three positions but no distinguishable text // So here is the translate string. $txt = t('%1$s poked %2$s'); - + // now translate the verb $poked_t = trim(sprintf($txt, "","")); $txt = str_replace( $poked_t, t($verb), $txt); @@ -850,7 +850,12 @@ function item_photo_menu($item){ $cid = $item['contact-id']; } else { - $cid = 0; + $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' ORDER BY `uid` DESC LIMIT 1", + intval($item['uid']), normalise_link($item['author-link'])); + if ($r) + $cid = $r[0]["id"]; + else + $cid = 0; } } if(($cid) && (! $item['self'])) { @@ -877,10 +882,14 @@ function item_photo_menu($item){ t("View Photos") => $photos_link, t("Network Posts") => $posts_link, t("Edit Contact") => $contact_url, - t("Send PM") => $pm_url, - t("Poke") => $poke_link + t("Send PM") => $pm_url ); + if ($a->contacts[$clean_url]['network'] === NETWORK_DFRN) + $menu[t("Poke")] = $poke_link; + + if (($cid == 0) AND in_array($item['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) + $menu[t("Connect/Follow")] = $a->get_baseurl($ssl_state)."/follow?url=".urlencode($item['author-link']); $args = array('item' => $item, 'menu' => $menu); From 8a2d1fe301d22e0ccb2dce80e72c38d7ce4e976c Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 22:24:58 +0200 Subject: [PATCH 059/443] Show RedMatrix and use the proxy for the profile pictures --- mod/follow.php | 4 ++-- mod/notifications.php | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mod/follow.php b/mod/follow.php index 8affa11b56..2c8452b1bf 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -72,11 +72,11 @@ function follow_content(&$a) { if ($ret["addr"] != "") $header .= " <".$ret["addr"].">"; - $header .= " (".network_to_name($ret['network']).")"; + $header .= " (".network_to_name($ret['network'], $ret['url']).")"; $o = replace_macros($tpl,array( '$header' => htmlentities($header), - '$photo' => $ret["photo"], + '$photo' => proxy_url($ret["photo"]), '$desc' => "", '$pls_answer' => t('Please answer the following:'), '$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$ret["name"]), false, '', array(t('No'),t('Yes'))), diff --git a/mod/notifications.php b/mod/notifications.php index bcda5ba343..69ab592afe 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -166,7 +166,7 @@ function notifications_content(&$a) { '$intro_id' => $rr['intro_id'], '$madeby' => sprintf( t('suggested by %s'),$rr['name']), '$contact_id' => $rr['contact-id'], - '$photo' => ((x($rr,'fphoto')) ? $rr['fphoto'] : "images/person-175.jpg"), + '$photo' => ((x($rr,'fphoto')) ? proxy_url($rr['fphoto']) : "images/person-175.jpg"), '$fullname' => $rr['fname'], '$url' => zrl($rr['furl']), '$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''), @@ -220,7 +220,7 @@ function notifications_content(&$a) { if ($ret["addr"] != "") $header .= " <".$ret["addr"].">"; - $header .= " (".network_to_name($rr['gnetwork']).")"; + $header .= " (".network_to_name($rr['gnetwork'], $rr['url']).")"; $notif_content .= replace_macros($tpl, array( '$header' => htmlentities($header), @@ -368,7 +368,7 @@ function notifications_content(&$a) { foreach ($r as $it) { $notif_content .= replace_macros($not_tpl,array( '$item_link' => $a->get_baseurl(true).'/notify/view/'. $it['id'], - '$item_image' => $it['photo'], + '$item_image' => proxy_url($it['photo']), '$item_text' => strip_tags(bbcode($it['msg'])), '$item_when' => relative_date($it['date']) )); From a663e4693f5849fbca7ab2a0c456820f53bb67bc Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 4 Oct 2015 23:41:13 +0200 Subject: [PATCH 060/443] Further improvement of the contact menu --- include/conversation.php | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/include/conversation.php b/include/conversation.php index 143dd4e424..0a33740555 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -792,10 +792,16 @@ function best_link_url($item,&$sparkle,$ssl_state = false) { if($a->contacts[$clean_url]['network'] === NETWORK_DFRN) { $best_url = $a->get_baseurl($ssl_state) . '/redir/' . $a->contacts[$clean_url]['id']; $sparkle = true; - } - else + } else $best_url = $a->contacts[$clean_url]['url']; } + } elseif (local_user()) { + $r = q("SELECT `id`, `network` FROM `contact` WHERE `network` = '%s' AND `uid` = %d AND `nurl` = '%s'", + dbesc(NETWORK_DFRN), intval(local_user()), dbesc(normalise_link($clean_url))); + if ($r) { + $best_url = $a->get_baseurl($ssl_state).'/redir/'.$r[0]['id']; + $sparkle = true; + } } if(! $best_url) { if(strlen($item['author-link'])) @@ -848,13 +854,16 @@ function item_photo_menu($item){ $profile_link = zrl($profile_link); if(local_user() && local_user() == $item['uid'] && link_compare($item['url'],$item['author-link'])) { $cid = $item['contact-id']; - } - else { - $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' ORDER BY `uid` DESC LIMIT 1", - intval($item['uid']), normalise_link($item['author-link'])); - if ($r) + } else { + $r = q("SELECT `id`, `network` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' ORDER BY `uid` DESC LIMIT 1", + intval(local_user()), dbesc(normalise_link($item['author-link']))); + if ($r) { $cid = $r[0]["id"]; - else + + if ($r[0]["network"] == NETWORK_DIASPORA) + $pm_url = $a->get_baseurl($ssl_state) . '/message/new/' . $cid; + + } else $cid = 0; } } From caa9073a8f94416c7eb3bc1d03809e66f4e2e05e Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 5 Oct 2015 00:14:39 +0200 Subject: [PATCH 061/443] Remove all menu entries on the contact list that are empty --- include/Contact.php | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/include/Contact.php b/include/Contact.php index 920ec3c2b4..b0fdcbfb8a 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -219,10 +219,14 @@ function contact_photo_menu($contact) { $status_link = $profile_link . "?url=status"; $photos_link = $profile_link . "?url=photos"; $profile_link = $profile_link . "?url=profile"; - $pm_url = $a->get_baseurl() . '/message/new/' . $contact['id']; } - $poke_link = $a->get_baseurl() . '/poke/?f=&c=' . $contact['id']; + if (in_array($contact["network"], array(NETWORK_DFRN, NETWORK_DIASPORA))) + $pm_url = $a->get_baseurl() . '/message/new/' . $contact['id']; + + if ($contact["network"] == NETWORK_DFRN) + $poke_link = $a->get_baseurl() . '/poke/?f=&c=' . $contact['id']; + $contact_url = $a->get_baseurl() . '/contacts/' . $contact['id']; $posts_link = $a->get_baseurl() . '/network/0?nets=all&cid=' . $contact['id']; $contact_drop_link = $a->get_baseurl() . "/contacts/" . $contact['id'] . '/drop?confirm=1'; @@ -254,6 +258,7 @@ function contact_photo_menu($contact) { } } return $o;*/ + foreach($menu as $k=>$v){ if ($v[1]!="") { if(($v[0] !== t("Network Posts")) && ($v[0] !== t("Send PM")) && ($v[0] !== t('Edit Contact'))) @@ -262,7 +267,14 @@ function contact_photo_menu($contact) { $menu[$k][2] = 0; } } - return $menu; + + $menucondensed = array(); + + foreach ($menu AS $menuitem) + if ($menuitem[1] != "") + $menucondensed[] = $menuitem; + + return $menucondensed; }} From 133d38be2026a40bf9dd94e69762fdc34c34a389 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 5 Oct 2015 00:19:58 +0200 Subject: [PATCH 062/443] Rearranged the contact menu so that it fits the menu at the conversations. --- include/Contact.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Contact.php b/include/Contact.php index b0fdcbfb8a..e6ec8daade 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -233,7 +233,6 @@ function contact_photo_menu($contact) { $menu = Array( - 'poke' => array(t("Poke"), $poke_link), 'status' => array(t("View Status"), $status_link), 'profile' => array(t("View Profile"), $profile_link), 'photos' => array(t("View Photos"), $photos_link), @@ -241,6 +240,7 @@ function contact_photo_menu($contact) { 'edit' => array(t("Edit Contact"), $contact_url), 'drop' => array(t("Drop Contact"), $contact_drop_link), 'pm' => array(t("Send PM"), $pm_url), + 'poke' => array(t("Poke"), $poke_link), ); From d3ac3f8490ea4c5ab85848b1eaf0b820c56a7e8e Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 5 Oct 2015 08:08:59 +0200 Subject: [PATCH 063/443] Added the contact menu to the search as well. --- mod/dirfind.php | 12 ++++++++++++ view/templates/match.tpl | 18 +++++++++++++++++- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/mod/dirfind.php b/mod/dirfind.php index b0d578a3c6..488e10fa16 100644 --- a/mod/dirfind.php +++ b/mod/dirfind.php @@ -1,6 +1,7 @@ results)) { + $id = 0; + $tpl = get_markup_template('match.tpl'); foreach($j->results as $jj) { @@ -120,9 +123,16 @@ function dirfind_content(&$a, $prefix = "") { if ($jj->cid > 0) { $connlnk = ""; $conntxt = ""; + $contact = q("SELECT * FROM `contact` WHERE `id` = %d", + intval($jj->cid)); + if ($contact) + $photo_menu = contact_photo_menu($contact[0]); + else + $photo_menu = array(); } else { $connlnk = $a->get_baseurl().'/follow/?url='.(($jj->connect) ? $jj->connect : $jj->url); $conntxt = t('Connect'); + $photo_menu = array(array(t("Connect/Follow"), $connlnk)); } $jj->photo = str_replace("http:///photo/", get_server()."/photo/", $jj->photo); @@ -134,6 +144,8 @@ function dirfind_content(&$a, $prefix = "") { '$tags' => $jj->tags, '$conntxt' => $conntxt, '$connlnk' => $connlnk, + '$photo_menu' => $photo_menu, + '$id' => ++$id, )); } } diff --git a/view/templates/match.tpl b/view/templates/match.tpl index 32f046e6aa..3ebabf1854 100644 --- a/view/templates/match.tpl +++ b/view/templates/match.tpl @@ -1,9 +1,25 @@
-
+
{{$name}} + {{if $photo_menu}} + menu +
+
    + {{foreach $photo_menu as $k=>$c}} + {{if $c.2}} +
  • {{$c.0}}
  • + {{else}} +
  • {{$c.0}}
  • + {{/if}} + {{/foreach}} +
+
+ {{/if}}
From 607817d1b3c3347731cf11cf8bf99838a01f4980 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 5 Oct 2015 17:38:57 +0200 Subject: [PATCH 064/443] Vier: Avoid an error when calling the admin settings of "vier" when "vier" is not activated. --- view/templates/theme_admin_settings.tpl | 1 + view/theme/vier/config.php | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 view/templates/theme_admin_settings.tpl diff --git a/view/templates/theme_admin_settings.tpl b/view/templates/theme_admin_settings.tpl new file mode 100644 index 0000000000..fa04612b23 --- /dev/null +++ b/view/templates/theme_admin_settings.tpl @@ -0,0 +1 @@ +{{* Dummy file to avoid errors when installing themes *}} diff --git a/view/theme/vier/config.php b/view/theme/vier/config.php index 9f4fb0f93a..7c51b4ec95 100644 --- a/view/theme/vier/config.php +++ b/view/theme/vier/config.php @@ -9,6 +9,9 @@ function theme_content(&$a){ if(!local_user()) return; + if (!function_exists('get_vier_config')) + return; + $style = get_pconfig(local_user(), 'vier', 'style'); if ($style == "") @@ -45,6 +48,10 @@ function theme_post(&$a){ function theme_admin(&$a){ + + if (!function_exists('get_vier_config')) + return; + $style = get_config('vier', 'style'); $helperlist = get_config('vier', 'helperlist'); From 2676a0f0e5022c96e45679b1fa2507cb79df8658 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 5 Oct 2015 22:19:34 +0200 Subject: [PATCH 065/443] The proxy function sometimes kills embedded pictures ... --- include/bbcode.php | 30 +++++++++++++++++++++++++----- include/oembed.php | 2 +- include/text.php | 4 ++-- 3 files changed, 28 insertions(+), 8 deletions(-) diff --git a/include/bbcode.php b/include/bbcode.php index 13061958c5..a4ad09ccf5 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -2,7 +2,23 @@ require_once("include/oembed.php"); require_once('include/event.php'); require_once('include/map.php'); +require_once('mod/proxy.php'); +function bb_PictureCacheExt($matches) { + if (strpos($matches[3], "data:image/") === 0) + return ($matches[0]); + + $matches[3] = proxy_url($matches[3]); + return "[img=".$matches[1]."x".$matches[2]."]".$matches[3]."[/img]"; +} + +function bb_PictureCache($matches) { + if (strpos($matches[1], "data:image/") === 0) + return ($matches[0]); + + $matches[1] = proxy_url($matches[1]); + return "[img]".$matches[1]."[/img]"; +} function bb_map_coords($match) { // the extra space in the following line is intentional @@ -101,9 +117,9 @@ function bb_attachment($Text, $simplehtml = false, $tryoembed = true) { $text = $oembed; else { if (($image != "") AND !strstr(strtolower($oembed), "
', $url, $image, $title); + $text .= sprintf('
', $url, proxy_url($image), $title); elseif (($preview != "") AND !strstr(strtolower($oembed), "
', $url, $preview, $title); + $text .= sprintf('
', $url, proxy_url($preview), $title); $text .= $oembed; @@ -455,7 +471,7 @@ function bb_replace_images($body, $images) { // We're depending on the property of 'foreach' (specified on the PHP website) that // it loops over the array starting from the first element and going sequentially // to the last element - $newbody = str_replace('[$#saved_image' . $cnt . '#$]', '' . t('Image/photo') . '', $newbody); + $newbody = str_replace('[$#saved_image' . $cnt . '#$]', '' . t('Image/photo') . '', $newbody); $cnt++; } @@ -585,7 +601,7 @@ function bb_ShareAttributes($share, $simplehtml) { default: $headline = trim($share[1]).'
'; if ($avatar != "") - $headline .= ''; + $headline .= ''; $headline .= sprintf(t('%s wrote the following post'.$reldate.':'), $profile, $author, $link); $headline .= "
"; @@ -1102,13 +1118,17 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal "
" . $t_wrote . "
$2
", $Text); + // [img=widthxheight]image source[/img] - //$Text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '', $Text); + $Text = preg_replace_callback("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", 'bb_PictureCacheExt', $Text); + $Text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '', $Text); $Text = preg_replace("/\[zmg\=([0-9]*)x([0-9]*)\](.*?)\[\/zmg\]/ism", '', $Text); // Images // [img]pathtoimage[/img] + $Text = preg_replace_callback("/\[img\](.*?)\[\/img\]/ism", 'bb_PictureCache', $Text); + $Text = preg_replace("/\[img\](.*?)\[\/img\]/ism", '' . t('Image/photo') . '', $Text); $Text = preg_replace("/\[zmg\](.*?)\[\/zmg\]/ism", '' . t('Image/photo') . '', $Text); diff --git a/include/oembed.php b/include/oembed.php index d4d7ce05e1..0e12383603 100755 --- a/include/oembed.php +++ b/include/oembed.php @@ -157,7 +157,7 @@ function oembed_format_object($j){ case "rich": { // not so safe.. if (!get_config("system","no_oembed_rich_content")) - $ret.= $jhtml; + $ret.= proxy_parse_html($jhtml); }; break; } diff --git a/include/text.php b/include/text.php index 0002f074e9..1d27963cc2 100644 --- a/include/text.php +++ b/include/text.php @@ -1410,8 +1410,8 @@ function prepare_body(&$item,$attach = false, $preview = false) { put_item_in_cache($item, true); $s = $item["rendered-html"]; - require_once("mod/proxy.php"); - $s = proxy_parse_html($s); + //require_once("mod/proxy.php"); + //$s = proxy_parse_html($s); $prep_arr = array('item' => $item, 'html' => $s, 'preview' => $preview); call_hooks('prepare_body', $prep_arr); From 7ed61b2edc50b8ff51f48446afc2b9743296d107 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 5 Oct 2015 22:25:14 +0200 Subject: [PATCH 066/443] Removed "proxy_parse_html" since it is now done in the bbcode function. --- include/text.php | 3 --- mod/display.php | 12 ++++++------ mod/follow.php | 2 +- mod/notifications.php | 2 +- 4 files changed, 8 insertions(+), 11 deletions(-) diff --git a/include/text.php b/include/text.php index 1d27963cc2..c5b28b508e 100644 --- a/include/text.php +++ b/include/text.php @@ -1410,9 +1410,6 @@ function prepare_body(&$item,$attach = false, $preview = false) { put_item_in_cache($item, true); $s = $item["rendered-html"]; - //require_once("mod/proxy.php"); - //$s = proxy_parse_html($s); - $prep_arr = array('item' => $item, 'html' => $s, 'preview' => $preview); call_hooks('prepare_body', $prep_arr); $s = $prep_arr['html']; diff --git a/mod/display.php b/mod/display.php index be5dd7cae3..f945f9fe60 100644 --- a/mod/display.php +++ b/mod/display.php @@ -115,8 +115,8 @@ function display_fetchauthor($a, $item) { if (count($r)) { $profiledata["photo"] = proxy_url($r[0]["photo"]); - $profiledata["address"] = proxy_parse_html(bbcode($r[0]["location"])); - $profiledata["about"] = proxy_parse_html(bbcode($r[0]["about"])); + $profiledata["address"] = bbcode($r[0]["location"]); + $profiledata["about"] = bbcode($r[0]["about"]); if ($r[0]["nick"] != "") $profiledata["nickname"] = $r[0]["nick"]; } @@ -127,9 +127,9 @@ function display_fetchauthor($a, $item) { if ($profiledata["photo"] == "") $profiledata["photo"] = proxy_url($r[0]["avatar"]); if ($profiledata["address"] == "") - $profiledata["address"] = proxy_parse_html(bbcode($r[0]["location"])); + $profiledata["address"] = bbcode($r[0]["location"]); if ($profiledata["about"] == "") - $profiledata["about"] = proxy_parse_html(bbcode($r[0]["about"])); + $profiledata["about"] = bbcode($r[0]["about"]); if (($profiledata["nickname"] == "") AND ($r[0]["nick"] != "")) $profiledata["nickname"] = $r[0]["nick"]; } @@ -193,8 +193,8 @@ function display_fetchauthor($a, $item) { $r = q("SELECT `avatar`, `nick`, `location`, `about` FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($profiledata["url"]))); if (count($r)) { $profiledata["photo"] = proxy_url($r[0]["avatar"]); - $profiledata["address"] = proxy_parse_html(bbcode($r[0]["location"])); - $profiledata["about"] = proxy_parse_html(bbcode($r[0]["about"])); + $profiledata["address"] = bbcode($r[0]["location"]); + $profiledata["about"] = bbcode($r[0]["about"]); if ($r[0]["nick"] != "") $profiledata["nickname"] = $r[0]["nick"]; } diff --git a/mod/follow.php b/mod/follow.php index 2c8452b1bf..25169e403a 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -100,7 +100,7 @@ function follow_content(&$a) { '$request' => $request, '$location' => bbcode($r[0]["location"]), '$location_label' => t("Location:"), - '$about' => proxy_parse_html(bbcode($r[0]["about"], false, false)), + '$about' => bbcode($r[0]["about"], false, false), '$about_label' => t("About:"), '$keywords' => $r[0]["keywords"], '$keywords_label' => t("Tags:") diff --git a/mod/notifications.php b/mod/notifications.php index 69ab592afe..95ebff96f3 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -235,7 +235,7 @@ function notifications_content(&$a) { '$fullname' => $rr['name'], '$location' => bbcode($rr['glocation'], false, false), '$location_label' => t('Location:'), - '$about' => proxy_parse_html(bbcode($rr['gabout'], false, false)), + '$about' => bbcode($rr['gabout'], false, false), '$about_label' => t('About:'), '$keywords' => $rr['gkeywords'], '$keywords_label' => t('Tags:'), From 901b95e93564e1adea3131e744af99e1f31fbe98 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 6 Oct 2015 06:56:31 +0200 Subject: [PATCH 067/443] Hide some profile data if not connected. --- mod/follow.php | 5 +++++ mod/notifications.php | 7 +++++++ mod/poco.php | 7 +++++++ 3 files changed, 19 insertions(+) diff --git a/mod/follow.php b/mod/follow.php index 2c8452b1bf..4a4429f2e6 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -67,6 +67,11 @@ function follow_content(&$a) { if (!$r) $r = array(array("location" => "", "about" => "", "keywords" => "")); + if($ret['network'] === NETWORK_DIASPORA) { + $r[0]["location"] = ""; + $r[0]["about"] = ""; + } + $header = $ret["name"]; if ($ret["addr"] != "") diff --git a/mod/notifications.php b/mod/notifications.php index 69ab592afe..6c0391e4e9 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -222,6 +222,13 @@ function notifications_content(&$a) { $header .= " (".network_to_name($rr['gnetwork'], $rr['url']).")"; + // Don't show these data until you are connected. Diaspora is doing the same. + if($rr['gnetwork'] === NETWORK_DIASPORA) { + $rr['glocation'] = ""; + $rr['gabout'] = ""; + $rr['ggender'] = ""; + } + $notif_content .= replace_macros($tpl, array( '$header' => htmlentities($header), '$str_notifytype' => t('Notification type: '), diff --git a/mod/poco.php b/mod/poco.php index f84fc964d9..4d16c6ed29 100644 --- a/mod/poco.php +++ b/mod/poco.php @@ -226,6 +226,13 @@ function poco_init(&$a) { Cache::set("about:".$rr['updated'].":".$rr['nurl'],$about); } + // Non connected persons can only see the keywords of a Diaspora account + if ($rr['network'] == NETWORK_DIASPORA) { + $rr['location'] = ""; + $about = ""; + $rr['gender'] = ""; + } + $entry = array(); if($fields_ret['id']) $entry['id'] = (int)$rr['id']; From 14e17b944fb992317ccccdfeff9b9906b15ef44f Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 6 Oct 2015 18:31:08 +0200 Subject: [PATCH 068/443] Reworked fetching of contact data on "display" page --- mod/display.php | 84 +++++++++++++++++++------------------------ mod/notifications.php | 3 +- 2 files changed, 38 insertions(+), 49 deletions(-) diff --git a/mod/display.php b/mod/display.php index f945f9fe60..46574bd064 100644 --- a/mod/display.php +++ b/mod/display.php @@ -101,39 +101,6 @@ function display_fetchauthor($a, $item) { $profiledata["url"] = $item["author-link"]; $profiledata["network"] = $item["network"]; - // Fetching further contact data from the contact table - $r = q("SELECT `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d AND `network` = '%s'", - dbesc(normalise_link($profiledata["url"])), intval($item["uid"]), dbesc($item["network"])); - - if (!count($r)) - $r = q("SELECT `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d", - dbesc(normalise_link($profiledata["url"])), intval($item["uid"])); - - if (!count($r)) - $r = q("SELECT `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = 0", - dbesc(normalise_link($profiledata["url"]))); - - if (count($r)) { - $profiledata["photo"] = proxy_url($r[0]["photo"]); - $profiledata["address"] = bbcode($r[0]["location"]); - $profiledata["about"] = bbcode($r[0]["about"]); - if ($r[0]["nick"] != "") - $profiledata["nickname"] = $r[0]["nick"]; - } - - // Fetching profile data from unique contacts - $r = q("SELECT `avatar`, `nick`, `location`, `about` FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($profiledata["url"]))); - if (count($r)) { - if ($profiledata["photo"] == "") - $profiledata["photo"] = proxy_url($r[0]["avatar"]); - if ($profiledata["address"] == "") - $profiledata["address"] = bbcode($r[0]["location"]); - if ($profiledata["about"] == "") - $profiledata["about"] = bbcode($r[0]["about"]); - if (($profiledata["nickname"] == "") AND ($r[0]["nick"] != "")) - $profiledata["nickname"] = $r[0]["nick"]; - } - // Check for a repeated message $skip = false; $body = trim($item["body"]); @@ -187,28 +154,49 @@ function display_fetchauthor($a, $item) { $profiledata["address"] = ""; $profiledata["about"] = ""; + } - // Fetching profile data from unique contacts - if ($profiledata["url"] != "") { - $r = q("SELECT `avatar`, `nick`, `location`, `about` FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($profiledata["url"]))); - if (count($r)) { - $profiledata["photo"] = proxy_url($r[0]["avatar"]); - $profiledata["address"] = bbcode($r[0]["location"]); - $profiledata["about"] = bbcode($r[0]["about"]); - if ($r[0]["nick"] != "") - $profiledata["nickname"] = $r[0]["nick"]; - } + // Fetching further contact data from the contact table + $r = q("SELECT `uid`, `network`, `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d AND `network` = '%s'", + dbesc(normalise_link($profiledata["url"])), intval($item["uid"]), dbesc($item["network"])); + + if (!count($r)) + $r = q("SELECT `uid`, `network`, `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d", + dbesc(normalise_link($profiledata["url"])), intval($item["uid"])); + + if (!count($r)) + $r = q("SELECT `uid`, `network`, `photo`, `nick`, `location`, `about` FROM `contact` WHERE `nurl` = '%s' AND `uid` = 0", + dbesc(normalise_link($profiledata["url"]))); + + if (count($r)) { + if ((($r[0]["uid"] != local_user()) OR !local_user()) AND ($profiledata["network"] == NETWORK_DIASPORA)) { + $r[0]["location"] = ""; + $r[0]["about"] = ""; } + + $profiledata["photo"] = proxy_url($r[0]["photo"]); + $profiledata["address"] = bbcode($r[0]["location"]); + $profiledata["about"] = bbcode($r[0]["about"]); + if ($r[0]["nick"] != "") + $profiledata["nickname"] = $r[0]["nick"]; + } + + // Fetching profile data from unique contacts + $r = q("SELECT `avatar`, `nick`, `location`, `about` FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($profiledata["url"]))); + if (count($r)) { + if ($profiledata["photo"] == "") + $profiledata["photo"] = proxy_url($r[0]["avatar"]); + if (($profiledata["address"] == "") AND ($profiledata["network"] != NETWORK_DIASPORA)) + $profiledata["address"] = bbcode($r[0]["location"]); + if (($profiledata["about"] == "") AND ($profiledata["network"] != NETWORK_DIASPORA)) + $profiledata["about"] = bbcode($r[0]["about"]); + if (($profiledata["nickname"] == "") AND ($r[0]["nick"] != "")) + $profiledata["nickname"] = $r[0]["nick"]; } if (local_user()) { if (in_array($profiledata["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))) $profiledata["remoteconnect"] = $a->get_baseurl()."/follow?url=".urlencode($profiledata["url"]); - //if ($profiledata["network"] == NETWORK_DFRN) { - // $connect = str_replace("/profile/", "/dfrn_request/", $profiledata["url"])."&addr=".bin2hex($a->get_baseurl()."/profile/".$a->user["nickname"]); - // $profiledata["remoteconnect"] = $connect; - //} elseif ($profiledata["network"] == NETWORK_DIASPORA) - // $profiledata["remoteconnect"] = $a->get_baseurl()."/contacts?add=".GetProfileUsername($profiledata["url"], "", true); } elseif ($profiledata["network"] == NETWORK_DFRN) { $connect = str_replace("/profile/", "/dfrn_request/", $profiledata["url"]); $profiledata["remoteconnect"] = $connect; diff --git a/mod/notifications.php b/mod/notifications.php index bee33fa607..fadd1e94e5 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -250,7 +250,8 @@ function notifications_content(&$a) { '$gender_label' => t('Gender:'), '$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''), '$activity' => array('activity', t('Post a new friend activity'), (intval(get_pconfig(local_user(),'system','post_newfriend')) ? '1' : 0), t('if applicable')), - '$url' => zrl($rr['url']), + '$url' => $rr['url'], + '$zrl' => zrl($rr['url']), '$url_label' => t('Profile URL'), '$knowyou' => $knowyou, '$approve' => t('Approve'), From b4ec07ab27df881e9060472f078f6e49b370faf1 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 7 Oct 2015 06:20:54 +0200 Subject: [PATCH 069/443] IT: update to the strings --- view/it/messages.po | 11198 +++++++++++++++++++++--------------------- view/it/strings.php | 2008 ++++---- 2 files changed, 6701 insertions(+), 6505 deletions(-) diff --git a/view/it/messages.po b/view/it/messages.po index 292e417db5..efe44618a7 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -15,8 +15,8 @@ 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-01 12:05+0000\n" +"POT-Creation-Date: 2015-09-22 09:58+0200\n" +"PO-Revision-Date: 2015-10-06 17:43+0000\n" "Last-Translator: Sandro Santilli \n" "Language-Team: Italian (http://www.transifex.com/Friendica/friendica/language/it/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,3084 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: object/Item.php:95 +msgid "This entry was edited" +msgstr "Questa voce è stata modificata" + +#: object/Item.php:117 mod/photos.php:1379 mod/content.php:622 +msgid "Private Message" +msgstr "Messaggio privato" + +#: object/Item.php:121 mod/settings.php:694 mod/content.php:730 +msgid "Edit" +msgstr "Modifica" + +#: object/Item.php:130 mod/photos.php:1672 mod/content.php:439 +#: mod/content.php:742 include/conversation.php:612 +msgid "Select" +msgstr "Seleziona" + +#: object/Item.php:131 mod/admin.php:1087 mod/photos.php:1673 +#: mod/contacts.php:801 mod/settings.php:695 mod/group.php:171 +#: mod/content.php:440 mod/content.php:743 include/conversation.php:613 +msgid "Delete" +msgstr "Rimuovi" + +#: object/Item.php:134 mod/content.php:765 +msgid "save to folder" +msgstr "salva nella cartella" + +#: object/Item.php:196 mod/content.php:755 +msgid "add star" +msgstr "aggiungi a speciali" + +#: object/Item.php:197 mod/content.php:756 +msgid "remove star" +msgstr "rimuovi da speciali" + +#: object/Item.php:198 mod/content.php:757 +msgid "toggle star status" +msgstr "Inverti stato preferito" + +#: object/Item.php:201 mod/content.php:760 +msgid "starred" +msgstr "preferito" + +#: object/Item.php:209 +msgid "ignore thread" +msgstr "ignora la discussione" + +#: object/Item.php:210 +msgid "unignore thread" +msgstr "non ignorare la discussione" + +#: object/Item.php:211 +msgid "toggle ignore status" +msgstr "inverti stato \"Ignora\"" + +#: object/Item.php:214 mod/ostatus_subscribe.php:69 +msgid "ignored" +msgstr "ignorato" + +#: object/Item.php:221 mod/content.php:761 +msgid "add tag" +msgstr "aggiungi tag" + +#: object/Item.php:232 mod/photos.php:1561 mod/content.php:686 +msgid "I like this (toggle)" +msgstr "Mi piace (clic per cambiare)" + +#: object/Item.php:232 mod/content.php:686 +msgid "like" +msgstr "mi piace" + +#: object/Item.php:233 mod/photos.php:1562 mod/content.php:687 +msgid "I don't like this (toggle)" +msgstr "Non mi piace (clic per cambiare)" + +#: object/Item.php:233 mod/content.php:687 +msgid "dislike" +msgstr "non mi piace" + +#: object/Item.php:235 mod/content.php:689 +msgid "Share this" +msgstr "Condividi questo" + +#: object/Item.php:235 mod/content.php:689 +msgid "share" +msgstr "condividi" + +#: object/Item.php:318 include/conversation.php:665 +msgid "Categories:" +msgstr "Categorie:" + +#: object/Item.php:319 include/conversation.php:666 +msgid "Filed under:" +msgstr "Archiviato in:" + +#: object/Item.php:328 object/Item.php:329 mod/content.php:473 +#: mod/content.php:854 mod/content.php:855 include/conversation.php:653 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" + +#: object/Item.php:330 mod/content.php:856 +msgid "to" +msgstr "a" + +#: object/Item.php:331 +msgid "via" +msgstr "via" + +#: object/Item.php:332 mod/content.php:857 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" + +#: object/Item.php:333 mod/content.php:858 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca" + +#: object/Item.php:342 mod/content.php:483 mod/content.php:866 +#: include/conversation.php:673 +#, php-format +msgid "%s from %s" +msgstr "%s da %s" + +#: object/Item.php:363 object/Item.php:679 mod/photos.php:1583 +#: mod/photos.php:1627 mod/photos.php:1715 mod/content.php:711 boot.php:764 +msgid "Comment" +msgstr "Commento" + +#: object/Item.php:366 mod/message.php:335 mod/message.php:566 +#: mod/editpost.php:124 mod/wallmessage.php:156 mod/photos.php:1564 +#: mod/content.php:501 mod/content.php:885 include/conversation.php:691 +#: include/conversation.php:1074 +msgid "Please wait" +msgstr "Attendi" + +#: object/Item.php:389 mod/content.php:605 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" + +#: object/Item.php:391 object/Item.php:404 mod/content.php:607 +#: include/text.php:2038 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "commento" + +#: object/Item.php:392 mod/content.php:608 boot.php:765 include/items.php:5147 +#: include/contact_widgets.php:205 +msgid "show more" +msgstr "mostra di più" + +#: object/Item.php:677 mod/photos.php:1581 mod/photos.php:1625 +#: mod/photos.php:1713 mod/content.php:709 +msgid "This is you" +msgstr "Questo sei tu" + +#: object/Item.php:680 mod/fsuggest.php:107 mod/message.php:336 +#: mod/message.php:565 mod/events.php:511 mod/photos.php:1104 +#: mod/photos.php:1223 mod/photos.php:1533 mod/photos.php:1584 +#: mod/photos.php:1628 mod/photos.php:1716 mod/contacts.php:596 +#: mod/invite.php:140 mod/profiles.php:683 mod/manage.php:110 mod/poke.php:199 +#: mod/localtime.php:45 mod/install.php:250 mod/install.php:288 +#: mod/content.php:712 mod/mood.php:137 mod/crepair.php:191 +#: view/theme/diabook/theme.php:633 view/theme/diabook/config.php:148 +#: view/theme/vier/config.php:56 view/theme/dispy/config.php:70 +#: view/theme/duepuntozero/config.php:59 view/theme/quattro/config.php:64 +#: view/theme/cleanzero/config.php:80 +msgid "Submit" +msgstr "Invia" + +#: object/Item.php:681 mod/content.php:713 +msgid "Bold" +msgstr "Grassetto" + +#: object/Item.php:682 mod/content.php:714 +msgid "Italic" +msgstr "Corsivo" + +#: object/Item.php:683 mod/content.php:715 +msgid "Underline" +msgstr "Sottolineato" + +#: object/Item.php:684 mod/content.php:716 +msgid "Quote" +msgstr "Citazione" + +#: object/Item.php:685 mod/content.php:717 +msgid "Code" +msgstr "Codice" + +#: object/Item.php:686 mod/content.php:718 +msgid "Image" +msgstr "Immagine" + +#: object/Item.php:687 mod/content.php:719 +msgid "Link" +msgstr "Link" + +#: object/Item.php:688 mod/content.php:720 +msgid "Video" +msgstr "Video" + +#: object/Item.php:689 mod/editpost.php:145 mod/events.php:509 +#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 +#: mod/content.php:721 include/conversation.php:1089 +msgid "Preview" +msgstr "Anteprima" + +#: index.php:225 mod/apps.php:7 +msgid "You must be logged in to use addons. " +msgstr "Devi aver effettuato il login per usare gli addons." + +#: index.php:269 mod/help.php:42 mod/p.php:16 mod/p.php:25 +msgid "Not Found" +msgstr "Non trovato" + +#: index.php:272 mod/help.php:45 +msgid "Page not found." +msgstr "Pagina non trovata." + +#: index.php:381 mod/profperm.php:19 mod/group.php:72 +msgid "Permission denied" +msgstr "Permesso negato" + +#: index.php:382 mod/fsuggest.php:78 mod/files.php:170 +#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 +#: mod/editpost.php:10 mod/dfrn_confirm.php:55 mod/events.php:164 +#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79 +#: mod/wallmessage.php:103 mod/nogroup.php:25 mod/wall_upload.php:70 +#: mod/wall_upload.php:71 mod/api.php:26 mod/api.php:31 mod/photos.php:156 +#: mod/photos.php:1072 mod/register.php:42 mod/attach.php:33 +#: mod/contacts.php:350 mod/follow.php:9 mod/follow.php:44 mod/follow.php:83 +#: mod/uimport.php:23 mod/allfriends.php:9 mod/invite.php:15 +#: mod/invite.php:101 mod/settings.php:20 mod/settings.php:116 +#: mod/settings.php:619 mod/display.php:508 mod/profiles.php:165 +#: mod/profiles.php:615 mod/wall_attach.php:60 mod/wall_attach.php:61 +#: mod/suggest.php:58 mod/repair_ostatus.php:9 mod/manage.php:96 +#: mod/delegate.php:12 mod/viewcontacts.php:24 mod/notes.php:20 +#: mod/poke.php:135 mod/ostatus_subscribe.php:9 mod/profile_photo.php:19 +#: mod/profile_photo.php:169 mod/profile_photo.php:180 +#: mod/profile_photo.php:193 mod/group.php:19 mod/regmod.php:110 +#: mod/item.php:170 mod/item.php:186 mod/mood.php:114 mod/network.php:4 +#: mod/crepair.php:120 include/items.php:5036 +msgid "Permission denied." +msgstr "Permesso negato." + +#: index.php:441 +msgid "toggle mobile" +msgstr "commuta tema mobile" + +#: mod/update_notes.php:37 mod/update_profile.php:41 +#: mod/update_community.php:18 mod/update_network.php:25 +#: mod/update_display.php:22 +msgid "[Embedded content - reload page to view]" +msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" + +#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/dfrn_confirm.php:120 +#: mod/crepair.php:134 +msgid "Contact not found." +msgstr "Contatto non trovato." + +#: mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Suggerimento di amicizia inviato." + +#: mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Suggerisci amici" + +#: mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Suggerisci un amico a %s" + +#: mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Questa presentazione è già stata accettata." + +#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." + +#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." + +#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Attenzione: l'indirizzo del profilo non ha una foto." + +#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d parametro richiesto non è stato trovato all'indirizzo dato" +msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" + +#: mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Presentazione completa." + +#: mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Errore di comunicazione." + +#: mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profilo non disponibile." + +#: mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s ha ricevuto troppe richieste di connessione per oggi." + +#: mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Sono state attivate le misure di protezione contro lo spam." + +#: mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Gli amici sono pregati di riprovare tra 24 ore." + +#: mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Invalid locator" + +#: mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Indirizzo email non valido." + +#: mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "Questo account non è stato configurato per l'email. Richiesta fallita." + +#: mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "Impossibile risolvere il tuo nome nella posizione indicata." + +#: mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Ti sei già presentato qui." + +#: mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Pare che tu e %s siate già amici." + +#: mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Indirizzo profilo non valido." + +#: mod/dfrn_request.php:507 include/follow.php:70 +msgid "Disallowed profile URL." +msgstr "Indirizzo profilo non permesso." + +#: mod/dfrn_request.php:576 mod/contacts.php:194 +msgid "Failed to update contact record." +msgstr "Errore nell'aggiornamento del contatto." + +#: mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "La tua presentazione è stata inviata." + +#: mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Accedi per confermare la presentazione." + +#: mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." + +#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "Conferma" + +#: mod/dfrn_request.php:686 +msgid "Hide this contact" +msgstr "Nascondi questo contatto" + +#: mod/dfrn_request.php:689 +#, php-format +msgid "Welcome home %s." +msgstr "Bentornato a casa %s." + +#: mod/dfrn_request.php:690 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Conferma la tua richiesta di connessione con %s." + +#: mod/dfrn_request.php:732 mod/dfrn_confirm.php:753 include/items.php:4250 +msgid "[Name Withheld]" +msgstr "[Nome Nascosto]" + +#: mod/dfrn_request.php:777 mod/photos.php:942 mod/videos.php:187 +#: mod/search.php:93 mod/search.php:98 mod/display.php:223 +#: mod/community.php:18 mod/viewcontacts.php:19 mod/directory.php:35 +msgid "Public access denied." +msgstr "Accesso negato." + +#: mod/dfrn_request.php:819 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:" + +#: mod/dfrn_request.php: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 "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:845 +msgid "Friend/Connection Request" +msgstr "Richieste di amicizia/connessione" + +#: mod/dfrn_request.php:846 +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:847 mod/follow.php:58 +msgid "Please answer the following:" +msgstr "Rispondi:" + +#: mod/dfrn_request.php:848 mod/follow.php:59 +#, php-format +msgid "Does %s know you?" +msgstr "%s ti conosce?" + +#: mod/dfrn_request.php:848 mod/api.php:106 mod/register.php:236 +#: mod/follow.php:59 mod/settings.php:1068 mod/settings.php:1074 +#: mod/settings.php:1082 mod/settings.php:1086 mod/settings.php:1091 +#: mod/settings.php:1097 mod/settings.php:1103 mod/settings.php:1109 +#: mod/settings.php:1135 mod/settings.php:1136 mod/settings.php:1137 +#: mod/settings.php:1138 mod/settings.php:1139 mod/profiles.php:658 +#: mod/profiles.php:662 +msgid "No" +msgstr "No" + +#: mod/dfrn_request.php:848 mod/message.php:210 mod/api.php:105 +#: mod/register.php:235 mod/contacts.php:441 mod/follow.php:59 +#: mod/settings.php:1068 mod/settings.php:1074 mod/settings.php:1082 +#: mod/settings.php:1086 mod/settings.php:1091 mod/settings.php:1097 +#: mod/settings.php:1103 mod/settings.php:1109 mod/settings.php:1135 +#: mod/settings.php:1136 mod/settings.php:1137 mod/settings.php:1138 +#: mod/settings.php:1139 mod/profiles.php:658 mod/profiles.php:661 +#: mod/suggest.php:29 include/items.php:4868 +msgid "Yes" +msgstr "Si" + +#: mod/dfrn_request.php:852 mod/follow.php:60 +msgid "Add a personal note:" +msgstr "Aggiungi una nota personale:" + +#: 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 Social Web" + +#: mod/dfrn_request.php:856 mod/settings.php:793 +#: include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: mod/dfrn_request.php:857 +#, 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:858 mod/follow.php:66 +msgid "Your Identity Address:" +msgstr "L'indirizzo della tua identità:" + +#: mod/dfrn_request.php:861 mod/follow.php:69 +msgid "Submit Request" +msgstr "Invia richiesta" + +#: mod/dfrn_request.php:862 mod/message.php:213 mod/editpost.php:148 +#: mod/fbrowser.php:89 mod/fbrowser.php:125 mod/photos.php:225 +#: mod/photos.php:314 mod/contacts.php:444 mod/videos.php:121 +#: mod/follow.php:70 mod/tagrm.php:11 mod/tagrm.php:94 mod/settings.php:633 +#: mod/settings.php:659 mod/suggest.php:32 include/items.php:4871 +#: include/conversation.php:1093 +msgid "Cancel" +msgstr "Annulla" + +#: mod/files.php:156 mod/videos.php:373 include/text.php:1460 +msgid "View Video" +msgstr "Guarda Video" + +#: mod/profile.php:21 include/identity.php:77 +msgid "Requested profile is not available." +msgstr "Profilo richiesto non disponibile." + +#: mod/profile.php:155 mod/display.php:343 +msgid "Access to this profile has been restricted." +msgstr "L'accesso a questo profilo è stato limitato." + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Consigli per i Nuovi Utenti" + +#: mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." + +#: mod/notifications.php:35 mod/notifications.php:175 +#: mod/notifications.php:234 +msgid "Discard" +msgstr "Scarta" + +#: mod/notifications.php:51 mod/notifications.php:174 +#: mod/notifications.php:233 mod/contacts.php:556 mod/contacts.php:623 +#: mod/contacts.php:799 +msgid "Ignore" +msgstr "Ignora" + +#: mod/notifications.php:78 +msgid "System" +msgstr "Sistema" + +#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 +msgid "Network" +msgstr "Rete" + +#: mod/notifications.php:90 mod/network.php:375 +msgid "Personal" +msgstr "Personale" + +#: mod/notifications.php:96 view/theme/diabook/theme.php:123 +#: include/nav.php:105 include/nav.php:156 +msgid "Home" +msgstr "Home" + +#: mod/notifications.php:102 include/nav.php:161 +msgid "Introductions" +msgstr "Presentazioni" + +#: mod/notifications.php:127 +msgid "Show Ignored Requests" +msgstr "Mostra richieste ignorate" + +#: mod/notifications.php:127 +msgid "Hide Ignored Requests" +msgstr "Nascondi richieste ignorate" + +#: mod/notifications.php:159 mod/notifications.php:209 +msgid "Notification type: " +msgstr "Tipo di notifica: " + +#: mod/notifications.php:160 +msgid "Friend Suggestion" +msgstr "Amico suggerito" + +#: mod/notifications.php:162 +#, php-format +msgid "suggested by %s" +msgstr "sugerito da %s" + +#: mod/notifications.php:167 mod/notifications.php:227 mod/contacts.php:629 +msgid "Hide this contact from others" +msgstr "Nascondi questo contatto agli altri" + +#: mod/notifications.php:168 mod/notifications.php:228 +msgid "Post a new friend activity" +msgstr "Invia una attività \"è ora amico con\"" + +#: mod/notifications.php:168 mod/notifications.php:228 +msgid "if applicable" +msgstr "se applicabile" + +#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1085 +msgid "Approve" +msgstr "Approva" + +#: mod/notifications.php:191 +msgid "Claims to be known to you: " +msgstr "Dice di conoscerti: " + +#: mod/notifications.php:191 +msgid "yes" +msgstr "si" + +#: mod/notifications.php:191 +msgid "no" +msgstr "no" + +#: 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 "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: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 "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:203 +msgid "Friend" +msgstr "Amico" + +#: mod/notifications.php:204 +msgid "Sharer" +msgstr "Condivisore" + +#: mod/notifications.php:204 +msgid "Fan/Admirer" +msgstr "Fan/Ammiratore" + +#: mod/notifications.php:210 +msgid "Friend/Connect Request" +msgstr "Richiesta amicizia/connessione" + +#: mod/notifications.php:210 +msgid "New Follower" +msgstr "Qualcuno inizia a seguirti" + +#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 +#: mod/directory.php:152 include/event.php:42 include/identity.php:268 +#: include/bb2diaspora.php:170 +msgid "Location:" +msgstr "Posizione:" + +#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 +#: include/identity.php:582 +msgid "About:" +msgstr "Informazioni:" + +#: mod/notifications.php:224 include/identity.php:576 +msgid "Tags:" +msgstr "Tag:" + +#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 +#: include/identity.php:541 +msgid "Gender:" +msgstr "Genere:" + +#: mod/notifications.php:240 +msgid "No introductions." +msgstr "Nessuna presentazione." + +#: mod/notifications.php:243 include/nav.php:164 +msgid "Notifications" +msgstr "Notifiche" + +#: mod/notifications.php:281 mod/notifications.php:410 +#: mod/notifications.php:501 +#, php-format +msgid "%s liked %s's post" +msgstr "a %s è piaciuto il messaggio di %s" + +#: mod/notifications.php:291 mod/notifications.php:420 +#: mod/notifications.php:511 +#, php-format +msgid "%s disliked %s's post" +msgstr "a %s non è piaciuto il messaggio di %s" + +#: mod/notifications.php:306 mod/notifications.php:435 +#: mod/notifications.php:526 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s è ora amico di %s" + +#: mod/notifications.php:313 mod/notifications.php:442 +#, php-format +msgid "%s created a new post" +msgstr "%s a creato un nuovo messaggio" + +#: mod/notifications.php:314 mod/notifications.php:443 +#: mod/notifications.php:536 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s ha commentato il messaggio di %s" + +#: mod/notifications.php:329 +msgid "No more network notifications." +msgstr "Nessuna nuova." + +#: mod/notifications.php:333 +msgid "Network Notifications" +msgstr "Notifiche dalla rete" + +#: mod/notifications.php:359 mod/notify.php:72 +msgid "No more system notifications." +msgstr "Nessuna nuova notifica di sistema." + +#: mod/notifications.php:363 mod/notify.php:76 +msgid "System Notifications" +msgstr "Notifiche di sistema" + +#: mod/notifications.php:458 +msgid "No more personal notifications." +msgstr "Nessuna nuova." + +#: mod/notifications.php:462 +msgid "Personal Notifications" +msgstr "Notifiche personali" + +#: mod/notifications.php:543 +msgid "No more home notifications." +msgstr "Nessuna nuova." + +#: mod/notifications.php:547 +msgid "Home Notifications" +msgstr "Notifiche bacheca" + +#: mod/like.php:149 mod/tagger.php:62 mod/subthread.php:87 +#: view/theme/diabook/theme.php:471 include/text.php:2034 +#: include/diaspora.php:2134 include/conversation.php:126 +#: include/conversation.php:253 +msgid "photo" +msgstr "foto" + +#: mod/like.php:149 mod/like.php:319 mod/tagger.php:62 mod/subthread.php:87 +#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 +#: include/diaspora.php:2134 include/conversation.php:121 +#: include/conversation.php:130 include/conversation.php:248 +#: include/conversation.php:257 +msgid "status" +msgstr "stato" + +#: mod/like.php:166 view/theme/diabook/theme.php:480 include/diaspora.php:2150 +#: include/conversation.php:137 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" + +#: mod/like.php:168 include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Errore protocollo OpenID. Nessun ID ricevuto." + +#: mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito." + +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 +msgid "Login failed." +msgstr "Accesso fallito." + +#: mod/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/admin.php:57 +msgid "Theme settings updated." +msgstr "Impostazioni del tema aggiornate." + +#: mod/admin.php:104 mod/admin.php:687 +msgid "Site" +msgstr "Sito" + +#: mod/admin.php:105 mod/admin.php:633 mod/admin.php:1078 mod/admin.php:1093 +msgid "Users" +msgstr "Utenti" + +#: mod/admin.php:106 mod/admin.php:1182 mod/admin.php:1242 mod/settings.php:66 +msgid "Plugins" +msgstr "Plugin" + +#: mod/admin.php:107 mod/admin.php:1410 mod/admin.php:1444 +msgid "Themes" +msgstr "Temi" + +#: mod/admin.php:108 +msgid "DB updates" +msgstr "Aggiornamenti Database" + +#: mod/admin.php:109 mod/admin.php:200 +msgid "Inspect Queue" +msgstr "Ispeziona Coda di invio" + +#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1531 +msgid "Logs" +msgstr "Log" + +#: mod/admin.php:125 +msgid "probe address" +msgstr "controlla indirizzo" + +#: mod/admin.php:126 +msgid "check webfinger" +msgstr "verifica webfinger" + +#: mod/admin.php:131 include/nav.php:193 +msgid "Admin" +msgstr "Amministrazione" + +#: mod/admin.php:132 +msgid "Plugin Features" +msgstr "Impostazioni Plugins" + +#: mod/admin.php:134 +msgid "diagnostics" +msgstr "diagnostiche" + +#: mod/admin.php:135 +msgid "User registrations waiting for confirmation" +msgstr "Utenti registrati in attesa di conferma" + +#: mod/admin.php:173 mod/admin.php:1132 mod/admin.php:1352 mod/notice.php:15 +#: mod/display.php:82 mod/display.php:295 mod/display.php:512 +#: mod/viewsrc.php:15 include/items.php:4827 +msgid "Item not found." +msgstr "Elemento non trovato." + +#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:686 mod/admin.php:1077 +#: mod/admin.php:1181 mod/admin.php:1241 mod/admin.php:1409 mod/admin.php:1443 +#: mod/admin.php:1530 +msgid "Administration" +msgstr "Amministrazione" + +#: mod/admin.php:202 +msgid "ID" +msgstr "ID" + +#: mod/admin.php:203 +msgid "Recipient Name" +msgstr "Nome Destinatario" + +#: mod/admin.php:204 +msgid "Recipient Profile" +msgstr "Profilo Destinatario" + +#: mod/admin.php:206 +msgid "Created" +msgstr "Creato" + +#: mod/admin.php:207 +msgid "Last Tried" +msgstr "Ultimo Tentativo" + +#: 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 "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:220 mod/admin.php:1031 +msgid "Normal Account" +msgstr "Account normale" + +#: mod/admin.php:221 mod/admin.php:1032 +msgid "Soapbox Account" +msgstr "Account per comunicati e annunci" + +#: mod/admin.php:222 mod/admin.php:1033 +msgid "Community/Celebrity Account" +msgstr "Account per celebrità o per comunità" + +#: mod/admin.php:223 mod/admin.php:1034 +msgid "Automatic Friend Account" +msgstr "Account per amicizia automatizzato" + +#: mod/admin.php:224 +msgid "Blog Account" +msgstr "Account Blog" + +#: mod/admin.php:225 +msgid "Private Forum" +msgstr "Forum Privato" + +#: mod/admin.php:244 +msgid "Message queues" +msgstr "Code messaggi" + +#: mod/admin.php:250 +msgid "Summary" +msgstr "Sommario" + +#: mod/admin.php:252 +msgid "Registered users" +msgstr "Utenti registrati" + +#: mod/admin.php:254 +msgid "Pending registrations" +msgstr "Registrazioni in attesa" + +#: mod/admin.php:255 +msgid "Version" +msgstr "Versione" + +#: mod/admin.php:260 +msgid "Active plugins" +msgstr "Plugin attivi" + +#: mod/admin.php:283 +msgid "Can not parse base url. Must have at least ://" +msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]" + +#: mod/admin.php:556 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "" + +#: mod/admin.php:564 +msgid "Site settings updated." +msgstr "Impostazioni del sito aggiornate." + +#: mod/admin.php:599 mod/settings.php:885 +msgid "No special theme for mobile devices" +msgstr "Nessun tema speciale per i dispositivi mobili" + +#: mod/admin.php:616 +msgid "No community page" +msgstr "Nessuna pagina Comunità" + +#: mod/admin.php:617 +msgid "Public postings from users of this site" +msgstr "Messaggi pubblici dagli utenti di questo sito" + +#: mod/admin.php:618 +msgid "Global community page" +msgstr "Pagina Comunità globale" + +#: mod/admin.php:623 mod/contacts.php:526 +msgid "Never" +msgstr "Mai" + +#: mod/admin.php:624 +msgid "At post arrival" +msgstr "All'arrivo di un messaggio" + +#: mod/admin.php:625 include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Frequentemente" + +#: mod/admin.php:626 include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Ogni ora" + +#: mod/admin.php:627 include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Due volte al dì" + +#: mod/admin.php:628 include/contact_selectors.php:59 +msgid "Daily" +msgstr "Giornalmente" + +#: mod/admin.php:632 mod/contacts.php:585 +msgid "Disabled" +msgstr "Disabilitato" + +#: mod/admin.php:634 +msgid "Users, Global Contacts" +msgstr "Utenti, Contatti Globali" + +#: mod/admin.php:635 +msgid "Users, Global Contacts/fallback" +msgstr "Utenti, Contatti Globali/fallback" + +#: mod/admin.php:639 +msgid "One month" +msgstr "Un mese" + +#: mod/admin.php:640 +msgid "Three months" +msgstr "Tre mesi" + +#: mod/admin.php:641 +msgid "Half a year" +msgstr "Sei mesi" + +#: mod/admin.php:642 +msgid "One year" +msgstr "Un anno" + +#: mod/admin.php:647 +msgid "Multi user instance" +msgstr "Istanza multi utente" + +#: mod/admin.php:670 +msgid "Closed" +msgstr "Chiusa" + +#: mod/admin.php:671 +msgid "Requires approval" +msgstr "Richiede l'approvazione" + +#: mod/admin.php:672 +msgid "Open" +msgstr "Aperta" + +#: mod/admin.php:676 +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:677 +msgid "Force all links to use SSL" +msgstr "Forza tutti i linki ad usare SSL" + +#: mod/admin.php:678 +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:688 mod/admin.php:1243 mod/admin.php:1445 mod/admin.php:1532 +#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:786 +#: mod/settings.php:855 mod/settings.php:937 mod/settings.php:1167 +msgid "Save Settings" +msgstr "Salva Impostazioni" + +#: mod/admin.php:689 mod/register.php:260 +msgid "Registration" +msgstr "Registrazione" + +#: mod/admin.php:690 +msgid "File upload" +msgstr "Caricamento file" + +#: mod/admin.php:691 +msgid "Policies" +msgstr "Politiche" + +#: mod/admin.php:692 +msgid "Advanced" +msgstr "Avanzate" + +#: mod/admin.php:693 +msgid "Auto Discovered Contact Directory" +msgstr "Elenco Contatti Scoperto Automaticamente" + +#: mod/admin.php:694 +msgid "Performance" +msgstr "Performance" + +#: mod/admin.php:695 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile." + +#: mod/admin.php:698 +msgid "Site name" +msgstr "Nome del sito" + +#: mod/admin.php:699 +msgid "Host name" +msgstr "Nome host" + +#: mod/admin.php:700 +msgid "Sender Email" +msgstr "Mittente email" + +#: mod/admin.php:700 +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:701 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: mod/admin.php:702 +msgid "Shortcut icon" +msgstr "Icona shortcut" + +#: mod/admin.php:702 +msgid "Link to an icon that will be used for browsers." +msgstr "Link verso un'icona che verrà usata dai browsers." + +#: mod/admin.php:703 +msgid "Touch icon" +msgstr "Icona touch" + +#: mod/admin.php:703 +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:704 +msgid "Additional Info" +msgstr "Informazioni aggiuntive" + +#: mod/admin.php:704 +#, 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:705 +msgid "System language" +msgstr "Lingua di sistema" + +#: mod/admin.php:706 +msgid "System theme" +msgstr "Tema di sistema" + +#: mod/admin.php:706 +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:707 +msgid "Mobile system theme" +msgstr "Tema mobile di sistema" + +#: mod/admin.php:707 +msgid "Theme for mobile devices" +msgstr "Tema per dispositivi mobili" + +#: mod/admin.php:708 +msgid "SSL link policy" +msgstr "Gestione link SSL" + +#: mod/admin.php:708 +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:709 +msgid "Force SSL" +msgstr "Forza SSL" + +#: mod/admin.php:709 +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:710 +msgid "Old style 'Share'" +msgstr "Ricondivisione vecchio stile" + +#: mod/admin.php:710 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Disattiva l'elemento bbcode 'share' con elementi ripetuti" + +#: mod/admin.php:711 +msgid "Hide help entry from navigation menu" +msgstr "Nascondi la voce 'Guida' dal menu di navigazione" + +#: mod/admin.php:711 +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:712 +msgid "Single user instance" +msgstr "Instanza a singolo utente" + +#: mod/admin.php:712 +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:713 +msgid "Maximum image size" +msgstr "Massima dimensione immagini" + +#: mod/admin.php:713 +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:714 +msgid "Maximum image length" +msgstr "Massima lunghezza immagine" + +#: mod/admin.php:714 +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:715 +msgid "JPEG image quality" +msgstr "Qualità immagini JPEG" + +#: mod/admin.php:715 +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:717 +msgid "Register policy" +msgstr "Politica di registrazione" + +#: mod/admin.php:718 +msgid "Maximum Daily Registrations" +msgstr "Massime registrazioni giornaliere" + +#: mod/admin.php:718 +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:719 +msgid "Register text" +msgstr "Testo registrazione" + +#: mod/admin.php:719 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." + +#: mod/admin.php:720 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo x giorni" + +#: mod/admin.php:720 +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:721 +msgid "Allowed friend domains" +msgstr "Domini amici consentiti" + +#: mod/admin.php:721 +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:722 +msgid "Allowed email domains" +msgstr "Domini email consentiti" + +#: mod/admin.php:722 +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:723 +msgid "Block public" +msgstr "Blocca pagine pubbliche" + +#: mod/admin.php:723 +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:724 +msgid "Force publish" +msgstr "Forza publicazione" + +#: mod/admin.php:724 +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:725 +msgid "Global directory URL" +msgstr "URL della directory globale" + +#: mod/admin.php:725 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "" + +#: mod/admin.php:726 +msgid "Allow threaded items" +msgstr "Permetti commenti nidificati" + +#: mod/admin.php:726 +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:727 +msgid "Private posts by default for new users" +msgstr "Post privati di default per i nuovi utenti" + +#: mod/admin.php:727 +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:728 +msgid "Don't include post content in email notifications" +msgstr "Non includere il contenuto dei post nelle notifiche via email" + +#: mod/admin.php:728 +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:729 +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:729 +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:730 +msgid "Don't embed private images in posts" +msgstr "Non inglobare immagini private nei post" + +#: mod/admin.php:730 +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:731 +msgid "Allow Users to set remote_self" +msgstr "Permetti agli utenti di impostare 'io remoto'" + +#: mod/admin.php:731 +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:732 +msgid "Block multiple registrations" +msgstr "Blocca registrazioni multiple" + +#: mod/admin.php:732 +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:733 +msgid "OpenID support" +msgstr "Supporto OpenID" + +#: mod/admin.php:733 +msgid "OpenID support for registration and logins." +msgstr "Supporta OpenID per la registrazione e il login" + +#: mod/admin.php:734 +msgid "Fullname check" +msgstr "Controllo nome completo" + +#: mod/admin.php:734 +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:735 +msgid "UTF-8 Regular expressions" +msgstr "Espressioni regolari UTF-8" + +#: mod/admin.php:735 +msgid "Use PHP UTF8 regular expressions" +msgstr "Usa le espressioni regolari PHP in UTF8" + +#: mod/admin.php:736 +msgid "Community Page Style" +msgstr "Stile pagina Comunità" + +#: mod/admin.php:736 +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:737 +msgid "Posts per user on community page" +msgstr "Messaggi per utente nella pagina Comunità" + +#: mod/admin.php:737 +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:738 +msgid "Enable OStatus support" +msgstr "Abilita supporto OStatus" + +#: mod/admin.php:738 +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:739 +msgid "OStatus conversation completion interval" +msgstr "Intervallo completamento conversazioni OStatus" + +#: mod/admin.php:739 +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:740 +msgid "Enable Diaspora support" +msgstr "Abilita il supporto a Diaspora" + +#: mod/admin.php:740 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Fornisce compatibilità con il network Diaspora." + +#: mod/admin.php:741 +msgid "Only allow Friendica contacts" +msgstr "Permetti solo contatti Friendica" + +#: mod/admin.php:741 +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:742 +msgid "Verify SSL" +msgstr "Verifica SSL" + +#: mod/admin.php:742 +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:743 +msgid "Proxy user" +msgstr "Utente Proxy" + +#: mod/admin.php:744 +msgid "Proxy URL" +msgstr "URL Proxy" + +#: mod/admin.php:745 +msgid "Network timeout" +msgstr "Timeout rete" + +#: mod/admin.php:745 +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:746 +msgid "Delivery interval" +msgstr "Intervallo di invio" + +#: mod/admin.php:746 +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:747 +msgid "Poll interval" +msgstr "Intervallo di poll" + +#: mod/admin.php:747 +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:748 +msgid "Maximum Load Average" +msgstr "Massimo carico medio" + +#: mod/admin.php:748 +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:749 +msgid "Maximum Load Average (Frontend)" +msgstr "Media Massimo Carico (Frontend)" + +#: mod/admin.php:749 +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:751 +msgid "Periodical check of global contacts" +msgstr "Check periodico dei contatti globali" + +#: mod/admin.php:751 +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:752 +msgid "Days between requery" +msgstr "" + +#: mod/admin.php:752 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "" + +#: mod/admin.php:753 +msgid "Discover contacts from other servers" +msgstr "Trova contatti dagli altri server" + +#: mod/admin.php:753 +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:754 +msgid "Timeframe for fetching global contacts" +msgstr "Termine per il recupero contatti globali" + +#: mod/admin.php:754 +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:755 +msgid "Search the local directory" +msgstr "Cerca la directory locale" + +#: mod/admin.php:755 +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:757 +msgid "Publish server information" +msgstr "Pubblica informazioni server" + +#: mod/admin.php:757 +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:759 +msgid "Use MySQL full text engine" +msgstr "Usa il motore MySQL full text" + +#: mod/admin.php:759 +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:760 +msgid "Suppress Language" +msgstr "Disattiva lingua" + +#: mod/admin.php:760 +msgid "Suppress language information in meta information about a posting." +msgstr "Disattiva le informazioni sulla lingua nei meta di un post." + +#: mod/admin.php:761 +msgid "Suppress Tags" +msgstr "Sopprimi Tags" + +#: mod/admin.php:761 +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:762 +msgid "Path to item cache" +msgstr "Percorso cache elementi" + +#: mod/admin.php:762 +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:763 +msgid "Cache duration in seconds" +msgstr "Durata della cache in secondi" + +#: mod/admin.php:763 +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:764 +msgid "Maximum numbers of comments per post" +msgstr "Numero massimo di commenti per post" + +#: mod/admin.php:764 +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:765 +msgid "Path for lock file" +msgstr "Percorso al file di lock" + +#: mod/admin.php:765 +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:766 +msgid "Temp path" +msgstr "Percorso file temporanei" + +#: mod/admin.php:766 +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:767 +msgid "Base path to installation" +msgstr "Percorso base all'installazione" + +#: mod/admin.php:767 +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:768 +msgid "Disable picture proxy" +msgstr "Disabilita il proxy immagini" + +#: mod/admin.php:768 +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:769 +msgid "Enable old style pager" +msgstr "Abilita la paginazione vecchio stile" + +#: mod/admin.php:769 +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:770 +msgid "Only search in tags" +msgstr "Cerca solo nei tag" + +#: mod/admin.php:770 +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:772 +msgid "New base url" +msgstr "Nuovo url base" + +#: mod/admin.php:772 +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:774 +msgid "RINO Encryption" +msgstr "Crittografia RINO" + +#: mod/admin.php:774 +msgid "Encryption layer between nodes." +msgstr "Crittografia delle comunicazioni tra nodi." + +#: mod/admin.php:775 +msgid "Embedly API key" +msgstr "Embedly API key" + +#: mod/admin.php:775 +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:793 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato segnato come di successo" + +#: mod/admin.php:801 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Aggiornamento struttura database %s applicata con successo." + +#: mod/admin.php:804 +#, 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:816 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Esecuzione di %s fallita con errore: %s" + +#: mod/admin.php:819 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è stato applicato con successo" + +#: mod/admin.php:823 +#, 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:825 +#, 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:844 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." + +#: mod/admin.php:845 +msgid "Check database structure" +msgstr "Controlla struttura database" + +#: mod/admin.php:850 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti" + +#: mod/admin.php:851 +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:852 +msgid "Mark success (if update was manually applied)" +msgstr "Segna completato (se l'update è stato applicato manualmente)" + +#: mod/admin.php:853 +msgid "Attempt to execute this update step automatically" +msgstr "Cerco di eseguire questo aggiornamento in automatico" + +#: mod/admin.php:885 +#, 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:888 +#, 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:920 include/user.php:421 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" + +#: mod/admin.php:932 +#, 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:939 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utente cancellato" +msgstr[1] "%s utenti cancellati" + +#: mod/admin.php:978 +#, php-format +msgid "User '%s' deleted" +msgstr "Utente '%s' cancellato" + +#: mod/admin.php:986 +#, php-format +msgid "User '%s' unblocked" +msgstr "Utente '%s' sbloccato" + +#: mod/admin.php:986 +#, php-format +msgid "User '%s' blocked" +msgstr "Utente '%s' bloccato" + +#: mod/admin.php:1079 +msgid "Add User" +msgstr "Aggiungi utente" + +#: mod/admin.php:1080 +msgid "select all" +msgstr "seleziona tutti" + +#: mod/admin.php:1081 +msgid "User registrations waiting for confirm" +msgstr "Richieste di registrazione in attesa di conferma" + +#: mod/admin.php:1082 +msgid "User waiting for permanent deletion" +msgstr "Utente in attesa di cancellazione definitiva" + +#: mod/admin.php:1083 +msgid "Request date" +msgstr "Data richiesta" + +#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1109 +#: mod/settings.php:634 mod/settings.php:660 mod/crepair.php:170 +msgid "Name" +msgstr "Nome" + +#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1111 +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +msgid "Email" +msgstr "Email" + +#: mod/admin.php:1084 +msgid "No registrations." +msgstr "Nessuna registrazione." + +#: mod/admin.php:1086 +msgid "Deny" +msgstr "Nega" + +#: mod/admin.php:1088 mod/contacts.php:549 mod/contacts.php:622 +#: mod/contacts.php:798 +msgid "Block" +msgstr "Blocca" + +#: mod/admin.php:1089 mod/contacts.php:549 mod/contacts.php:622 +#: mod/contacts.php:798 +msgid "Unblock" +msgstr "Sblocca" + +#: mod/admin.php:1090 +msgid "Site admin" +msgstr "Amministrazione sito" + +#: mod/admin.php:1091 +msgid "Account expired" +msgstr "Account scaduto" + +#: mod/admin.php:1094 +msgid "New User" +msgstr "Nuovo Utente" + +#: mod/admin.php:1095 mod/admin.php:1096 +msgid "Register date" +msgstr "Data registrazione" + +#: mod/admin.php:1095 mod/admin.php:1096 +msgid "Last login" +msgstr "Ultimo accesso" + +#: mod/admin.php:1095 mod/admin.php:1096 +msgid "Last item" +msgstr "Ultimo elemento" + +#: mod/admin.php:1095 +msgid "Deleted since" +msgstr "Rimosso da" + +#: mod/admin.php:1096 mod/settings.php:41 +msgid "Account" +msgstr "Account" + +#: mod/admin.php:1098 +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:1099 +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:1109 +msgid "Name of the new user." +msgstr "Nome del nuovo utente." + +#: mod/admin.php:1110 +msgid "Nickname" +msgstr "Nome utente" + +#: mod/admin.php:1110 +msgid "Nickname of the new user." +msgstr "Nome utente del nuovo utente." + +#: mod/admin.php:1111 +msgid "Email address of the new user." +msgstr "Indirizzo Email del nuovo utente." + +#: mod/admin.php:1144 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s disabilitato." + +#: mod/admin.php:1148 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s abilitato." + +#: mod/admin.php:1158 mod/admin.php:1381 +msgid "Disable" +msgstr "Disabilita" + +#: mod/admin.php:1160 mod/admin.php:1383 +msgid "Enable" +msgstr "Abilita" + +#: mod/admin.php:1183 mod/admin.php:1411 +msgid "Toggle" +msgstr "Inverti" + +#: mod/admin.php:1184 mod/admin.php:1412 mod/newmember.php:22 +#: mod/settings.php:99 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:648 include/nav.php:181 +msgid "Settings" +msgstr "Impostazioni" + +#: mod/admin.php:1191 mod/admin.php:1421 +msgid "Author: " +msgstr "Autore: " + +#: mod/admin.php:1192 mod/admin.php:1422 +msgid "Maintainer: " +msgstr "Manutentore: " + +#: mod/admin.php:1341 +msgid "No themes found." +msgstr "Nessun tema trovato." + +#: mod/admin.php:1403 +msgid "Screenshot" +msgstr "Anteprima" + +#: mod/admin.php:1449 +msgid "[Experimental]" +msgstr "[Sperimentale]" + +#: mod/admin.php:1450 +msgid "[Unsupported]" +msgstr "[Non supportato]" + +#: mod/admin.php:1477 +msgid "Log settings updated." +msgstr "Impostazioni Log aggiornate." + +#: mod/admin.php:1533 +msgid "Clear" +msgstr "Pulisci" + +#: mod/admin.php:1539 +msgid "Enable Debugging" +msgstr "Abilita Debugging" + +#: mod/admin.php:1540 +msgid "Log file" +msgstr "File di Log" + +#: mod/admin.php:1540 +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:1541 +msgid "Log level" +msgstr "Livello di Log" + +#: mod/admin.php:1590 mod/contacts.php:619 +msgid "Update now" +msgstr "Aggiorna adesso" + +#: mod/admin.php:1591 include/acl_selectors.php:347 +msgid "Close" +msgstr "Chiudi" + +#: mod/admin.php:1597 +msgid "FTP Host" +msgstr "Indirizzo FTP" + +#: mod/admin.php:1598 +msgid "FTP Path" +msgstr "Percorso FTP" + +#: mod/admin.php:1599 +msgid "FTP User" +msgstr "Utente FTP" + +#: mod/admin.php:1600 +msgid "FTP Password" +msgstr "Pasword FTP" + +#: mod/message.php:9 include/nav.php:173 +msgid "New Message" +msgstr "Nuovo messaggio" + +#: mod/message.php:64 mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Nessun destinatario selezionato." + +#: mod/message.php:68 +msgid "Unable to locate contact information." +msgstr "Impossibile trovare le informazioni del contatto." + +#: mod/message.php:71 mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Il messaggio non puo' essere inviato." + +#: mod/message.php:74 mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Errore recuperando il messaggio." + +#: mod/message.php:77 mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Messaggio inviato." + +#: mod/message.php:183 include/nav.php:170 +msgid "Messages" +msgstr "Messaggi" + +#: mod/message.php:208 +msgid "Do you really want to delete this message?" +msgstr "Vuoi veramente cancellare questo messaggio?" + +#: mod/message.php:228 +msgid "Message deleted." +msgstr "Messaggio eliminato." + +#: mod/message.php:259 +msgid "Conversation removed." +msgstr "Conversazione rimossa." + +#: 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 "Inserisci l'indirizzo del link:" + +#: mod/message.php:320 mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" + +#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 +msgid "To:" +msgstr "A:" + +#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Oggetto:" + +#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 +#: mod/invite.php:134 +msgid "Your message:" +msgstr "Il tuo messaggio:" + +#: mod/message.php:333 mod/message.php:563 mod/editpost.php:110 +#: mod/wallmessage.php:154 include/conversation.php:1056 +msgid "Upload photo" +msgstr "Carica foto" + +#: mod/message.php:334 mod/message.php:564 mod/editpost.php:114 +#: mod/wallmessage.php:155 include/conversation.php:1060 +msgid "Insert web link" +msgstr "Inserisci link" + +#: mod/message.php:372 +msgid "No messages." +msgstr "Nessun messaggio." + +#: mod/message.php:379 +#, php-format +msgid "Unknown sender - %s" +msgstr "Mittente sconosciuto - %s" + +#: mod/message.php:382 +#, php-format +msgid "You and %s" +msgstr "Tu e %s" + +#: mod/message.php:385 +#, php-format +msgid "%s and You" +msgstr "%s e Tu" + +#: mod/message.php:406 mod/message.php:547 +msgid "Delete conversation" +msgstr "Elimina la conversazione" + +#: mod/message.php:409 +msgid "D, d M Y - g:i A" +msgstr "D d M Y - G:i" + +#: mod/message.php:412 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d messaggio" +msgstr[1] "%d messaggi" + +#: mod/message.php:451 +msgid "Message not available." +msgstr "Messaggio non disponibile." + +#: mod/message.php:521 +msgid "Delete message" +msgstr "Elimina il messaggio" + +#: mod/message.php:549 +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:553 +msgid "Send Reply" +msgstr "Invia la risposta" + +#: 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:109 mod/filer.php:31 mod/notes.php:59 include/text.php:997 +msgid "Save" +msgstr "Salva" + +#: mod/editpost.php:111 include/conversation.php:1057 +msgid "upload photo" +msgstr "carica foto" + +#: mod/editpost.php:112 include/conversation.php:1058 +msgid "Attach file" +msgstr "Allega file" + +#: mod/editpost.php:113 include/conversation.php:1059 +msgid "attach file" +msgstr "allega file" + +#: mod/editpost.php:115 include/conversation.php:1061 +msgid "web link" +msgstr "link web" + +#: mod/editpost.php:116 include/conversation.php:1062 +msgid "Insert video link" +msgstr "Inserire collegamento video" + +#: mod/editpost.php:117 include/conversation.php:1063 +msgid "video link" +msgstr "link video" + +#: mod/editpost.php:118 include/conversation.php:1064 +msgid "Insert audio link" +msgstr "Inserisci collegamento 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 "La tua posizione" + +#: mod/editpost.php:121 include/conversation.php:1067 +msgid "set location" +msgstr "posizione" + +#: mod/editpost.php:122 include/conversation.php:1068 +msgid "Clear browser location" +msgstr "Rimuovi la localizzazione data dal browser" + +#: mod/editpost.php:123 include/conversation.php:1069 +msgid "clear location" +msgstr "canc. pos." + +#: mod/editpost.php:125 include/conversation.php:1075 +msgid "Permission settings" +msgstr "Impostazioni permessi" + +#: mod/editpost.php:133 include/acl_selectors.php:343 +msgid "CC: email addresses" +msgstr "CC: indirizzi email" + +#: mod/editpost.php:134 include/conversation.php:1084 +msgid "Public post" +msgstr "Messaggio pubblico" + +#: mod/editpost.php:137 include/conversation.php:1071 +msgid "Set title" +msgstr "Scegli un titolo" + +#: mod/editpost.php:139 include/conversation.php:1073 +msgid "Categories (comma-separated list)" +msgstr "Categorie (lista separata da virgola)" + +#: mod/editpost.php:140 include/acl_selectors.php:344 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Esempio: bob@example.com, mary@example.com" + +#: 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: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/diaspora.php:633 +#: include/conversation.php:172 +#, 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:798 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s si è unito a %2$s" + +#: 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:317 +msgid "l, F j" +msgstr "l j F" + +#: mod/events.php:339 +msgid "Edit event" +msgstr "Modifca l'evento" + +#: mod/events.php:361 include/text.php:1716 include/text.php:1723 +msgid "link to source" +msgstr "Collegamento all'originale" + +#: mod/events.php:396 view/theme/diabook/theme.php:127 +#: include/identity.php:668 include/nav.php:80 +msgid "Events" +msgstr "Eventi" + +#: mod/events.php:397 +msgid "Create New Event" +msgstr "Crea un nuovo evento" + +#: mod/events.php:398 +msgid "Previous" +msgstr "Precendente" + +#: mod/events.php:399 mod/install.php:209 +msgid "Next" +msgstr "Successivo" + +#: mod/events.php:491 +msgid "Event details" +msgstr "Dettagli dell'evento" + +#: mod/events.php:492 +msgid "Starting date and Title are required." +msgstr "La data di inizio e il titolo sono richiesti." + +#: mod/events.php:493 +msgid "Event Starts:" +msgstr "L'evento inizia:" + +#: mod/events.php:493 mod/events.php:505 +msgid "Required" +msgstr "Richiesto" + +#: mod/events.php:495 +msgid "Finish date/time is not known or not relevant" +msgstr "La data/ora di fine non è definita" + +#: mod/events.php:497 +msgid "Event Finishes:" +msgstr "L'evento finisce:" + +#: mod/events.php:499 +msgid "Adjust for viewer timezone" +msgstr "Visualizza con il fuso orario di chi legge" + +#: mod/events.php:501 +msgid "Description:" +msgstr "Descrizione:" + +#: mod/events.php:505 +msgid "Title:" +msgstr "Titolo:" + +#: mod/events.php:507 +msgid "Share this event" +msgstr "Condividi questo evento" + +#: mod/fbrowser.php:32 view/theme/diabook/theme.php:126 +#: include/identity.php:649 include/nav.php:78 +msgid "Photos" +msgstr "Foto" + +#: mod/fbrowser.php:122 +msgid "Files" +msgstr "File" + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Benvenuto su %s" + +#: 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/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/nogroup.php:40 mod/contacts.php:605 mod/contacts.php:838 +#: mod/viewcontacts.php:64 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" + +#: mod/nogroup.php:41 mod/contacts.php:839 +msgid "Edit contact" +msgstr "Modifca contatto" + +#: mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Contatti che non sono membri di un gruppo" + +#: mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "Questo è Friendica, versione" + +#: mod/friendica.php:60 +msgid "running at web location" +msgstr "in esecuzione all'indirizzo web" + +#: mod/friendica.php:62 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." + +#: mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "Segnalazioni di bug e problemi: visita" + +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "il bugtracker su github" + +#: mod/friendica.php:65 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com" + +#: mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "Plugin/addon/applicazioni instalate" + +#: mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "Nessun plugin/addons/applicazione installata" + +#: mod/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/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 "Richiesta non valida." + +#: mod/wall_upload.php:137 mod/photos.php:789 mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "La dimensione dell'immagine supera il limite di %s" + +#: mod/wall_upload.php:169 mod/photos.php:829 mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "Impossibile caricare l'immagine." + +#: mod/wall_upload.php:199 mod/wall_upload.php:213 mod/wall_upload.php:220 +#: mod/item.php:486 include/message.php:145 include/Photo.php:951 +#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995 +msgid "Wall Photos" +msgstr "Foto della bacheca" + +#: mod/wall_upload.php:202 mod/photos.php:856 mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Caricamento immagine fallito." + +#: 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/tagger.php:95 include/conversation.php:265 +#, 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/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 "Foto dei contatti" + +#: mod/photos.php:84 include/identity.php:652 +msgid "Photo Albums" +msgstr "Album foto" + +#: mod/photos.php:85 mod/photos.php:1836 +msgid "Recent Photos" +msgstr "Foto recenti" + +#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 +msgid "Upload New Photos" +msgstr "Carica nuove foto" + +#: mod/photos.php:102 mod/settings.php:34 +msgid "everybody" +msgstr "tutti" + +#: mod/photos.php:166 +msgid "Contact information unavailable" +msgstr "I dati di questo contatto non sono disponibili" + +#: mod/photos.php:177 mod/photos.php:753 mod/photos.php:1207 +#: mod/photos.php:1230 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 +#: view/theme/diabook/theme.php:500 include/user.php:343 include/user.php:350 +#: include/user.php:357 +msgid "Profile Photos" +msgstr "Foto del profilo" + +#: mod/photos.php:187 +msgid "Album not found." +msgstr "Album non trovato." + +#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 +msgid "Delete Album" +msgstr "Rimuovi album" + +#: mod/photos.php:220 +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:300 mod/photos.php:311 mod/photos.php:1534 +msgid "Delete Photo" +msgstr "Rimuovi foto" + +#: mod/photos.php:309 +msgid "Do you really want to delete this photo?" +msgstr "Vuoi veramente cancellare questa foto?" + +#: mod/photos.php:684 +#, 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:684 +msgid "a photo" +msgstr "una foto" + +#: mod/photos.php:797 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." + +#: mod/photos.php:952 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" + +#: mod/photos.php:1053 mod/videos.php:298 +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:1149 +msgid "Upload Photos" +msgstr "Carica foto" + +#: mod/photos.php:1153 mod/photos.php:1219 +msgid "New album name: " +msgstr "Nome nuovo album: " + +#: mod/photos.php:1154 +msgid "or existing album name: " +msgstr "o nome di un album esistente: " + +#: mod/photos.php:1155 +msgid "Do not show a status post for this upload" +msgstr "Non creare un post per questo upload" + +#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 +msgid "Permissions" +msgstr "Permessi" + +#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1202 +msgid "Show to Groups" +msgstr "Mostra ai gruppi" + +#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1203 +msgid "Show to Contacts" +msgstr "Mostra ai contatti" + +#: mod/photos.php:1168 +msgid "Private Photo" +msgstr "Foto privata" + +#: mod/photos.php:1169 +msgid "Public Photo" +msgstr "Foto pubblica" + +#: mod/photos.php:1232 +msgid "Edit Album" +msgstr "Modifica album" + +#: mod/photos.php:1238 +msgid "Show Newest First" +msgstr "Mostra nuove foto per prime" + +#: mod/photos.php:1240 +msgid "Show Oldest First" +msgstr "Mostra vecchie foto per prime" + +#: mod/photos.php:1268 mod/photos.php:1821 +msgid "View Photo" +msgstr "Vedi foto" + +#: mod/photos.php:1314 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." + +#: mod/photos.php:1316 +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:1477 +msgid "Tags: " +msgstr "Tag: " + +#: mod/photos.php:1480 +msgid "[Remove any tag]" +msgstr "[Rimuovi tutti i tag]" + +#: mod/photos.php:1520 +msgid "New album name" +msgstr "Nuovo nome dell'album" + +#: mod/photos.php:1521 +msgid "Caption" +msgstr "Titolo" + +#: mod/photos.php:1522 +msgid "Add a Tag" +msgstr "Aggiungi tag" + +#: mod/photos.php:1522 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1523 +msgid "Do not rotate" +msgstr "Non ruotare" + +#: mod/photos.php:1524 +msgid "Rotate CW (right)" +msgstr "Ruota a destra" + +#: mod/photos.php:1525 +msgid "Rotate CCW (left)" +msgstr "Ruota a sinistra" + +#: mod/photos.php:1540 +msgid "Private photo" +msgstr "Foto privata" + +#: mod/photos.php:1541 +msgid "Public photo" +msgstr "Foto pubblica" + +#: mod/photos.php:1563 include/conversation.php:1055 +msgid "Share" +msgstr "Condividi" + +#: mod/photos.php:1827 mod/videos.php:380 +msgid "View Album" +msgstr "Sfoglia l'album" + +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Nessun profilo" + +#: 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:107 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere elaborata." + +#: mod/register.php:150 +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:188 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:216 +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:217 +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:218 +msgid "Your OpenID (optional): " +msgstr "Il tuo OpenID (opzionale): " + +#: mod/register.php:232 +msgid "Include your profile in member directory?" +msgstr "Includi il tuo profilo nell'elenco pubblico?" + +#: mod/register.php:256 +msgid "Membership on this site is by invitation only." +msgstr "La registrazione su questo sito è solo su invito." + +#: mod/register.php:257 +msgid "Your invitation ID: " +msgstr "L'ID del tuo invito:" + +#: mod/register.php:268 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Il tuo nome completo (es. Mario Rossi): " + +#: mod/register.php:269 +msgid "Your Email Address: " +msgstr "Il tuo indirizzo email: " + +#: mod/register.php:271 mod/settings.php:1174 +msgid "New Password:" +msgstr "Nuova password:" + +#: mod/register.php:271 +msgid "Leave empty for an auto generated password." +msgstr "Lascia vuoto per generare automaticamente una password." + +#: mod/register.php:272 mod/settings.php:1175 +msgid "Confirm:" +msgstr "Conferma:" + +#: 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 "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@$sitename'." + +#: mod/register.php:274 +msgid "Choose a nickname: " +msgstr "Scegli un nome utente: " + +#: mod/register.php:277 boot.php:1248 include/nav.php:109 +msgid "Register" +msgstr "Registrati" + +#: mod/register.php:283 mod/uimport.php:64 +msgid "Import" +msgstr "Importa" + +#: mod/register.php:284 +msgid "Import your profile to this friendica instance" +msgstr "Importa il tuo profilo in questo server friendica" + +#: 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:1287 +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/maintenance.php:5 +msgid "System down for maintenance" +msgstr "Sistema in manutenzione" + +#: 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:11 +msgid "Applications" +msgstr "Applicazioni" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Nessuna applicazione installata." + +#: mod/help.php:31 +msgid "Help:" +msgstr "Guida:" + +#: mod/help.php:36 include/nav.php:114 +msgid "Help" +msgstr "Guida" + #: mod/contacts.php:114 #, php-format msgid "%d contact edited." @@ -32,7 +3110,7 @@ msgid_plural "%d contacts edited" msgstr[0] "%d contatto modificato" msgstr[1] "%d contatti modificati" -#: mod/contacts.php:145 mod/contacts.php:340 +#: mod/contacts.php:145 mod/contacts.php:368 msgid "Could not access contact record." msgstr "Non è possibile accedere al contatto." @@ -44,490 +3122,416 @@ msgstr "Non riesco a trovare il profilo selezionato." msgid "Contact updated." msgstr "Contatto aggiornato." -#: mod/contacts.php:194 mod/dfrn_request.php:576 -msgid "Failed to update contact record." -msgstr "Errore nell'aggiornamento del contatto." - -#: 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 "Permesso negato." - -#: mod/contacts.php:361 +#: mod/contacts.php:389 msgid "Contact has been blocked" msgstr "Il contatto è stato bloccato" -#: mod/contacts.php:361 +#: mod/contacts.php:389 msgid "Contact has been unblocked" msgstr "Il contatto è stato sbloccato" -#: mod/contacts.php:372 +#: mod/contacts.php:400 msgid "Contact has been ignored" msgstr "Il contatto è ignorato" -#: mod/contacts.php:372 +#: mod/contacts.php:400 msgid "Contact has been unignored" msgstr "Il contatto non è più ignorato" -#: mod/contacts.php:384 +#: mod/contacts.php:412 msgid "Contact has been archived" msgstr "Il contatto è stato archiviato" -#: mod/contacts.php:384 +#: mod/contacts.php:412 msgid "Contact has been unarchived" msgstr "Il contatto è stato dearchiviato" -#: mod/contacts.php:411 mod/contacts.php:767 +#: mod/contacts.php:439 mod/contacts.php:795 msgid "Do you really want to delete this contact?" msgstr "Vuoi veramente cancellare questo contatto?" -#: 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 "Si" - -#: 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 "Annulla" - -#: mod/contacts.php:428 +#: mod/contacts.php:456 msgid "Contact has been removed." msgstr "Il contatto è stato rimosso." -#: mod/contacts.php:466 +#: mod/contacts.php:494 #, php-format msgid "You are mutual friends with %s" msgstr "Sei amico reciproco con %s" -#: mod/contacts.php:470 +#: mod/contacts.php:498 #, php-format msgid "You are sharing with %s" msgstr "Stai condividendo con %s" -#: mod/contacts.php:475 +#: mod/contacts.php:503 #, php-format msgid "%s is sharing with you" msgstr "%s sta condividendo con te" -#: mod/contacts.php:495 +#: mod/contacts.php:523 msgid "Private communications are not available for this contact." msgstr "Le comunicazioni private non sono disponibili per questo contatto." -#: mod/contacts.php:498 mod/admin.php:618 -msgid "Never" -msgstr "Mai" - -#: mod/contacts.php:502 +#: mod/contacts.php:530 msgid "(Update was successful)" msgstr "(L'aggiornamento è stato completato)" -#: mod/contacts.php:502 +#: mod/contacts.php:530 msgid "(Update was not successful)" msgstr "(L'aggiornamento non è stato completato)" -#: mod/contacts.php:504 +#: mod/contacts.php:532 msgid "Suggest friends" msgstr "Suggerisci amici" -#: mod/contacts.php:508 +#: mod/contacts.php:536 #, php-format msgid "Network type: %s" msgstr "Tipo di rete: %s" -#: mod/contacts.php:511 include/contact_widgets.php:200 +#: mod/contacts.php:539 include/contact_widgets.php:200 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d contatto in comune" msgstr[1] "%d contatti in comune" -#: mod/contacts.php:516 +#: mod/contacts.php:544 msgid "View all contacts" msgstr "Vedi tutti i contatti" -#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 -#: mod/admin.php:1083 -msgid "Unblock" -msgstr "Sblocca" - -#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 -#: mod/admin.php:1082 -msgid "Block" -msgstr "Blocca" - -#: mod/contacts.php:524 +#: mod/contacts.php:552 msgid "Toggle Blocked status" msgstr "Inverti stato \"Blocca\"" -#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 +#: mod/contacts.php:556 mod/contacts.php:623 mod/contacts.php:799 msgid "Unignore" msgstr "Non ignorare" -#: 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 "Ignora" - -#: mod/contacts.php:531 +#: mod/contacts.php:559 msgid "Toggle Ignored status" msgstr "Inverti stato \"Ignora\"" -#: mod/contacts.php:536 mod/contacts.php:772 +#: mod/contacts.php:564 mod/contacts.php:800 msgid "Unarchive" msgstr "Dearchivia" -#: mod/contacts.php:536 mod/contacts.php:772 +#: mod/contacts.php:564 mod/contacts.php:800 msgid "Archive" msgstr "Archivia" -#: mod/contacts.php:539 +#: mod/contacts.php:567 msgid "Toggle Archive status" msgstr "Inverti stato \"Archiviato\"" -#: mod/contacts.php:543 +#: mod/contacts.php:571 msgid "Repair" msgstr "Ripara" -#: mod/contacts.php:546 +#: mod/contacts.php:574 msgid "Advanced Contact Settings" msgstr "Impostazioni avanzate Contatto" -#: mod/contacts.php:553 +#: mod/contacts.php:581 msgid "Communications lost with this contact!" msgstr "Comunicazione con questo contatto persa!" -#: mod/contacts.php:556 +#: mod/contacts.php:584 msgid "Fetch further information for feeds" msgstr "Recupera maggiori infomazioni per i feed" -#: mod/contacts.php:557 mod/admin.php:627 -msgid "Disabled" -msgstr "Disabilitato" - -#: mod/contacts.php:557 +#: mod/contacts.php:585 msgid "Fetch information" msgstr "Recupera informazioni" -#: mod/contacts.php:557 +#: mod/contacts.php:585 msgid "Fetch information and keywords" msgstr "Recupera informazioni e parole chiave" -#: mod/contacts.php:566 +#: mod/contacts.php:594 msgid "Contact Editor" msgstr "Editor dei Contatti" -#: 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 "Invia" - -#: mod/contacts.php:569 +#: mod/contacts.php:597 msgid "Profile Visibility" msgstr "Visibilità del profilo" -#: mod/contacts.php:570 +#: mod/contacts.php:598 #, 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:571 +#: mod/contacts.php:599 msgid "Contact Information / Notes" msgstr "Informazioni / Note sul contatto" -#: mod/contacts.php:572 +#: mod/contacts.php:600 msgid "Edit contact notes" msgstr "Modifica note contatto" -#: 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 "Visita il profilo di %s [%s]" - -#: mod/contacts.php:578 +#: mod/contacts.php:606 msgid "Block/Unblock contact" msgstr "Blocca/Sblocca contatto" -#: mod/contacts.php:579 +#: mod/contacts.php:607 msgid "Ignore contact" msgstr "Ignora il contatto" -#: mod/contacts.php:580 +#: mod/contacts.php:608 msgid "Repair URL settings" msgstr "Impostazioni riparazione URL" -#: mod/contacts.php:581 +#: mod/contacts.php:609 msgid "View conversations" msgstr "Vedi conversazioni" -#: mod/contacts.php:583 +#: mod/contacts.php:611 msgid "Delete contact" msgstr "Rimuovi contatto" -#: mod/contacts.php:587 +#: mod/contacts.php:615 msgid "Last update:" msgstr "Ultimo aggiornamento:" -#: mod/contacts.php:589 +#: mod/contacts.php:617 msgid "Update public posts" msgstr "Aggiorna messaggi pubblici" -#: mod/contacts.php:591 mod/admin.php:1584 -msgid "Update now" -msgstr "Aggiorna adesso" - -#: mod/contacts.php:598 +#: mod/contacts.php:626 msgid "Currently blocked" msgstr "Bloccato" -#: mod/contacts.php:599 +#: mod/contacts.php:627 msgid "Currently ignored" msgstr "Ignorato" -#: mod/contacts.php:600 +#: mod/contacts.php:628 msgid "Currently archived" msgstr "Al momento archiviato" -#: mod/contacts.php:601 mod/notifications.php:167 mod/notifications.php:227 -msgid "Hide this contact from others" -msgstr "Nascondi questo contatto agli altri" - -#: mod/contacts.php:601 +#: mod/contacts.php:629 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Risposte ai tuoi post pubblici possono essere comunque visibili" -#: mod/contacts.php:602 +#: mod/contacts.php:630 msgid "Notification for new posts" msgstr "Notifica per i nuovi messaggi" -#: mod/contacts.php:602 +#: mod/contacts.php:630 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:605 +#: mod/contacts.php:633 msgid "Blacklisted keywords" msgstr "Parole chiave in blacklist" -#: mod/contacts.php:605 +#: mod/contacts.php:633 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:612 +#: mod/contacts.php:640 msgid "Profile URL" msgstr "URL Profilo" -#: mod/contacts.php:658 +#: mod/contacts.php:686 msgid "Suggestions" msgstr "Suggerimenti" -#: mod/contacts.php:661 +#: mod/contacts.php:689 msgid "Suggest potential friends" msgstr "Suggerisci potenziali amici" -#: mod/contacts.php:665 mod/group.php:192 +#: mod/contacts.php:693 mod/group.php:192 msgid "All Contacts" msgstr "Tutti i contatti" -#: mod/contacts.php:668 +#: mod/contacts.php:696 msgid "Show all contacts" msgstr "Mostra tutti i contatti" -#: mod/contacts.php:672 +#: mod/contacts.php:700 msgid "Unblocked" msgstr "Sbloccato" -#: mod/contacts.php:675 +#: mod/contacts.php:703 msgid "Only show unblocked contacts" msgstr "Mostra solo contatti non bloccati" -#: mod/contacts.php:680 +#: mod/contacts.php:708 msgid "Blocked" msgstr "Bloccato" -#: mod/contacts.php:683 +#: mod/contacts.php:711 msgid "Only show blocked contacts" msgstr "Mostra solo contatti bloccati" -#: mod/contacts.php:688 +#: mod/contacts.php:716 msgid "Ignored" msgstr "Ignorato" -#: mod/contacts.php:691 +#: mod/contacts.php:719 msgid "Only show ignored contacts" msgstr "Mostra solo contatti ignorati" -#: mod/contacts.php:696 +#: mod/contacts.php:724 msgid "Archived" msgstr "Achiviato" -#: mod/contacts.php:699 +#: mod/contacts.php:727 msgid "Only show archived contacts" msgstr "Mostra solo contatti archiviati" -#: mod/contacts.php:704 +#: mod/contacts.php:732 msgid "Hidden" msgstr "Nascosto" -#: mod/contacts.php:707 +#: mod/contacts.php:735 msgid "Only show hidden contacts" msgstr "Mostra solo contatti nascosti" -#: mod/contacts.php:758 include/text.php:1005 include/nav.php:124 -#: include/nav.php:186 view/theme/diabook/theme.php:125 +#: mod/contacts.php:786 view/theme/diabook/theme.php:125 include/text.php:1005 +#: include/nav.php:124 include/nav.php:186 msgid "Contacts" msgstr "Contatti" -#: mod/contacts.php:762 +#: mod/contacts.php:790 msgid "Search your contacts" msgstr "Cerca nei tuoi contatti" -#: mod/contacts.php:763 mod/directory.php:63 +#: mod/contacts.php:791 mod/directory.php:63 msgid "Finding: " msgstr "Ricerca: " -#: mod/contacts.php:764 mod/directory.php:65 include/contact_widgets.php:34 +#: mod/contacts.php:792 mod/directory.php:65 include/contact_widgets.php:34 msgid "Find" msgstr "Trova" -#: mod/contacts.php:769 mod/settings.php:146 mod/settings.php:658 +#: mod/contacts.php:797 mod/settings.php:146 mod/settings.php:658 msgid "Update" msgstr "Aggiorna" -#: 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 "Rimuovi" - -#: mod/contacts.php:786 +#: mod/contacts.php:814 msgid "Mutual Friendship" msgstr "Amicizia reciproca" -#: mod/contacts.php:790 +#: mod/contacts.php:818 msgid "is a fan of yours" msgstr "è un tuo fan" -#: mod/contacts.php:794 +#: mod/contacts.php:822 msgid "you are a fan of" msgstr "sei un fan di" -#: mod/contacts.php:811 mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Modifca contatto" +#: mod/videos.php:113 +msgid "Do you really want to delete this video?" +msgstr "Vuoi veramente cancellare questo video?" -#: mod/hcard.php:10 -msgid "No profile" -msgstr "Nessun profilo" +#: mod/videos.php:118 +msgid "Delete Video" +msgstr "Rimuovi video" -#: mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Gestisci indentità e/o pagine" +#: mod/videos.php:197 +msgid "No videos selected" +msgstr "Nessun video selezionato" -#: mod/manage.php:107 +#: mod/videos.php:389 +msgid "Recent Videos" +msgstr "Video Recenti" + +#: mod/videos.php:391 +msgid "Upload New Videos" +msgstr "Carica Nuovo Video" + +#: mod/common.php:45 +msgid "Common Friends" +msgstr "Amici in comune" + +#: mod/common.php:82 +msgid "No contacts in common." +msgstr "Nessun contatto in comune." + +#: mod/follow.php:26 +msgid "You already added this contact." +msgstr "Hai già aggiunto questo contatto." + +#: mod/follow.php:108 +msgid "Contact added" +msgstr "Contatto aggiunto" + +#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 +msgid "Login" +msgstr "Accedi" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "Il messaggio è stato creato" + +#: 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 "" -"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" +"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/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Seleziona un'identità da gestire:" +#: mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora" -#: mod/oexchange.php:25 -msgid "Post successful." -msgstr "Inviato!" +#: mod/uimport.php:70 +msgid "Account file" +msgstr "File account" -#: mod/profperm.php:19 mod/group.php:72 index.php:381 -msgid "Permission denied" -msgstr "Permesso negato" +#: 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/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." +#: 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/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "Modifica visibilità del profilo" +#: mod/allfriends.php:37 +#, php-format +msgid "Friends of %s" +msgstr "Amici di %s" -#: 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 "Profilo" +#: mod/allfriends.php:44 +msgid "No friends to display." +msgstr "Nessun amico da visualizzare." -#: mod/profperm.php:106 mod/group.php:222 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag rimosso" -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "Visibile a" +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "Tutti i contatti (con profilo ad accesso sicuro)" +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " -#: 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 "Elemento non trovato." - -#: 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 "Accesso negato." - -#: mod/display.php:343 mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "L'accesso a questo profilo è stato limitato." - -#: mod/display.php:505 -msgid "Item has been removed." -msgstr "L'oggetto è stato rimosso." +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Rimuovi" #: mod/newmember.php:6 msgid "Welcome to Friendica" @@ -560,12 +3564,6 @@ msgid "" " 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: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 "Impostazioni" - #: mod/newmember.php:26 msgid "Go to Your Settings" msgstr "Vai alle tue Impostazioni" @@ -585,7 +3583,13 @@ msgid "" "potential friends know exactly how to find you." msgstr "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti." -#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:696 +#: mod/newmember.php:32 mod/profperm.php:104 view/theme/diabook/theme.php:124 +#: include/identity.php:530 include/identity.php:611 include/identity.php:641 +#: include/nav.php:77 +msgid "Profile" +msgstr "Profilo" + +#: mod/newmember.php:36 mod/profiles.php:696 mod/profile_photo.php:244 msgid "Upload Profile Photo" msgstr "Carica la foto del profilo" @@ -724,3097 +3728,123 @@ msgid "" " features and resources." msgstr "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse." -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Errore protocollo OpenID. Nessun ID ricevuto." - -#: mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito." - -#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 -msgid "Login failed." -msgstr "Accesso fallito." - -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." - -#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 -#: mod/profile_photo.php:204 mod/profile_photo.php:296 -#: mod/profile_photo.php:305 mod/photos.php: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 "Foto del profilo" - -#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:308 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Il ridimensionamento del'immagine [%s] è fallito." - -#: mod/profile_photo.php:118 -msgid "" -"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:128 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" - -#: mod/profile_photo.php:144 mod/wall_upload.php:137 mod/photos.php:789 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "La dimensione dell'immagine supera il limite di %s" - -#: mod/profile_photo.php:153 mod/wall_upload.php:169 mod/photos.php:829 -msgid "Unable to process image." -msgstr "Impossibile caricare l'immagine." - -#: mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Carica un file:" - -#: mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Seleziona un profilo:" - -#: mod/profile_photo.php:245 -msgid "Upload" -msgstr "Carica" - -#: mod/profile_photo.php:248 -msgid "or" -msgstr "o" - -#: mod/profile_photo.php:248 -msgid "skip this step" -msgstr "salta questo passaggio" - -#: mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "seleziona una foto dai tuoi album" - -#: mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Ritaglia immagine" - -#: mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ritaglia l'imagine per una visualizzazione migliore." - -#: mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Finito" - -#: mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Immagine caricata con successo." - -#: mod/profile_photo.php:301 mod/wall_upload.php:202 mod/photos.php:856 -msgid "Image upload failed." -msgstr "Caricamento immagine fallito." - -#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 -#: include/conversation.php:126 include/conversation.php:253 -#: include/text.php:2034 include/diaspora.php:2127 -#: 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:248 include/conversation.php:257 -#: include/diaspora.php:2127 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/filer.php:30 include/conversation.php:1005 -#: include/conversation.php:1023 -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:59 include/text.php:997 -msgid "Save" -msgstr "Salva" - -#: mod/follow.php:26 -msgid "You already added this contact." -msgstr "Hai già aggiunto questo contatto." - -#: mod/follow.php:58 mod/dfrn_request.php:847 -msgid "Please answer the following:" -msgstr "Rispondi:" - -#: mod/follow.php:59 mod/dfrn_request.php:848 -#, php-format -msgid "Does %s know you?" -msgstr "%s ti conosce?" - -#: 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 "No" - -#: mod/follow.php:60 mod/dfrn_request.php:852 -msgid "Add a personal note:" -msgstr "Aggiungi una nota personale:" - -#: mod/follow.php:66 mod/dfrn_request.php:858 -msgid "Your Identity Address:" -msgstr "L'indirizzo della tua identità:" - -#: mod/follow.php:69 mod/dfrn_request.php:861 -msgid "Submit Request" -msgstr "Invia richiesta" - -#: mod/follow.php:108 -msgid "Contact added" -msgstr "Contatto aggiunto" - -#: mod/item.php:115 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." - -#: mod/item.php:347 -msgid "Empty post discarded." -msgstr "Messaggio vuoto scartato." - -#: 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 "Foto della bacheca" - -#: mod/item.php:860 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Messaggio non salvato." - -#: mod/item.php:989 -#, 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:991 -#, php-format -msgid "You may visit them online at %s" -msgstr "Puoi visitarli online su %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 "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi." - -#: mod/item.php:996 -#, 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:273 -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/apps.php:7 index.php:225 -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:134 -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:172 -#: include/diaspora.php:634 -#, 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:732 include/items.php:4237 -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:77 -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:113 -msgid "Do you really want to delete this video?" -msgstr "Vuoi veramente cancellare questo video?" - -#: mod/videos.php:118 -msgid "Delete Video" -msgstr "Rimuovi video" - -#: mod/videos.php:197 -msgid "No videos selected" -msgstr "Nessun video selezionato" - -#: mod/videos.php:298 mod/photos.php:1053 -msgid "Access to this item is restricted." -msgstr "Questo oggetto non è visibile a tutti." - -#: mod/videos.php:373 include/text.php:1460 -msgid "View Video" -msgstr "Guarda Video" - -#: mod/videos.php:380 mod/photos.php:1827 -msgid "View Album" -msgstr "Sfoglia l'album" - -#: mod/videos.php:389 -msgid "Recent Videos" -msgstr "Video Recenti" - -#: mod/videos.php:391 -msgid "Upload New Videos" -msgstr "Carica Nuovo Video" - -#: 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 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: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 "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:1287 -msgid "Password Reset" -msgstr "Reimpostazione password" - -#: mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "La tua password è stata reimpostata come richiesto." - -#: mod/lostpass.php:111 -msgid "Your new password is" -msgstr "La tua nuova password è" - -#: mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Salva o copia la tua nuova password, quindi" - -#: mod/lostpass.php:113 -msgid "click here to login" -msgstr "clicca qui per entrare" - -#: mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso." - -#: mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "\nGentile %1$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare." - -#: mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" -msgstr "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato." - -#: mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "La tua password presso %s è stata cambiata" - -#: mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" - -#: mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Inserisci il tuo indirizzo email per reimpostare la password." - -#: mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Nome utente o email: " - -#: mod/lostpass.php:162 -msgid "Reset" -msgstr "Reimposta" - -#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2143 -#: view/theme/diabook/theme.php:480 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" - -#: mod/like.php:168 include/conversation.php:140 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" - -#: mod/ping.php:233 -msgid "{0} wants to be your friend" -msgstr "{0} vuole essere tuo amico" - -#: mod/ping.php:248 -msgid "{0} sent you a message" -msgstr "{0} ti ha inviato un messaggio" - -#: mod/ping.php:263 -msgid "{0} requested registration" -msgstr "{0} chiede la registrazione" - -#: mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Nessun contatto." - -#: mod/viewcontacts.php:78 include/text.php:917 -msgid "View Contacts" -msgstr "Visualizza i contatti" - -#: mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." - -#: mod/notifications.php:35 mod/notifications.php:175 -#: mod/notifications.php:234 -msgid "Discard" -msgstr "Scarta" - -#: mod/notifications.php:78 -msgid "System" -msgstr "Sistema" - -#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 -msgid "Network" -msgstr "Rete" - -#: mod/notifications.php:90 mod/network.php:375 -msgid "Personal" -msgstr "Personale" - -#: mod/notifications.php:96 include/nav.php:105 include/nav.php:156 -#: view/theme/diabook/theme.php:123 -msgid "Home" -msgstr "Home" - -#: mod/notifications.php:102 include/nav.php:161 -msgid "Introductions" -msgstr "Presentazioni" - -#: mod/notifications.php:127 -msgid "Show Ignored Requests" -msgstr "Mostra richieste ignorate" - -#: mod/notifications.php:127 -msgid "Hide Ignored Requests" -msgstr "Nascondi richieste ignorate" - -#: mod/notifications.php:159 mod/notifications.php:209 -msgid "Notification type: " -msgstr "Tipo di notifica: " - -#: mod/notifications.php:160 -msgid "Friend Suggestion" -msgstr "Amico suggerito" - -#: mod/notifications.php:162 -#, php-format -msgid "suggested by %s" -msgstr "sugerito da %s" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "Post a new friend activity" -msgstr "Invia una attività \"è ora amico con\"" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "if applicable" -msgstr "se applicabile" - -#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1079 -msgid "Approve" -msgstr "Approva" - -#: mod/notifications.php:191 -msgid "Claims to be known to you: " -msgstr "Dice di conoscerti: " - -#: mod/notifications.php:191 -msgid "yes" -msgstr "si" - -#: mod/notifications.php:191 -msgid "no" -msgstr "no" - -#: 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 "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: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 "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:203 -msgid "Friend" -msgstr "Amico" - -#: mod/notifications.php:204 -msgid "Sharer" -msgstr "Condivisore" - -#: mod/notifications.php:204 -msgid "Fan/Admirer" -msgstr "Fan/Ammiratore" - -#: mod/notifications.php:210 -msgid "Friend/Connect Request" -msgstr "Richiesta amicizia/connessione" - -#: mod/notifications.php:210 -msgid "New Follower" -msgstr "Qualcuno inizia a seguirti" - -#: 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 "Posizione:" - -#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 -#: include/identity.php:581 -msgid "About:" -msgstr "Informazioni:" - -#: mod/notifications.php:224 include/identity.php:575 -msgid "Tags:" -msgstr "Tag:" - -#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 -#: include/identity.php:540 -msgid "Gender:" -msgstr "Genere:" - -#: mod/notifications.php:240 -msgid "No introductions." -msgstr "Nessuna presentazione." - -#: mod/notifications.php:243 include/nav.php:164 -msgid "Notifications" -msgstr "Notifiche" - -#: mod/notifications.php:281 mod/notifications.php:410 -#: mod/notifications.php:501 -#, php-format -msgid "%s liked %s's post" -msgstr "a %s è piaciuto il messaggio di %s" - -#: mod/notifications.php:291 mod/notifications.php:420 -#: mod/notifications.php:511 -#, php-format -msgid "%s disliked %s's post" -msgstr "a %s non è piaciuto il messaggio di %s" - -#: mod/notifications.php:306 mod/notifications.php:435 -#: mod/notifications.php:526 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s è ora amico di %s" - -#: mod/notifications.php:313 mod/notifications.php:442 -#, php-format -msgid "%s created a new post" -msgstr "%s a creato un nuovo messaggio" - -#: mod/notifications.php:314 mod/notifications.php:443 -#: mod/notifications.php:536 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s ha commentato il messaggio di %s" - -#: mod/notifications.php:329 -msgid "No more network notifications." -msgstr "Nessuna nuova." - -#: mod/notifications.php:333 -msgid "Network Notifications" -msgstr "Notifiche dalla rete" - -#: mod/notifications.php:359 mod/notify.php:72 -msgid "No more system notifications." -msgstr "Nessuna nuova notifica di sistema." - -#: mod/notifications.php:363 mod/notify.php:76 -msgid "System Notifications" -msgstr "Notifiche di sistema" - -#: mod/notifications.php:458 -msgid "No more personal notifications." -msgstr "Nessuna nuova." - -#: mod/notifications.php:462 -msgid "Personal Notifications" -msgstr "Notifiche personali" - -#: mod/notifications.php:543 -msgid "No more home notifications." -msgstr "Nessuna nuova." - -#: mod/notifications.php:547 -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:20 include/nav.php:34 -msgid "Nothing new here" -msgstr "Niente di nuovo qui" - -#: mod/navigation.php:24 include/nav.php:38 -msgid "Clear notifications" -msgstr "Pulisci le notifiche" - -#: mod/message.php:9 include/nav.php:173 -msgid "New Message" -msgstr "Nuovo messaggio" - -#: mod/message.php:64 mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Nessun destinatario selezionato." - -#: mod/message.php:68 -msgid "Unable to locate contact information." -msgstr "Impossibile trovare le informazioni del contatto." - -#: mod/message.php:71 mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Il messaggio non puo' essere inviato." - -#: mod/message.php:74 mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Errore recuperando il messaggio." - -#: mod/message.php:77 mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Messaggio inviato." - -#: mod/message.php:183 include/nav.php:170 -msgid "Messages" -msgstr "Messaggi" - -#: mod/message.php:208 -msgid "Do you really want to delete this message?" -msgstr "Vuoi veramente cancellare questo messaggio?" - -#: mod/message.php:228 -msgid "Message deleted." -msgstr "Messaggio eliminato." - -#: mod/message.php:259 -msgid "Conversation removed." -msgstr "Conversazione rimossa." - -#: 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 "Inserisci l'indirizzo del link:" - -#: mod/message.php:320 mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" - -#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 -msgid "To:" -msgstr "A:" - -#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Oggetto:" - -#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 -#: mod/invite.php:134 -msgid "Your message:" -msgstr "Il tuo messaggio:" - -#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154 -#: mod/editpost.php:110 include/conversation.php:1056 -msgid "Upload photo" -msgstr "Carica foto" - -#: 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 "Inserisci 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 "Attendi" - -#: mod/message.php:372 -msgid "No messages." -msgstr "Nessun messaggio." - -#: mod/message.php:379 -#, php-format -msgid "Unknown sender - %s" -msgstr "Mittente sconosciuto - %s" - -#: mod/message.php:382 -#, php-format -msgid "You and %s" -msgstr "Tu e %s" - -#: mod/message.php:385 -#, php-format -msgid "%s and You" -msgstr "%s e Tu" - -#: mod/message.php:406 mod/message.php:547 -msgid "Delete conversation" -msgstr "Elimina la conversazione" - -#: mod/message.php:409 -msgid "D, d M Y - g:i A" -msgstr "D d M Y - G:i" - -#: mod/message.php:412 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d messaggio" -msgstr[1] "%d messaggi" - -#: mod/message.php:451 -msgid "Message not available." -msgstr "Messaggio non disponibile." - -#: mod/message.php:521 -msgid "Delete message" -msgstr "Elimina il messaggio" - -#: mod/message.php:549 -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:553 -msgid "Send Reply" -msgstr "Invia la risposta" - -#: mod/update_display.php:22 mod/update_community.php:18 -#: mod/update_notes.php:37 mod/update_profile.php:41 mod/update_network.php:25 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" - -#: mod/crepair.php:107 -msgid "Contact settings applied." -msgstr "Contatto modificato." - -#: mod/crepair.php:109 -msgid "Contact update failed." -msgstr "Le modifiche al contatto non sono state salvate." - -#: mod/crepair.php:140 -msgid "Repair Contact Settings" -msgstr "Ripara il contatto" - -#: 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 "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più" - -#: mod/crepair.php:143 -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:149 -msgid "Return to contact editor" -msgstr "Ritorna alla modifica contatto" - -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "No mirroring" -msgstr "Non duplicare" - -#: mod/crepair.php:160 -msgid "Mirror as forwarded posting" -msgstr "Duplica come messaggi ricondivisi" - -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "Mirror as my own posting" -msgstr "Duplica come miei messaggi" - -#: mod/crepair.php:169 -msgid "Refetch contact data" -msgstr "Ricarica dati contatto" - -#: 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 "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:181 -msgid "Mirror postings from this contact" -msgstr "Ripeti i messaggi di questo contatto" - -#: mod/crepair.php:181 -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:1273 include/nav.php:92 -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:36 -#, php-format -msgid "People Search - %s" -msgstr "Cerca persone - %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 "Connetti" - -#: mod/dirfind.php:139 mod/match.php:73 -msgid "No matches" -msgstr "Nessun risultato" - -#: mod/fbrowser.php:32 include/identity.php:648 include/nav.php:78 -#: view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "Foto" - -#: mod/fbrowser.php:122 -msgid "Files" -msgstr "File" - -#: mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Contatti che non sono membri di un gruppo" - -#: mod/admin.php:57 -msgid "Theme settings updated." -msgstr "Impostazioni del tema aggiornate." - -#: mod/admin.php:104 mod/admin.php:682 -msgid "Site" -msgstr "Sito" - -#: mod/admin.php:105 mod/admin.php:628 mod/admin.php:1072 mod/admin.php:1087 -msgid "Users" -msgstr "Utenti" - -#: mod/admin.php:106 mod/admin.php:1176 mod/admin.php:1236 mod/settings.php:66 -msgid "Plugins" -msgstr "Plugin" - -#: mod/admin.php:107 mod/admin.php:1404 mod/admin.php:1438 -msgid "Themes" -msgstr "Temi" - -#: mod/admin.php:108 -msgid "DB updates" -msgstr "Aggiornamenti Database" - -#: mod/admin.php:109 mod/admin.php:200 -msgid "Inspect Queue" -msgstr "Ispeziona Coda di invio" - -#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1525 -msgid "Logs" -msgstr "Log" - -#: mod/admin.php:125 -msgid "probe address" -msgstr "controlla indirizzo" - -#: mod/admin.php:126 -msgid "check webfinger" -msgstr "verifica webfinger" - -#: mod/admin.php:131 include/nav.php:193 -msgid "Admin" -msgstr "Amministrazione" - -#: mod/admin.php:132 -msgid "Plugin Features" -msgstr "Impostazioni Plugins" - -#: mod/admin.php:134 -msgid "diagnostics" -msgstr "diagnostiche" - -#: mod/admin.php:135 -msgid "User registrations waiting for confirmation" -msgstr "Utenti registrati in attesa di conferma" - -#: 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 "Amministrazione" - -#: mod/admin.php:202 -msgid "ID" -msgstr "ID" - -#: mod/admin.php:203 -msgid "Recipient Name" -msgstr "Nome Destinatario" - -#: mod/admin.php:204 -msgid "Recipient Profile" -msgstr "Profilo Destinatario" - -#: mod/admin.php:206 -msgid "Created" -msgstr "Creato" - -#: mod/admin.php:207 -msgid "Last Tried" -msgstr "Ultimo Tentativo" - -#: 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 "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:220 mod/admin.php:1025 -msgid "Normal Account" -msgstr "Account normale" - -#: mod/admin.php:221 mod/admin.php:1026 -msgid "Soapbox Account" -msgstr "Account per comunicati e annunci" - -#: mod/admin.php:222 mod/admin.php:1027 -msgid "Community/Celebrity Account" -msgstr "Account per celebrità o per comunità" - -#: mod/admin.php:223 mod/admin.php:1028 -msgid "Automatic Friend Account" -msgstr "Account per amicizia automatizzato" - -#: mod/admin.php:224 -msgid "Blog Account" -msgstr "Account Blog" - -#: mod/admin.php:225 -msgid "Private Forum" -msgstr "Forum Privato" - -#: mod/admin.php:244 -msgid "Message queues" -msgstr "Code messaggi" - -#: mod/admin.php:250 -msgid "Summary" -msgstr "Sommario" - -#: mod/admin.php:252 -msgid "Registered users" -msgstr "Utenti registrati" - -#: mod/admin.php:254 -msgid "Pending registrations" -msgstr "Registrazioni in attesa" - -#: mod/admin.php:255 -msgid "Version" -msgstr "Versione" - -#: mod/admin.php:260 -msgid "Active plugins" -msgstr "Plugin attivi" - -#: mod/admin.php:283 -msgid "Can not parse base url. Must have at least ://" -msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]" - -#: mod/admin.php:565 -msgid "Site settings updated." -msgstr "Impostazioni del sito aggiornate." - -#: mod/admin.php:594 mod/settings.php:883 -msgid "No special theme for mobile devices" -msgstr "Nessun tema speciale per i dispositivi mobili" - -#: mod/admin.php:611 -msgid "No community page" -msgstr "Nessuna pagina Comunità" - -#: mod/admin.php:612 -msgid "Public postings from users of this site" -msgstr "Messaggi pubblici dagli utenti di questo sito" - -#: mod/admin.php:613 -msgid "Global community page" -msgstr "Pagina Comunità globale" - -#: mod/admin.php:619 -msgid "At post arrival" -msgstr "All'arrivo di un messaggio" - -#: mod/admin.php:620 include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frequentemente" - -#: mod/admin.php:621 include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Ogni ora" - -#: mod/admin.php:622 include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Due volte al dì" - -#: mod/admin.php:623 include/contact_selectors.php:59 -msgid "Daily" -msgstr "Giornalmente" - -#: mod/admin.php:629 -msgid "Users, Global Contacts" -msgstr "Utenti, Contatti Globali" - -#: mod/admin.php:630 -msgid "Users, Global Contacts/fallback" -msgstr "Utenti, Contatti Globali/fallback" - -#: mod/admin.php:634 -msgid "One month" -msgstr "Un meso" - -#: mod/admin.php:635 -msgid "Three months" -msgstr "Tre mesi" - -#: mod/admin.php:636 -msgid "Half a year" -msgstr "Sei mesi" - -#: mod/admin.php:637 -msgid "One year" -msgstr "Un anno" - -#: mod/admin.php:642 -msgid "Multi user instance" -msgstr "Istanza multi utente" - -#: mod/admin.php:665 -msgid "Closed" -msgstr "Chiusa" - -#: mod/admin.php:666 -msgid "Requires approval" -msgstr "Richiede l'approvazione" - -#: mod/admin.php:667 -msgid "Open" -msgstr "Aperta" - -#: mod/admin.php:671 -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:672 -msgid "Force all links to use SSL" -msgstr "Forza tutti i linki ad usare SSL" - -#: mod/admin.php:673 -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: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 "Salva Impostazioni" - -#: mod/admin.php:684 mod/register.php:260 -msgid "Registration" -msgstr "Registrazione" - -#: mod/admin.php:685 -msgid "File upload" -msgstr "Caricamento file" - -#: mod/admin.php:686 -msgid "Policies" -msgstr "Politiche" - -#: mod/admin.php:687 -msgid "Advanced" -msgstr "Avanzate" - -#: mod/admin.php:688 -msgid "Auto Discovered Contact Directory" -msgstr "Elenco Contatti Scoperto Automaticamente" - -#: mod/admin.php:689 -msgid "Performance" -msgstr "Performance" - -#: mod/admin.php:690 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile." - -#: mod/admin.php:693 -msgid "Site name" -msgstr "Nome del sito" - -#: mod/admin.php:694 -msgid "Host name" -msgstr "Nome host" - -#: mod/admin.php:695 -msgid "Sender Email" -msgstr "Mittente email" - -#: mod/admin.php:695 -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:696 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: mod/admin.php:697 -msgid "Shortcut icon" -msgstr "Icona shortcut" - -#: mod/admin.php:697 -msgid "Link to an icon that will be used for browsers." -msgstr "Link verso un'icona che verrà usata dai browsers." - -#: mod/admin.php:698 -msgid "Touch icon" -msgstr "Icona touch" - -#: mod/admin.php:698 -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:699 -msgid "Additional Info" -msgstr "Informazioni aggiuntive" - -#: mod/admin.php:699 -#, 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:700 -msgid "System language" -msgstr "Lingua di sistema" - -#: mod/admin.php:701 -msgid "System theme" -msgstr "Tema di sistema" - -#: mod/admin.php:701 -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:702 -msgid "Mobile system theme" -msgstr "Tema mobile di sistema" - -#: mod/admin.php:702 -msgid "Theme for mobile devices" -msgstr "Tema per dispositivi mobili" - -#: mod/admin.php:703 -msgid "SSL link policy" -msgstr "Gestione link SSL" - -#: mod/admin.php:703 -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:704 -msgid "Force SSL" -msgstr "Forza SSL" - -#: mod/admin.php:704 -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:705 -msgid "Old style 'Share'" -msgstr "Ricondivisione vecchio stile" - -#: mod/admin.php:705 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Disattiva l'elemento bbcode 'share' con elementi ripetuti" - -#: mod/admin.php:706 -msgid "Hide help entry from navigation menu" -msgstr "Nascondi la voce 'Guida' dal menu di navigazione" - -#: 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 "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente." - -#: mod/admin.php:707 -msgid "Single user instance" -msgstr "Instanza a singolo utente" - -#: mod/admin.php:707 -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:708 -msgid "Maximum image size" -msgstr "Massima dimensione immagini" - -#: mod/admin.php:708 -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:709 -msgid "Maximum image length" -msgstr "Massima lunghezza immagine" - -#: mod/admin.php:709 -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:710 -msgid "JPEG image quality" -msgstr "Qualità immagini 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 "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena." - -#: mod/admin.php:712 -msgid "Register policy" -msgstr "Politica di registrazione" - -#: mod/admin.php:713 -msgid "Maximum Daily Registrations" -msgstr "Massime registrazioni giornaliere" - -#: 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 "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:714 -msgid "Register text" -msgstr "Testo registrazione" - -#: mod/admin.php:714 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." - -#: mod/admin.php:715 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo x giorni" - -#: mod/admin.php:715 -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:716 -msgid "Allowed friend domains" -msgstr "Domini amici consentiti" - -#: 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 "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:717 -msgid "Allowed email domains" -msgstr "Domini email consentiti" - -#: 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 "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:718 -msgid "Block public" -msgstr "Blocca pagine pubbliche" - -#: 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 "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato." - -#: mod/admin.php:719 -msgid "Force publish" -msgstr "Forza publicazione" - -#: mod/admin.php:719 -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:720 -msgid "Global directory update URL" -msgstr "URL aggiornamento Elenco Globale" - -#: 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 dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato." - -#: mod/admin.php:721 -msgid "Allow threaded items" -msgstr "Permetti commenti nidificati" - -#: mod/admin.php:721 -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:722 -msgid "Private posts by default for new users" -msgstr "Post privati di default per i nuovi utenti" - -#: mod/admin.php:722 -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:723 -msgid "Don't include post content in email notifications" -msgstr "Non includere il contenuto dei post nelle notifiche via email" - -#: 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 "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy" - -#: mod/admin.php:724 -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:724 -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:725 -msgid "Don't embed private images in posts" -msgstr "Non inglobare immagini private nei post" - -#: 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 "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:726 -msgid "Allow Users to set remote_self" -msgstr "Permetti agli utenti di impostare 'io remoto'" - -#: 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 "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:727 -msgid "Block multiple registrations" -msgstr "Blocca registrazioni multiple" - -#: mod/admin.php:727 -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:728 -msgid "OpenID support" -msgstr "Supporto OpenID" - -#: mod/admin.php:728 -msgid "OpenID support for registration and logins." -msgstr "Supporta OpenID per la registrazione e il login" - -#: mod/admin.php:729 -msgid "Fullname check" -msgstr "Controllo nome completo" - -#: mod/admin.php:729 -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:730 -msgid "UTF-8 Regular expressions" -msgstr "Espressioni regolari UTF-8" - -#: mod/admin.php:730 -msgid "Use PHP UTF8 regular expressions" -msgstr "Usa le espressioni regolari PHP in UTF8" - -#: mod/admin.php:731 -msgid "Community Page Style" -msgstr "Stile pagina Comunità" - -#: 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 "Tipo di pagina Comunità da mostrare. 'Comunità Globale' mostra tutti i messaggi pubblici arrivati su questo server da network aperti distribuiti." - -#: mod/admin.php:732 -msgid "Posts per user on community page" -msgstr "Messaggi per utente nella pagina Comunità" - -#: mod/admin.php:732 -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:733 -msgid "Enable OStatus support" -msgstr "Abilita supporto 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 "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:734 -msgid "OStatus conversation completion interval" -msgstr "Intervallo completamento conversazioni 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 "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:735 -msgid "Enable Diaspora support" -msgstr "Abilita il supporto a Diaspora" - -#: mod/admin.php:735 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Fornisce compatibilità con il network Diaspora." - -#: mod/admin.php:736 -msgid "Only allow Friendica contacts" -msgstr "Permetti solo contatti Friendica" - -#: mod/admin.php:736 -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:737 -msgid "Verify SSL" -msgstr "Verifica 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 "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:738 -msgid "Proxy user" -msgstr "Utente Proxy" - -#: mod/admin.php:739 -msgid "Proxy URL" -msgstr "URL Proxy" - -#: mod/admin.php:740 -msgid "Network timeout" -msgstr "Timeout rete" - -#: mod/admin.php:740 -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:741 -msgid "Delivery interval" -msgstr "Intervallo di invio" - -#: 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 "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:742 -msgid "Poll interval" -msgstr "Intervallo di poll" - -#: mod/admin.php:742 -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:743 -msgid "Maximum Load Average" -msgstr "Massimo carico medio" - -#: mod/admin.php:743 -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:744 -msgid "Maximum Load Average (Frontend)" -msgstr "Media Massimo Carico (Frontend)" - -#: mod/admin.php:744 -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:746 -msgid "Periodical check of global contacts" -msgstr "Check periodico dei contatti globali" - -#: 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 "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:747 -msgid "Discover contacts from other servers" -msgstr "Trova contatti dagli altri 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 "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:748 -msgid "Timeframe for fetching global contacts" -msgstr "Termine per il recupero contatti globali" - -#: 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 "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:749 -msgid "Search the local directory" -msgstr "Cerca la directory locale" - -#: 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 "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:751 -msgid "Publish server information" -msgstr "Pubblica informazioni server" - -#: 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 "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:753 -msgid "Use MySQL full text engine" -msgstr "Usa il motore MySQL full text" - -#: mod/admin.php:753 -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:754 -msgid "Suppress Language" -msgstr "Disattiva lingua" - -#: mod/admin.php:754 -msgid "Suppress language information in meta information about a posting." -msgstr "Disattiva le informazioni sulla lingua nei meta di un post." - -#: mod/admin.php:755 -msgid "Suppress Tags" -msgstr "Sopprimi Tags" - -#: mod/admin.php:755 -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:756 -msgid "Path to item cache" -msgstr "Percorso cache elementi" - -#: mod/admin.php:756 -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:757 -msgid "Cache duration in seconds" -msgstr "Durata della cache in secondi" - -#: 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 "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:758 -msgid "Maximum numbers of comments per post" -msgstr "Numero massimo di commenti per post" - -#: mod/admin.php:758 -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:759 -msgid "Path for lock file" -msgstr "Percorso al file di lock" - -#: mod/admin.php:759 -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:760 -msgid "Temp path" -msgstr "Percorso file temporanei" - -#: 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 "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:761 -msgid "Base path to installation" -msgstr "Percorso base all'installazione" - -#: 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 "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:762 -msgid "Disable picture proxy" -msgstr "Disabilita il proxy immagini" - -#: mod/admin.php:762 -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:763 -msgid "Enable old style pager" -msgstr "Abilita la paginazione vecchio stile" - -#: mod/admin.php:763 -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:764 -msgid "Only search in tags" -msgstr "Cerca solo nei tag" - -#: mod/admin.php:764 -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:766 -msgid "New base url" -msgstr "Nuovo url base" - -#: mod/admin.php:766 -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:768 -msgid "RINO Encryption" -msgstr "Crittografia RINO" - -#: mod/admin.php:768 -msgid "Encryption layer between nodes." -msgstr "Crittografia delle comunicazioni tra nodi." - -#: mod/admin.php:769 -msgid "Embedly API key" -msgstr "Embedly API key" - -#: mod/admin.php:769 -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:787 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato segnato come di successo" - -#: mod/admin.php:795 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Aggiornamento struttura database %s applicata con successo." - -#: mod/admin.php:798 -#, 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:810 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Esecuzione di %s fallita con errore: %s" - -#: mod/admin.php:813 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è stato applicato con successo" - -#: mod/admin.php:817 -#, 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:819 -#, 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:838 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." - -#: mod/admin.php:839 -msgid "Check database structure" -msgstr "Controlla struttura database" - -#: mod/admin.php:844 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti" - -#: mod/admin.php:845 -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:846 -msgid "Mark success (if update was manually applied)" -msgstr "Segna completato (se l'update è stato applicato manualmente)" - -#: mod/admin.php:847 -msgid "Attempt to execute this update step automatically" -msgstr "Cerco di eseguire questo aggiornamento in automatico" - -#: 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 "\nGentile %1$s,\n l'amministratore di %2$s ha impostato un account per te." - -#: 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 "\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:914 include/user.php:421 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" - -#: mod/admin.php:926 -#, 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:933 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s utente cancellato" -msgstr[1] "%s utenti cancellati" - -#: mod/admin.php:972 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' cancellato" - -#: mod/admin.php:980 -#, php-format -msgid "User '%s' unblocked" -msgstr "Utente '%s' sbloccato" - -#: mod/admin.php:980 -#, php-format -msgid "User '%s' blocked" -msgstr "Utente '%s' bloccato" - -#: mod/admin.php:1073 -msgid "Add User" -msgstr "Aggiungi utente" - -#: mod/admin.php:1074 -msgid "select all" -msgstr "seleziona tutti" - -#: mod/admin.php:1075 -msgid "User registrations waiting for confirm" -msgstr "Richieste di registrazione in attesa di conferma" - -#: mod/admin.php:1076 -msgid "User waiting for permanent deletion" -msgstr "Utente in attesa di cancellazione definitiva" - -#: mod/admin.php:1077 -msgid "Request date" -msgstr "Data richiesta" - -#: 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 "Email" - -#: mod/admin.php:1078 -msgid "No registrations." -msgstr "Nessuna registrazione." - -#: mod/admin.php:1080 -msgid "Deny" -msgstr "Nega" - -#: mod/admin.php:1084 -msgid "Site admin" -msgstr "Amministrazione sito" - -#: mod/admin.php:1085 -msgid "Account expired" -msgstr "Account scaduto" - -#: mod/admin.php:1088 -msgid "New User" -msgstr "Nuovo Utente" - -#: mod/admin.php:1089 mod/admin.php:1090 -msgid "Register date" -msgstr "Data registrazione" - -#: mod/admin.php:1089 mod/admin.php:1090 -msgid "Last login" -msgstr "Ultimo accesso" - -#: mod/admin.php:1089 mod/admin.php:1090 -msgid "Last item" -msgstr "Ultimo elemento" - -#: mod/admin.php:1089 -msgid "Deleted since" -msgstr "Rimosso da" - -#: mod/admin.php:1090 mod/settings.php:41 -msgid "Account" -msgstr "Account" - -#: 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 "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: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 "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?" - -#: mod/admin.php:1103 -msgid "Name of the new user." -msgstr "Nome del nuovo utente." - -#: mod/admin.php:1104 -msgid "Nickname" -msgstr "Nome utente" - -#: mod/admin.php:1104 -msgid "Nickname of the new user." -msgstr "Nome utente del nuovo utente." - -#: mod/admin.php:1105 -msgid "Email address of the new user." -msgstr "Indirizzo Email del nuovo utente." - -#: mod/admin.php:1138 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s disabilitato." - -#: mod/admin.php:1142 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s abilitato." - -#: mod/admin.php:1152 mod/admin.php:1375 -msgid "Disable" -msgstr "Disabilita" - -#: mod/admin.php:1154 mod/admin.php:1377 -msgid "Enable" -msgstr "Abilita" - -#: mod/admin.php:1177 mod/admin.php:1405 -msgid "Toggle" -msgstr "Inverti" - -#: mod/admin.php:1185 mod/admin.php:1415 -msgid "Author: " -msgstr "Autore: " - -#: mod/admin.php:1186 mod/admin.php:1416 -msgid "Maintainer: " -msgstr "Manutentore: " - -#: mod/admin.php:1335 -msgid "No themes found." -msgstr "Nessun tema trovato." - -#: mod/admin.php:1397 -msgid "Screenshot" -msgstr "Anteprima" - -#: mod/admin.php:1443 -msgid "[Experimental]" -msgstr "[Sperimentale]" - -#: mod/admin.php:1444 -msgid "[Unsupported]" -msgstr "[Non supportato]" - -#: mod/admin.php:1471 -msgid "Log settings updated." -msgstr "Impostazioni Log aggiornate." - -#: mod/admin.php:1527 -msgid "Clear" -msgstr "Pulisci" - -#: mod/admin.php:1533 -msgid "Enable Debugging" -msgstr "Abilita Debugging" - -#: mod/admin.php:1534 -msgid "Log file" -msgstr "File di Log" - -#: mod/admin.php:1534 -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:1535 -msgid "Log level" -msgstr "Livello di Log" - -#: mod/admin.php:1585 include/acl_selectors.php:347 -msgid "Close" -msgstr "Chiudi" - -#: mod/admin.php:1591 -msgid "FTP Host" -msgstr "Indirizzo FTP" - -#: mod/admin.php:1592 -msgid "FTP Path" -msgstr "Percorso FTP" - -#: mod/admin.php:1593 -msgid "FTP User" -msgstr "Utente FTP" - -#: mod/admin.php:1594 -msgid "FTP Password" -msgstr "Pasword FTP" - -#: mod/network.php:143 -#, php-format -msgid "Search Results For: %s" -msgstr "Risultato della ricerca per: %s" - -#: mod/network.php:187 mod/search.php:25 +#: mod/search.php:25 mod/network.php:187 msgid "Remove term" msgstr "Rimuovi termine" -#: mod/network.php:196 mod/search.php:34 include/features.php:42 +#: mod/search.php:34 mod/network.php:196 include/features.php:42 msgid "Saved Searches" msgstr "Ricerche salvate" -#: mod/network.php:197 include/group.php:277 -msgid "add" -msgstr "aggiungi" +#: mod/search.php:107 include/text.php:996 include/nav.php:119 +msgid "Search" +msgstr "Cerca" -#: mod/network.php:358 -msgid "Commented Order" -msgstr "Ordina per commento" - -#: mod/network.php:361 -msgid "Sort by Comment Date" -msgstr "Ordina per data commento" - -#: mod/network.php:365 -msgid "Posted Order" -msgstr "Ordina per invio" - -#: mod/network.php:368 -msgid "Sort by Post Date" -msgstr "Ordina per data messaggio" - -#: mod/network.php:378 -msgid "Posts that mention or involve you" -msgstr "Messaggi che ti citano o coinvolgono" - -#: mod/network.php:385 -msgid "New" -msgstr "Nuovo" - -#: mod/network.php:388 -msgid "Activity Stream - by date" -msgstr "Activity Stream - per data" - -#: mod/network.php:395 -msgid "Shared Links" -msgstr "Links condivisi" - -#: mod/network.php:398 -msgid "Interesting Links" -msgstr "Link Interessanti" - -#: mod/network.php:405 -msgid "Starred" -msgstr "Preferiti" - -#: mod/network.php:408 -msgid "Favourite Posts" -msgstr "Messaggi preferiti" - -#: 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] "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:469 -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:532 mod/content.php:119 -msgid "No such group" -msgstr "Nessun gruppo" - -#: mod/network.php:549 mod/content.php:130 -msgid "Group is empty" -msgstr "Il gruppo è vuoto" - -#: mod/network.php:560 mod/content.php:135 -#, php-format -msgid "Group: %s" -msgstr "Gruppo: %s" - -#: mod/network.php:578 -#, php-format -msgid "Contact: %s" -msgstr "Contatto: %s" - -#: mod/network.php:582 -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:587 -msgid "Invalid contact." -msgstr "Contatto non valido." - -#: mod/allfriends.php:37 -#, php-format -msgid "Friends of %s" -msgstr "Amici di %s" - -#: mod/allfriends.php:44 -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:317 -msgid "l, F j" -msgstr "l j F" - -#: mod/events.php:339 -msgid "Edit event" -msgstr "Modifca l'evento" - -#: mod/events.php:361 include/text.php:1716 include/text.php:1723 -msgid "link to source" -msgstr "Collegamento all'originale" - -#: mod/events.php:396 include/identity.php:667 include/nav.php:80 -#: view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "Eventi" - -#: mod/events.php:397 -msgid "Create New Event" -msgstr "Crea un nuovo evento" - -#: mod/events.php:398 -msgid "Previous" -msgstr "Precendente" - -#: mod/events.php:399 mod/install.php:209 -msgid "Next" -msgstr "Successivo" - -#: mod/events.php:491 -msgid "Event details" -msgstr "Dettagli dell'evento" - -#: mod/events.php:492 -msgid "Starting date and Title are required." -msgstr "La data di inizio e il titolo sono richiesti." - -#: mod/events.php:493 -msgid "Event Starts:" -msgstr "L'evento inizia:" - -#: mod/events.php:493 mod/events.php:505 -msgid "Required" -msgstr "Richiesto" - -#: mod/events.php:495 -msgid "Finish date/time is not known or not relevant" -msgstr "La data/ora di fine non è definita" - -#: mod/events.php:497 -msgid "Event Finishes:" -msgstr "L'evento finisce:" - -#: mod/events.php:499 -msgid "Adjust for viewer timezone" -msgstr "Visualizza con il fuso orario di chi legge" - -#: mod/events.php:501 -msgid "Description:" -msgstr "Descrizione:" - -#: mod/events.php:505 -msgid "Title:" -msgstr "Titolo:" - -#: mod/events.php:507 -msgid "Share this event" -msgstr "Condividi questo evento" - -#: 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 "Anteprima" - -#: mod/content.php:439 mod/content.php:742 mod/photos.php:1672 -#: object/Item.php:130 include/conversation.php:612 -msgid "Select" -msgstr "Seleziona" - -#: 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 "Vedi il profilo di %s @ %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 da %s" - -#: mod/content.php:499 include/conversation.php:689 -msgid "View in context" -msgstr "Vedi nel contesto" - -#: mod/content.php:605 object/Item.php:389 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" - -#: 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] "commento" - -#: mod/content.php:608 boot.php:765 object/Item.php:392 -#: include/contact_widgets.php:205 include/items.php:5134 -msgid "show more" -msgstr "mostra di più" - -#: mod/content.php:622 mod/photos.php:1379 object/Item.php:117 -msgid "Private Message" -msgstr "Messaggio privato" - -#: mod/content.php:686 mod/photos.php:1561 object/Item.php:232 -msgid "I like this (toggle)" -msgstr "Mi piace (clic per cambiare)" - -#: mod/content.php:686 object/Item.php:232 -msgid "like" -msgstr "mi piace" - -#: mod/content.php:687 mod/photos.php:1562 object/Item.php:233 -msgid "I don't like this (toggle)" -msgstr "Non mi piace (clic per cambiare)" - -#: mod/content.php:687 object/Item.php:233 -msgid "dislike" -msgstr "non mi piace" - -#: mod/content.php:689 object/Item.php:235 -msgid "Share this" -msgstr "Condividi questo" - -#: mod/content.php:689 object/Item.php:235 -msgid "share" -msgstr "condividi" - -#: 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 "Questo sei tu" - -#: 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 "Commento" - -#: mod/content.php:713 object/Item.php:681 -msgid "Bold" -msgstr "Grassetto" - -#: mod/content.php:714 object/Item.php:682 -msgid "Italic" -msgstr "Corsivo" - -#: mod/content.php:715 object/Item.php:683 -msgid "Underline" -msgstr "Sottolineato" - -#: mod/content.php:716 object/Item.php:684 -msgid "Quote" -msgstr "Citazione" - -#: mod/content.php:717 object/Item.php:685 -msgid "Code" -msgstr "Codice" - -#: mod/content.php:718 object/Item.php:686 -msgid "Image" -msgstr "Immagine" - -#: 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 "Modifica" - -#: mod/content.php:755 object/Item.php:196 -msgid "add star" -msgstr "aggiungi a speciali" - -#: mod/content.php:756 object/Item.php:197 -msgid "remove star" -msgstr "rimuovi da speciali" - -#: mod/content.php:757 object/Item.php:198 -msgid "toggle star status" -msgstr "Inverti stato preferito" - -#: mod/content.php:760 object/Item.php:201 -msgid "starred" -msgstr "preferito" - -#: mod/content.php:761 object/Item.php:221 -msgid "add tag" -msgstr "aggiungi tag" - -#: mod/content.php:765 object/Item.php:134 -msgid "save to folder" -msgstr "salva nella cartella" - -#: mod/content.php:856 object/Item.php:330 -msgid "to" -msgstr "a" - -#: mod/content.php:857 object/Item.php:332 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" - -#: mod/content.php:858 object/Item.php:333 -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:119 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica Comunicazione Server - Impostazioni" - -#: mod/install.php:125 -msgid "Could not connect to database." -msgstr " Impossibile collegarsi con il database." - -#: mod/install.php:129 -msgid "Could not create table." -msgstr "Impossibile creare le tabelle." - -#: mod/install.php:135 -msgid "Your Friendica site database has been installed." -msgstr "Il tuo Friendica è stato installato." - -#: mod/install.php:140 -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:141 mod/install.php:208 mod/install.php:530 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Leggi il file \"INSTALL.txt\"." - -#: mod/install.php:153 -msgid "Database already in use." -msgstr "Database già in uso." - -#: mod/install.php:205 -msgid "System check" -msgstr "Controllo sistema" - -#: mod/install.php:210 -msgid "Check again" -msgstr "Controlla ancora" - -#: mod/install.php:229 -msgid "Database connection" -msgstr "Connessione al database" - -#: mod/install.php:230 -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:231 -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:232 -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:236 -msgid "Database Server Name" -msgstr "Nome del database server" - -#: mod/install.php:237 -msgid "Database Login Name" -msgstr "Nome utente database" - -#: mod/install.php:238 -msgid "Database Login Password" -msgstr "Password utente database" - -#: mod/install.php:239 -msgid "Database Name" -msgstr "Nome database" - -#: mod/install.php:240 mod/install.php:279 -msgid "Site administrator email address" -msgstr "Indirizzo email dell'amministratore del sito" - -#: 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 "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web." - -#: mod/install.php:244 mod/install.php:282 -msgid "Please select a default timezone for your website" -msgstr "Seleziona il fuso orario predefinito per il tuo sito web" - -#: mod/install.php:269 -msgid "Site settings" -msgstr "Impostazioni sito" - -#: mod/install.php:323 -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: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 "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 'Activating scheduled tasks'" - -#: mod/install.php:328 -msgid "PHP executable path" -msgstr "Percorso eseguibile PHP" - -#: mod/install.php:328 -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:333 -msgid "Command line PHP" -msgstr "PHP da riga di comando" - -#: mod/install.php:342 -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:343 -msgid "Found PHP version: " -msgstr "Versione PHP:" - -#: mod/install.php:345 -msgid "PHP cli binary" -msgstr "Binario PHP cli" - -#: mod/install.php:356 -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:357 -msgid "This is required for message delivery to work." -msgstr "E' obbligatorio per far funzionare la consegna dei messaggi." - -#: 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 "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione" - -#: mod/install.php:381 -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:383 -msgid "Generate encryption keys" -msgstr "Genera chiavi di criptazione" - -#: mod/install.php:390 -msgid "libCurl PHP module" -msgstr "modulo PHP libCurl" - -#: mod/install.php:391 -msgid "GD graphics PHP module" -msgstr "modulo PHP GD graphics" - -#: mod/install.php:392 -msgid "OpenSSL PHP module" -msgstr "modulo PHP OpenSSL" - -#: mod/install.php:393 -msgid "mysqli PHP module" -msgstr "modulo PHP mysqli" - -#: mod/install.php:394 -msgid "mb_string PHP module" -msgstr "modulo PHP mb_string" - -#: mod/install.php:399 mod/install.php:401 -msgid "Apache mod_rewrite module" -msgstr "Modulo mod_rewrite di Apache" - -#: mod/install.php:399 -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:407 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato." - -#: mod/install.php:411 -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:415 -msgid "Error: openssl PHP module required but not installed." -msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato." - -#: mod/install.php:419 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato" - -#: mod/install.php:423 -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: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 "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: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 "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: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 "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:443 -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:446 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php è scrivibile" - -#: 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 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: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 "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:458 -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: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 "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene." - -#: mod/install.php:462 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 è scrivibile" - -#: mod/install.php:478 -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:480 -msgid "Url rewrite is working" -msgstr "La riscrittura degli url funziona" - -#: 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 "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:528 -msgid "

What next

" -msgstr "

Cosa fare ora

" - -#: mod/install.php:529 -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:31 -msgid "Help:" -msgstr "Guida:" - -#: mod/help.php:36 include/nav.php:114 -msgid "Help" -msgstr "Guida" - -#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 -msgid "Not Found" -msgstr "Non trovato" - -#: mod/help.php:45 index.php:272 -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:83 -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:83 -msgid "Or - did you try to upload an empty file?" -msgstr "O.. non avrai provato a caricare un file vuoto?" - -#: mod/wall_attach.php:94 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Il file supera la dimensione massima di %s" - -#: mod/wall_attach.php:145 mod/wall_attach.php:161 -msgid "File upload failed." -msgstr "Caricamento del file non riuscito." - -#: mod/match.php:13 -msgid "Profile Match" -msgstr "Profili corrispondenti" - -#: mod/match.php:22 -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:64 -msgid "is interested in:" -msgstr "è interessato a:" - -#: mod/share.php:38 -msgid "link" -msgstr "collegamento" - -#: mod/community.php:23 -msgid "Not available." -msgstr "Non disponibile." - -#: mod/community.php:32 include/nav.php:137 include/nav.php:139 -#: view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "Comunità" - -#: mod/community.php:62 mod/community.php:71 mod/search.php:192 +#: mod/search.php:199 mod/community.php:62 mod/community.php:71 msgid "No results." msgstr "Nessun risultato." -#: mod/settings.php:34 mod/photos.php:102 -msgid "everybody" -msgstr "tutti" +#: mod/search.php:205 +#, php-format +msgid "Items tagged with: %s" +msgstr "Elementi taggati con: %s" + +#: mod/search.php:207 +#, php-format +msgid "Search results for: %s" +msgstr "Risultato della ricerca per: %s" + +#: mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Limite totale degli inviti superato." + +#: mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." + +#: mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Unisiciti a noi su Friendica" + +#: mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito." + +#: mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio fallita." + +#: mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." + +#: mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" + +#: mod/invite.php:120 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network." + +#: mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico." + +#: mod/invite.php:123 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti." + +#: mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri." + +#: mod/invite.php:132 +msgid "Send invitations" +msgstr "Invia inviti" + +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" + +#: mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore." + +#: mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Sarà necessario fornire questo codice invito: $invite_code" + +#: mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Una volta registrato, connettiti con me dal mio profilo:" + +#: mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com" #: mod/settings.php:47 msgid "Additional features" @@ -3824,7 +3854,7 @@ msgstr "Funzionalità aggiuntive" msgid "Display" msgstr "Visualizzazione" -#: mod/settings.php:60 mod/settings.php:835 +#: mod/settings.php:60 mod/settings.php:837 msgid "Social Networks" msgstr "Social Networks" @@ -4002,869 +4032,494 @@ msgid "" "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:791 mod/settings.php:792 +#: mod/settings.php:779 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:781 +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:784 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:793 mod/settings.php:794 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Il supporto integrato per la connettività con %s è %s" -#: 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 +#: mod/settings.php:793 mod/settings.php:794 msgid "enabled" msgstr "abilitato" -#: mod/settings.php:791 mod/settings.php:792 +#: mod/settings.php:793 mod/settings.php:794 msgid "disabled" msgstr "disabilitato" -#: mod/settings.php:792 +#: mod/settings.php:794 msgid "GNU Social (OStatus)" msgstr "GNU Social (OStatus)" -#: mod/settings.php:828 +#: mod/settings.php:830 msgid "Email access is disabled on this site." msgstr "L'accesso email è disabilitato su questo sito." -#: mod/settings.php:840 +#: mod/settings.php:842 msgid "Email/Mailbox Setup" msgstr "Impostazioni email" -#: mod/settings.php:841 +#: mod/settings.php:843 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:842 +#: mod/settings.php:844 msgid "Last successful email check:" msgstr "Ultimo controllo email eseguito con successo:" -#: mod/settings.php:844 +#: mod/settings.php:846 msgid "IMAP server name:" msgstr "Nome server IMAP:" -#: mod/settings.php:845 +#: mod/settings.php:847 msgid "IMAP port:" msgstr "Porta IMAP:" -#: mod/settings.php:846 +#: mod/settings.php:848 msgid "Security:" msgstr "Sicurezza:" -#: mod/settings.php:846 mod/settings.php:851 +#: mod/settings.php:848 mod/settings.php:853 msgid "None" msgstr "Nessuna" -#: mod/settings.php:847 +#: mod/settings.php:849 msgid "Email login name:" msgstr "Nome utente email:" -#: mod/settings.php:848 +#: mod/settings.php:850 msgid "Email password:" msgstr "Password email:" -#: mod/settings.php:849 +#: mod/settings.php:851 msgid "Reply-to address:" msgstr "Indirizzo di risposta:" -#: mod/settings.php:850 +#: mod/settings.php:852 msgid "Send public posts to all email contacts:" msgstr "Invia i messaggi pubblici ai contatti email:" -#: mod/settings.php:851 +#: mod/settings.php:853 msgid "Action after import:" msgstr "Azione post importazione:" -#: mod/settings.php:851 +#: mod/settings.php:853 msgid "Mark as seen" msgstr "Segna come letto" -#: mod/settings.php:851 +#: mod/settings.php:853 msgid "Move to folder" msgstr "Sposta nella cartella" -#: mod/settings.php:852 +#: mod/settings.php:854 msgid "Move to folder:" msgstr "Sposta nella cartella:" -#: mod/settings.php:933 +#: mod/settings.php:935 msgid "Display Settings" msgstr "Impostazioni Grafiche" -#: mod/settings.php:939 mod/settings.php:955 +#: mod/settings.php:941 mod/settings.php:957 msgid "Display Theme:" msgstr "Tema:" -#: mod/settings.php:940 +#: mod/settings.php:942 msgid "Mobile Theme:" msgstr "Tema mobile:" -#: mod/settings.php:941 +#: mod/settings.php:943 msgid "Update browser every xx seconds" msgstr "Aggiorna il browser ogni x secondi" -#: mod/settings.php:941 +#: mod/settings.php:943 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimo 10 secondi, nessun limite massimo" -#: mod/settings.php:942 +#: mod/settings.php:944 msgid "Number of items to display per page:" msgstr "Numero di elementi da mostrare per pagina:" -#: mod/settings.php:942 mod/settings.php:943 +#: mod/settings.php:944 mod/settings.php:945 msgid "Maximum of 100 items" msgstr "Massimo 100 voci" -#: mod/settings.php:943 +#: mod/settings.php:945 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:944 +#: mod/settings.php:946 msgid "Don't show emoticons" msgstr "Non mostrare le emoticons" -#: mod/settings.php:945 +#: mod/settings.php:947 msgid "Don't show notices" msgstr "Non mostrare gli avvisi" -#: mod/settings.php:946 +#: mod/settings.php:948 msgid "Infinite scroll" msgstr "Scroll infinito" -#: mod/settings.php:947 +#: mod/settings.php:949 msgid "Automatic updates only at the top of the network page" msgstr "Aggiornamenti automatici solo in cima alla pagina \"rete\"" -#: 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 +#: mod/settings.php:951 view/theme/diabook/config.php:150 +#: view/theme/vier/config.php:58 view/theme/dispy/config.php:72 +#: view/theme/duepuntozero/config.php:61 view/theme/quattro/config.php:66 +#: view/theme/cleanzero/config.php:82 msgid "Theme settings" msgstr "Impostazioni tema" -#: mod/settings.php:1025 +#: mod/settings.php:1027 msgid "User Types" msgstr "Tipi di Utenti" -#: mod/settings.php:1026 +#: mod/settings.php:1028 msgid "Community Types" msgstr "Tipi di Comunità" -#: mod/settings.php:1027 +#: mod/settings.php:1029 msgid "Normal Account Page" msgstr "Pagina Account Normale" -#: mod/settings.php:1028 +#: mod/settings.php:1030 msgid "This account is a normal personal profile" msgstr "Questo account è un normale profilo personale" -#: mod/settings.php:1031 +#: mod/settings.php:1033 msgid "Soapbox Page" msgstr "Pagina Sandbox" -#: mod/settings.php:1032 +#: mod/settings.php:1034 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:1035 +#: mod/settings.php:1037 msgid "Community Forum/Celebrity Account" msgstr "Account Celebrità/Forum comunitario" -#: mod/settings.php:1036 +#: mod/settings.php:1038 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:1039 +#: mod/settings.php:1041 msgid "Automatic Friend Page" msgstr "Pagina con amicizia automatica" -#: mod/settings.php:1040 +#: mod/settings.php:1042 msgid "Automatically approve all connection/friend requests as friends" msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico" -#: mod/settings.php:1043 +#: mod/settings.php:1045 msgid "Private Forum [Experimental]" msgstr "Forum privato [sperimentale]" -#: mod/settings.php:1044 +#: mod/settings.php:1046 msgid "Private forum - approved members only" msgstr "Forum privato - solo membri approvati" -#: mod/settings.php:1056 +#: mod/settings.php:1058 msgid "OpenID:" msgstr "OpenID:" -#: mod/settings.php:1056 +#: mod/settings.php:1058 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" -#: mod/settings.php:1066 +#: mod/settings.php:1068 msgid "Publish your default profile in your local site directory?" msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" -#: mod/settings.php:1072 +#: mod/settings.php:1074 msgid "Publish your default profile in the global social directory?" msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" -#: mod/settings.php:1080 +#: mod/settings.php:1082 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:1084 include/acl_selectors.php:330 +#: mod/settings.php:1086 include/acl_selectors.php:330 msgid "Hide your profile details from unknown viewers?" msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" -#: mod/settings.php:1084 +#: mod/settings.php:1086 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:1089 +#: mod/settings.php:1091 msgid "Allow friends to post to your profile page?" msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" -#: mod/settings.php:1095 +#: mod/settings.php:1097 msgid "Allow friends to tag your posts?" msgstr "Permetti agli amici di taggare i tuoi messaggi?" -#: mod/settings.php:1101 +#: mod/settings.php:1103 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:1107 +#: mod/settings.php:1109 msgid "Permit unknown people to send you private mail?" msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" -#: mod/settings.php:1115 +#: mod/settings.php:1117 msgid "Profile is not published." msgstr "Il profilo non è pubblicato." -#: mod/settings.php:1123 +#: mod/settings.php:1125 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "L'indirizzo della tua identità è '%s' or '%s'." -#: mod/settings.php:1130 +#: mod/settings.php:1132 msgid "Automatically expire posts after this many days:" msgstr "Fai scadere i post automaticamente dopo x giorni:" -#: mod/settings.php:1130 +#: mod/settings.php:1132 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." -#: mod/settings.php:1131 +#: mod/settings.php:1133 msgid "Advanced expiration settings" msgstr "Impostazioni avanzate di scandenza" -#: mod/settings.php:1132 +#: mod/settings.php:1134 msgid "Advanced Expiration" msgstr "Scadenza avanzata" -#: mod/settings.php:1133 +#: mod/settings.php:1135 msgid "Expire posts:" msgstr "Fai scadere i post:" -#: mod/settings.php:1134 +#: mod/settings.php:1136 msgid "Expire personal notes:" msgstr "Fai scadere le Note personali:" -#: mod/settings.php:1135 +#: mod/settings.php:1137 msgid "Expire starred posts:" msgstr "Fai scadere i post Speciali:" -#: mod/settings.php:1136 +#: mod/settings.php:1138 msgid "Expire photos:" msgstr "Fai scadere le foto:" -#: mod/settings.php:1137 +#: mod/settings.php:1139 msgid "Only expire posts by others:" msgstr "Fai scadere solo i post degli altri:" -#: mod/settings.php:1163 +#: mod/settings.php:1165 msgid "Account Settings" msgstr "Impostazioni account" -#: mod/settings.php:1171 +#: mod/settings.php:1173 msgid "Password Settings" msgstr "Impostazioni password" -#: mod/settings.php:1172 mod/register.php:271 -msgid "New Password:" -msgstr "Nuova password:" - -#: mod/settings.php:1173 mod/register.php:272 -msgid "Confirm:" -msgstr "Conferma:" - -#: mod/settings.php:1173 +#: mod/settings.php:1175 msgid "Leave password fields blank unless changing" msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" -#: mod/settings.php:1174 +#: mod/settings.php:1176 msgid "Current Password:" msgstr "Password Attuale:" -#: mod/settings.php:1174 mod/settings.php:1175 +#: mod/settings.php:1176 mod/settings.php:1177 msgid "Your current password to confirm the changes" msgstr "La tua password attuale per confermare le modifiche" -#: mod/settings.php:1175 +#: mod/settings.php:1177 msgid "Password:" msgstr "Password:" -#: mod/settings.php:1179 +#: mod/settings.php:1181 msgid "Basic Settings" msgstr "Impostazioni base" -#: mod/settings.php:1180 include/identity.php:538 +#: mod/settings.php:1182 include/identity.php:539 msgid "Full Name:" msgstr "Nome completo:" -#: mod/settings.php:1181 +#: mod/settings.php:1183 msgid "Email Address:" msgstr "Indirizzo Email:" -#: mod/settings.php:1182 +#: mod/settings.php:1184 msgid "Your Timezone:" msgstr "Il tuo fuso orario:" -#: mod/settings.php:1183 +#: mod/settings.php:1185 msgid "Default Post Location:" msgstr "Località predefinita:" -#: mod/settings.php:1184 +#: mod/settings.php:1186 msgid "Use Browser Location:" msgstr "Usa la località rilevata dal browser:" -#: mod/settings.php:1187 +#: mod/settings.php:1189 msgid "Security and Privacy Settings" msgstr "Impostazioni di sicurezza e privacy" -#: mod/settings.php:1189 +#: mod/settings.php:1191 msgid "Maximum Friend Requests/Day:" msgstr "Numero massimo di richieste di amicizia al giorno:" -#: mod/settings.php:1189 mod/settings.php:1219 +#: mod/settings.php:1191 mod/settings.php:1221 msgid "(to prevent spam abuse)" msgstr "(per prevenire lo spam)" -#: mod/settings.php:1190 +#: mod/settings.php:1192 msgid "Default Post Permissions" msgstr "Permessi predefiniti per i messaggi" -#: mod/settings.php:1191 +#: mod/settings.php:1193 msgid "(click to open/close)" msgstr "(clicca per aprire/chiudere)" -#: mod/settings.php:1200 mod/photos.php:1166 mod/photos.php:1538 -msgid "Show to Groups" -msgstr "Mostra ai gruppi" - -#: mod/settings.php:1201 mod/photos.php:1167 mod/photos.php:1539 -msgid "Show to Contacts" -msgstr "Mostra ai contatti" - -#: mod/settings.php:1202 +#: mod/settings.php:1204 msgid "Default Private Post" msgstr "Default Post Privato" -#: mod/settings.php:1203 +#: mod/settings.php:1205 msgid "Default Public Post" msgstr "Default Post Pubblico" -#: mod/settings.php:1207 +#: mod/settings.php:1209 msgid "Default Permissions for New Posts" msgstr "Permessi predefiniti per i nuovi post" -#: mod/settings.php:1219 +#: mod/settings.php:1221 msgid "Maximum private messages per day from unknown people:" msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" -#: mod/settings.php:1222 +#: mod/settings.php:1224 msgid "Notification Settings" msgstr "Impostazioni notifiche" -#: mod/settings.php:1223 +#: mod/settings.php:1225 msgid "By default post a status message when:" msgstr "Invia un messaggio di stato quando:" -#: mod/settings.php:1224 +#: mod/settings.php:1226 msgid "accepting a friend request" msgstr "accetti una richiesta di amicizia" -#: mod/settings.php:1225 +#: mod/settings.php:1227 msgid "joining a forum/community" msgstr "ti unisci a un forum/comunità" -#: mod/settings.php:1226 +#: mod/settings.php:1228 msgid "making an interesting profile change" msgstr "fai un interessante modifica al profilo" -#: mod/settings.php:1227 +#: mod/settings.php:1229 msgid "Send a notification email when:" msgstr "Invia una mail di notifica quando:" -#: mod/settings.php:1228 +#: mod/settings.php:1230 msgid "You receive an introduction" msgstr "Ricevi una presentazione" -#: mod/settings.php:1229 +#: mod/settings.php:1231 msgid "Your introductions are confirmed" msgstr "Le tue presentazioni sono confermate" -#: mod/settings.php:1230 +#: mod/settings.php:1232 msgid "Someone writes on your profile wall" msgstr "Qualcuno scrive sulla bacheca del tuo profilo" -#: mod/settings.php:1231 +#: mod/settings.php:1233 msgid "Someone writes a followup comment" msgstr "Qualcuno scrive un commento a un tuo messaggio" -#: mod/settings.php:1232 +#: mod/settings.php:1234 msgid "You receive a private message" msgstr "Ricevi un messaggio privato" -#: mod/settings.php:1233 +#: mod/settings.php:1235 msgid "You receive a friend suggestion" msgstr "Hai ricevuto un suggerimento di amicizia" -#: mod/settings.php:1234 +#: mod/settings.php:1236 msgid "You are tagged in a post" msgstr "Sei stato taggato in un post" -#: mod/settings.php:1235 +#: mod/settings.php:1237 msgid "You are poked/prodded/etc. in a post" msgstr "Sei 'toccato'/'spronato'/ecc. in un post" -#: mod/settings.php:1237 +#: mod/settings.php:1239 msgid "Activate desktop notifications" msgstr "Attiva notifiche desktop" -#: mod/settings.php:1237 +#: mod/settings.php:1239 msgid "Show desktop popup on new notifications" msgstr "Mostra un popup di notifica sul desktop all'arrivo di nuove notifiche" -#: mod/settings.php:1239 +#: mod/settings.php:1241 msgid "Text-only notification emails" msgstr "Email di notifica in solo testo" -#: mod/settings.php:1241 +#: mod/settings.php:1243 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:1243 +#: mod/settings.php:1245 msgid "Advanced Account/Page Type Settings" msgstr "Impostazioni avanzate Account/Tipo di pagina" -#: mod/settings.php:1244 +#: mod/settings.php:1246 msgid "Change the behaviour of this account for special situations" msgstr "Modifica il comportamento di questo account in situazioni speciali" -#: mod/settings.php:1247 +#: mod/settings.php:1249 msgid "Relocate" msgstr "Trasloca" -#: mod/settings.php:1248 +#: mod/settings.php:1250 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:1249 +#: mod/settings.php:1251 msgid "Resend relocate message to contacts" msgstr "Reinvia il messaggio di trasloco" -#: mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Questa presentazione è già stata accettata." +#: mod/display.php:505 +msgid "Item has been removed." +msgstr "L'oggetto è stato rimosso." -#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." - -#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." - -#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Attenzione: l'indirizzo del profilo non ha una foto." - -#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#: mod/dirfind.php:36 #, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d parametro richiesto non è stato trovato all'indirizzo dato" -msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" +msgid "People Search - %s" +msgstr "Cerca persone - %s" -#: mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Presentazione completa." +#: mod/dirfind.php:125 mod/suggest.php:92 mod/match.php:70 +#: include/identity.php:188 include/contact_widgets.php:10 +msgid "Connect" +msgstr "Connetti" -#: mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Errore di comunicazione." - -#: mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profilo non disponibile." - -#: mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s ha ricevuto troppe richieste di connessione per oggi." - -#: mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Sono state attivate le misure di protezione contro lo spam." - -#: mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Gli amici sono pregati di riprovare tra 24 ore." - -#: mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Invalid locator" - -#: mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Indirizzo email non valido." - -#: mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Questo account non è stato configurato per l'email. Richiesta fallita." - -#: mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Impossibile risolvere il tuo nome nella posizione indicata." - -#: mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Ti sei già presentato qui." - -#: mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Pare che tu e %s siate già amici." - -#: mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Indirizzo profilo non valido." - -#: mod/dfrn_request.php:507 include/follow.php:70 -msgid "Disallowed profile URL." -msgstr "Indirizzo profilo non permesso." - -#: mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "La tua presentazione è stata inviata." - -#: mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Accedi per confermare la presentazione." - -#: mod/dfrn_request.php:660 -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:674 mod/dfrn_request.php:691 -msgid "Confirm" -msgstr "Conferma" - -#: mod/dfrn_request.php:686 -msgid "Hide this contact" -msgstr "Nascondi questo contatto" - -#: mod/dfrn_request.php:689 -#, php-format -msgid "Welcome home %s." -msgstr "Bentornato a casa %s." - -#: mod/dfrn_request.php:690 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Conferma la tua richiesta di connessione con %s." - -#: mod/dfrn_request.php:819 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:" - -#: mod/dfrn_request.php: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 "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:845 -msgid "Friend/Connection Request" -msgstr "Richieste di amicizia/connessione" - -#: mod/dfrn_request.php:846 -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:854 include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: mod/dfrn_request.php:855 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: mod/dfrn_request.php:857 -#, 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:107 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere elaborata." - -#: mod/register.php:150 -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:188 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:216 -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:217 -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:218 -msgid "Your OpenID (optional): " -msgstr "Il tuo OpenID (opzionale): " - -#: mod/register.php:232 -msgid "Include your profile in member directory?" -msgstr "Includi il tuo profilo nell'elenco pubblico?" - -#: mod/register.php:256 -msgid "Membership on this site is by invitation only." -msgstr "La registrazione su questo sito è solo su invito." - -#: mod/register.php:257 -msgid "Your invitation ID: " -msgstr "L'ID del tuo invito:" - -#: mod/register.php:268 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Il tuo nome completo (es. Mario Rossi): " - -#: mod/register.php:269 -msgid "Your Email Address: " -msgstr "Il tuo indirizzo email: " - -#: mod/register.php:271 -msgid "Leave empty for an auto generated password." -msgstr "Lascia vuoto per generare automaticamente una password." - -#: 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 "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@$sitename'." - -#: mod/register.php:274 -msgid "Choose a nickname: " -msgstr "Scegli un nome utente: " - -#: mod/register.php:277 boot.php:1248 include/nav.php:109 -msgid "Register" -msgstr "Registrati" - -#: mod/register.php:283 mod/uimport.php:64 -msgid "Import" -msgstr "Importa" - -#: mod/register.php:284 -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 include/text.php:996 include/nav.php:119 -msgid "Search" -msgstr "Cerca" - -#: mod/search.php:198 -#, php-format -msgid "Items tagged with: %s" -msgstr "Elementi taggati con: %s" - -#: mod/search.php:200 -#, php-format -msgid "Search results for: %s" -msgstr "Risultato della ricerca per: %s" - -#: mod/directory.php:53 view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Elenco globale" - -#: mod/directory.php:61 -msgid "Find on this site" -msgstr "Cerca nel sito" - -#: mod/directory.php:64 -msgid "Site Directory" -msgstr "Elenco del sito" - -#: mod/directory.php:129 mod/profiles.php:747 -msgid "Age: " -msgstr "Età : " - -#: mod/directory.php:132 -msgid "Gender: " -msgstr "Genere:" - -#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 -msgid "Status:" -msgstr "Stato:" - -#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 -msgid "Homepage:" -msgstr "Homepage:" - -#: mod/directory.php:205 -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:179 -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:45 -msgid "Common Friends" -msgstr "Amici in comune" - -#: mod/common.php:82 -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:226 -#, 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:69 include/contact_widgets.php:35 -#: view/theme/diabook/theme.php:527 -msgid "Friend Suggestions" -msgstr "Contatti suggeriti" - -#: mod/suggest.php:76 -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:94 -msgid "Ignore/Hide" -msgstr "Ignora / Nascondi" +#: mod/dirfind.php:141 mod/match.php:77 +msgid "No matches" +msgstr "Nessun risultato" #: mod/profiles.php:37 msgid "Profile deleted." @@ -5073,7 +4728,7 @@ msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" msgid "Since [date]:" msgstr "Dal [data]:" -#: mod/profiles.php:711 include/identity.php:569 +#: mod/profiles.php:711 include/identity.php:570 msgid "Sexual Preference:" msgstr "Preferenze sessuali:" @@ -5081,11 +4736,11 @@ msgstr "Preferenze sessuali:" msgid "Homepage URL:" msgstr "Homepage:" -#: mod/profiles.php:713 include/identity.php:573 +#: mod/profiles.php:713 include/identity.php:574 msgid "Hometown:" msgstr "Paese natale:" -#: mod/profiles.php:714 include/identity.php:577 +#: mod/profiles.php:714 include/identity.php:578 msgid "Political Views:" msgstr "Orientamento politico:" @@ -5101,11 +4756,11 @@ msgstr "Parole chiave visibili a tutti:" msgid "Private Keywords:" msgstr "Parole chiave private:" -#: mod/profiles.php:718 include/identity.php:585 +#: mod/profiles.php:718 include/identity.php:586 msgid "Likes:" msgstr "Mi piace:" -#: mod/profiles.php:719 include/identity.php:587 +#: mod/profiles.php:719 include/identity.php:588 msgid "Dislikes:" msgstr "Non mi piace:" @@ -5167,6 +4822,10 @@ msgid "" "be visible to anybody using the internet." msgstr "Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet." +#: mod/profiles.php:747 mod/directory.php:129 +msgid "Age: " +msgstr "Età : " + #: mod/profiles.php:800 msgid "Edit/Manage Profiles" msgstr "Modifica / Gestisci profili" @@ -5191,153 +4850,284 @@ msgstr "visibile a tutti" msgid "Edit visibility" msgstr "Modifica visibilità" -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "Oggetto non trovato" +#: mod/share.php:38 +msgid "link" +msgstr "collegamento" -#: mod/editpost.php:40 -msgid "Edit post" -msgstr "Modifica messaggio" +#: mod/uexport.php:77 +msgid "Export account" +msgstr "Esporta account" -#: mod/editpost.php:111 include/conversation.php:1057 -msgid "upload photo" -msgstr "carica foto" - -#: mod/editpost.php:112 include/conversation.php:1058 -msgid "Attach file" -msgstr "Allega file" - -#: mod/editpost.php:113 include/conversation.php:1059 -msgid "attach file" -msgstr "allega file" - -#: mod/editpost.php:115 include/conversation.php:1061 -msgid "web link" -msgstr "link web" - -#: mod/editpost.php:116 include/conversation.php:1062 -msgid "Insert video link" -msgstr "Inserire collegamento video" - -#: mod/editpost.php:117 include/conversation.php:1063 -msgid "video link" -msgstr "link video" - -#: mod/editpost.php:118 include/conversation.php:1064 -msgid "Insert audio link" -msgstr "Inserisci collegamento 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 "La tua posizione" - -#: mod/editpost.php:121 include/conversation.php:1067 -msgid "set location" -msgstr "posizione" - -#: mod/editpost.php:122 include/conversation.php:1068 -msgid "Clear browser location" -msgstr "Rimuovi la localizzazione data dal browser" - -#: mod/editpost.php:123 include/conversation.php:1069 -msgid "clear location" -msgstr "canc. pos." - -#: mod/editpost.php:125 include/conversation.php:1075 -msgid "Permission settings" -msgstr "Impostazioni permessi" - -#: mod/editpost.php:133 include/acl_selectors.php:343 -msgid "CC: email addresses" -msgstr "CC: indirizzi email" - -#: mod/editpost.php:134 include/conversation.php:1084 -msgid "Public post" -msgstr "Messaggio pubblico" - -#: mod/editpost.php:137 include/conversation.php:1071 -msgid "Set title" -msgstr "Scegli un titolo" - -#: mod/editpost.php:139 include/conversation.php:1073 -msgid "Categories (comma-separated list)" -msgstr "Categorie (lista separata da virgola)" - -#: mod/editpost.php:140 include/acl_selectors.php:344 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Esempio: bob@example.com, mary@example.com" - -#: mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Questo è Friendica, versione" - -#: mod/friendica.php:60 -msgid "running at web location" -msgstr "in esecuzione all'indirizzo web" - -#: mod/friendica.php:62 +#: mod/uexport.php:77 msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." +"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/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Segnalazioni di bug e problemi: visita" +#: mod/uexport.php:78 +msgid "Export all" +msgstr "Esporta tutto" -#: mod/friendica.php:64 -msgid "the bugtracker at github" -msgstr "il bugtracker su github" - -#: mod/friendica.php:65 +#: mod/uexport.php:78 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" +"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/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Plugin/addon/applicazioni instalate" +#: mod/ping.php:233 +msgid "{0} wants to be your friend" +msgstr "{0} vuole essere tuo amico" -#: mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Nessun plugin/addons/applicazione installata" +#: mod/ping.php:248 +msgid "{0} sent you a message" +msgstr "{0} ti ha inviato un messaggio" -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizza la connessione dell'applicazione" +#: mod/ping.php:263 +msgid "{0} requested registration" +msgstr "{0} chiede la registrazione" -#: 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/navigation.php:20 include/nav.php:34 +msgid "Nothing new here" +msgstr "Niente di nuovo qui" -#: mod/api.php:89 -msgid "Please login to continue." -msgstr "Effettua il login per continuare." +#: mod/navigation.php:24 include/nav.php:38 +msgid "Clear notifications" +msgstr "Pulisci le notifiche" -#: mod/api.php:104 +#: mod/community.php:23 +msgid "Not available." +msgstr "Non disponibile." + +#: mod/community.php:32 view/theme/diabook/theme.php:129 include/nav.php:137 +#: include/nav.php:139 +msgid "Community" +msgstr "Comunità" + +#: mod/filer.php:30 include/conversation.php:1005 +#: include/conversation.php:1023 +msgid "Save to Folder:" +msgstr "Salva nella Cartella:" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- seleziona -" + +#: mod/wall_attach.php:83 +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:83 +msgid "Or - did you try to upload an empty file?" +msgstr "O.. non avrai provato a caricare un file vuoto?" + +#: mod/wall_attach.php:94 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Il file supera la dimensione massima di %s" + +#: mod/wall_attach.php:145 mod/wall_attach.php:161 +msgid "File upload failed." +msgstr "Caricamento del file non riuscito." + +#: 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:222 +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/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Vuoi veramente cancellare questo suggerimento?" + +#: mod/suggest.php:69 view/theme/diabook/theme.php:527 +#: include/contact_widgets.php:35 +msgid "Friend Suggestions" +msgstr "Contatti suggeriti" + +#: mod/suggest.php:76 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?" +"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/lockview.php:31 mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informazioni remote sulla privacy non disponibili." +#: mod/suggest.php:94 +msgid "Ignore/Hide" +msgstr "Ignora / Nascondi" -#: mod/lockview.php:48 -msgid "Visible to:" -msgstr "Visibile a:" +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Accesso negato." -#: mod/notes.php:44 include/identity.php:675 +#: mod/repair_ostatus.php:14 +msgid "Resubsribing 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/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/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Gestisci indentità e/o pagine" + +#: mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" + +#: mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Seleziona un'identità da gestire:" + +#: mod/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:179 +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/viewcontacts.php:41 +msgid "No contacts." +msgstr "Nessun contatto." + +#: mod/viewcontacts.php:78 include/text.php:917 +msgid "View Contacts" +msgstr "Visualizza i contatti" + +#: mod/notes.php:44 include/identity.php:676 msgid "Personal Notes" msgstr "Note personali" -#: mod/localtime.php:12 include/bb2diaspora.php:148 include/event.php:13 +#: 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/directory.php:53 view/theme/diabook/theme.php:525 +msgid "Global Directory" +msgstr "Elenco globale" + +#: mod/directory.php:61 +msgid "Find on this site" +msgstr "Cerca nel sito" + +#: mod/directory.php:64 +msgid "Site Directory" +msgstr "Elenco del sito" + +#: mod/directory.php:132 +msgid "Gender: " +msgstr "Genere:" + +#: mod/directory.php:156 include/identity.php:273 include/identity.php:561 +msgid "Status:" +msgstr "Stato:" + +#: mod/directory.php:158 include/identity.php:275 include/identity.php:572 +msgid "Homepage:" +msgstr "Homepage:" + +#: mod/directory.php:205 +msgid "No entries (some entries may be hidden)." +msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." + +#: mod/ostatus_subscribe.php:14 +msgid "Subsribing 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/localtime.php:12 include/event.php:13 include/bb2diaspora.php:148 msgid "l F d, Y \\@ g:i A" msgstr "l d F Y \\@ G:i" @@ -5370,303 +5160,440 @@ msgstr "Ora locale convertita: %s" msgid "Please select your timezone:" msgstr "Selezionare il tuo fuso orario:" -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Tocca/Pungola" +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Inviato!" -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "tocca, pungola o fai altre cose a qualcuno" +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." -#: mod/poke.php:194 -msgid "Recipient" -msgstr "Destinatario" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi fare al destinatario" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "Rendi questo post privato" - -#: mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limite totale degli inviti superato." - -#: mod/invite.php:49 +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:308 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." +msgid "Image size reduction [%s] failed." +msgstr "Il ridimensionamento del'immagine [%s] è fallito." -#: 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 +#: mod/profile_photo.php:118 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." +"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/invite.php:122 -#, php-format +#: mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" + +#: mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Carica un file:" + +#: mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Seleziona un profilo:" + +#: mod/profile_photo.php:245 +#: view/smarty3/compiled/7ed3c1755557256685d55b3a8e5cca927de090fb.file.filebrowser_plain.tpl.php:96 +#: view/smarty3/compiled/48b358673d34ee5cf1512cb114ef7f14c9f5b9d0.file.filebrowser_plain.tpl.php:96 +#: view/smarty3/compiled/be03ead94b64e658f07d62d8fbdc13a08b408e62.file.filebrowser_plain.tpl.php:103 +msgid "Upload" +msgstr "Carica" + +#: mod/profile_photo.php:248 +msgid "or" +msgstr "o" + +#: mod/profile_photo.php:248 +msgid "skip this step" +msgstr "salta questo passaggio" + +#: mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "seleziona una foto dai tuoi album" + +#: mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Ritaglia immagine" + +#: mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ritaglia l'imagine per una visualizzazione migliore." + +#: mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Finito" + +#: mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Immagine caricata con successo." + +#: mod/install.php:119 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica Comunicazione Server - Impostazioni" + +#: mod/install.php:125 +msgid "Could not connect to database." +msgstr " Impossibile collegarsi con il database." + +#: mod/install.php:129 +msgid "Could not create table." +msgstr "Impossibile creare le tabelle." + +#: mod/install.php:135 +msgid "Your Friendica site database has been installed." +msgstr "Il tuo Friendica è stato installato." + +#: mod/install.php:140 msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico." +"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/invite.php:123 -#, php-format +#: mod/install.php:141 mod/install.php:208 mod/install.php:537 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Leggi il file \"INSTALL.txt\"." + +#: mod/install.php:153 +msgid "Database already in use." +msgstr "Database già in uso." + +#: mod/install.php:205 +msgid "System check" +msgstr "Controllo sistema" + +#: mod/install.php:210 +msgid "Check again" +msgstr "Controlla ancora" + +#: mod/install.php:229 +msgid "Database connection" +msgstr "Connessione al database" + +#: mod/install.php:230 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." +"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/invite.php:126 +#: mod/install.php:231 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." +"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/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 +#: mod/install.php:232 msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore." +"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/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Sarà necessario fornire questo codice invito: $invite_code" +#: mod/install.php:236 +msgid "Database Server Name" +msgstr "Nome del database server" -#: mod/invite.php:137 +#: mod/install.php:237 +msgid "Database Login Name" +msgstr "Nome utente database" + +#: mod/install.php:238 +msgid "Database Login Password" +msgstr "Password utente database" + +#: mod/install.php:239 +msgid "Database Name" +msgstr "Nome database" + +#: mod/install.php:240 mod/install.php:279 +msgid "Site administrator email address" +msgstr "Indirizzo email dell'amministratore del sito" + +#: mod/install.php:240 mod/install.php:279 msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Una volta registrato, connettiti con me dal mio profilo:" +"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/invite.php:139 +#: mod/install.php:244 mod/install.php:282 +msgid "Please select a default timezone for your website" +msgstr "Seleziona il fuso orario predefinito per il tuo sito web" + +#: mod/install.php:269 +msgid "Site settings" +msgstr "Impostazioni sito" + +#: mod/install.php:323 +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:324 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" +"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 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 'Activating scheduled tasks'" -#: 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 "Foto dei contatti" +#: mod/install.php:328 +msgid "PHP executable path" +msgstr "Percorso eseguibile PHP" -#: mod/photos.php:84 include/identity.php:651 -msgid "Photo Albums" -msgstr "Album foto" - -#: mod/photos.php:85 mod/photos.php:1836 -msgid "Recent Photos" -msgstr "Foto recenti" - -#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 -msgid "Upload New Photos" -msgstr "Carica nuove foto" - -#: mod/photos.php:166 -msgid "Contact information unavailable" -msgstr "I dati di questo contatto non sono disponibili" - -#: mod/photos.php:187 -msgid "Album not found." -msgstr "Album non trovato." - -#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 -msgid "Delete Album" -msgstr "Rimuovi album" - -#: mod/photos.php:220 -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:300 mod/photos.php:311 mod/photos.php:1534 -msgid "Delete Photo" -msgstr "Rimuovi foto" - -#: mod/photos.php:309 -msgid "Do you really want to delete this photo?" -msgstr "Vuoi veramente cancellare questa foto?" - -#: mod/photos.php:684 -#, 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:684 -msgid "a photo" -msgstr "una foto" - -#: mod/photos.php:797 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." - -#: mod/photos.php:952 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" - -#: 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:1149 -msgid "Upload Photos" -msgstr "Carica foto" - -#: mod/photos.php:1153 mod/photos.php:1219 -msgid "New album name: " -msgstr "Nome nuovo album: " - -#: mod/photos.php:1154 -msgid "or existing album name: " -msgstr "o nome di un album esistente: " - -#: mod/photos.php:1155 -msgid "Do not show a status post for this upload" -msgstr "Non creare un post per questo upload" - -#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 -msgid "Permissions" -msgstr "Permessi" - -#: mod/photos.php:1168 -msgid "Private Photo" -msgstr "Foto privata" - -#: mod/photos.php:1169 -msgid "Public Photo" -msgstr "Foto pubblica" - -#: mod/photos.php:1232 -msgid "Edit Album" -msgstr "Modifica album" - -#: mod/photos.php:1238 -msgid "Show Newest First" -msgstr "Mostra nuove foto per prime" - -#: mod/photos.php:1240 -msgid "Show Oldest First" -msgstr "Mostra vecchie foto per prime" - -#: mod/photos.php:1268 mod/photos.php:1821 -msgid "View Photo" -msgstr "Vedi foto" - -#: mod/photos.php:1314 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." - -#: mod/photos.php:1316 -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:1477 -msgid "Tags: " -msgstr "Tag: " - -#: mod/photos.php:1480 -msgid "[Remove any tag]" -msgstr "[Rimuovi tutti i tag]" - -#: mod/photos.php:1520 -msgid "New album name" -msgstr "Nuovo nome dell'album" - -#: mod/photos.php:1521 -msgid "Caption" -msgstr "Titolo" - -#: mod/photos.php:1522 -msgid "Add a Tag" -msgstr "Aggiungi tag" - -#: mod/photos.php:1522 +#: mod/install.php:328 msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +"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/photos.php:1523 -msgid "Do not rotate" -msgstr "Non ruotare" +#: mod/install.php:333 +msgid "Command line PHP" +msgstr "PHP da riga di comando" -#: mod/photos.php:1524 -msgid "Rotate CW (right)" -msgstr "Ruota a destra" +#: mod/install.php:342 +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/photos.php:1525 -msgid "Rotate CCW (left)" -msgstr "Ruota a sinistra" +#: mod/install.php:343 +msgid "Found PHP version: " +msgstr "Versione PHP:" -#: mod/photos.php:1540 -msgid "Private photo" -msgstr "Foto privata" +#: mod/install.php:345 +msgid "PHP cli binary" +msgstr "Binario PHP cli" -#: mod/photos.php:1541 -msgid "Public photo" -msgstr "Foto pubblica" +#: mod/install.php:356 +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/photos.php:1563 include/conversation.php:1055 -msgid "Share" -msgstr "Condividi" +#: mod/install.php:357 +msgid "This is required for message delivery to work." +msgstr "E' obbligatorio per far funzionare la consegna dei messaggi." + +#: 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 "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione" + +#: mod/install.php:381 +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:383 +msgid "Generate encryption keys" +msgstr "Genera chiavi di criptazione" + +#: mod/install.php:390 +msgid "libCurl PHP module" +msgstr "modulo PHP libCurl" + +#: mod/install.php:391 +msgid "GD graphics PHP module" +msgstr "modulo PHP GD graphics" + +#: mod/install.php:392 +msgid "OpenSSL PHP module" +msgstr "modulo PHP OpenSSL" + +#: mod/install.php:393 +msgid "mysqli PHP module" +msgstr "modulo PHP mysqli" + +#: mod/install.php:394 +msgid "mb_string PHP module" +msgstr "modulo PHP mb_string" + +#: mod/install.php:395 +msgid "mcrypt PHP module" +msgstr "" + +#: mod/install.php:400 mod/install.php:402 +msgid "Apache mod_rewrite module" +msgstr "Modulo mod_rewrite di Apache" + +#: mod/install.php:400 +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:408 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato." + +#: mod/install.php:412 +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:416 +msgid "Error: openssl PHP module required but not installed." +msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato." + +#: mod/install.php:420 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato" + +#: mod/install.php:424 +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:428 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "" + +#: mod/install.php:447 +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:448 +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:449 +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:450 +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:453 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php è scrivibile" + +#: mod/install.php:463 +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:464 +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:465 +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:466 +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:469 +msgid "view/smarty3 is writable" +msgstr "view/smarty3 è scrivibile" + +#: mod/install.php:485 +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:487 +msgid "Url rewrite is working" +msgstr "La riscrittura degli url funziona" + +#: mod/install.php:496 +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:535 +msgid "

What next

" +msgstr "

Cosa fare ora

" + +#: mod/install.php:536 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller." #: mod/p.php:9 msgid "Not Extended" msgstr "Not Extended" +#: 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:273 +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/content.php:119 mod/network.php:532 +msgid "No such group" +msgstr "Nessun gruppo" + +#: mod/content.php:130 mod/network.php:549 +msgid "Group is empty" +msgstr "Il gruppo è vuoto" + +#: mod/content.php:135 mod/network.php:560 +#, php-format +msgid "Group: %s" +msgstr "Gruppo: %s" + +#: mod/content.php:499 include/conversation.php:689 +msgid "View in context" +msgstr "Vedi nel contesto" + #: mod/regmod.php:55 msgid "Account approved." msgstr "Account approvato." @@ -5680,44 +5607,523 @@ msgstr "Registrazione revocata per %s" msgid "Please login." msgstr "Accedi." -#: mod/uimport.php:66 -msgid "Move account" -msgstr "Muovi account" +#: mod/match.php:18 +msgid "Profile Match" +msgstr "Profili corrispondenti" -#: 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/match.php:27 +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/uimport.php:68 +#: mod/match.php:69 +msgid "is interested in:" +msgstr "è interessato a:" + +#: mod/item.php:115 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." + +#: mod/item.php:347 +msgid "Empty post discarded." +msgstr "Messaggio vuoto scartato." + +#: mod/item.php:860 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Messaggio non salvato." + +#: mod/item.php:989 +#, php-format 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." +"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/uimport.php:69 +#: mod/item.php:991 +#, php-format +msgid "You may visit them online at %s" +msgstr "Puoi visitarli online su %s" + +#: mod/item.php:992 msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora" +"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/uimport.php:70 -msgid "Account file" -msgstr "File account" +#: mod/item.php:996 +#, php-format +msgid "%s posted an update." +msgstr "%s ha inviato un aggiornamento." -#: mod/uimport.php:70 +#: mod/mood.php:62 include/conversation.php:226 +#, 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/network.php:143 +#, php-format +msgid "Search Results For: %s" +msgstr "Risultato della ricerca per: %s" + +#: mod/network.php:197 include/group.php:277 +msgid "add" +msgstr "aggiungi" + +#: mod/network.php:358 +msgid "Commented Order" +msgstr "Ordina per commento" + +#: mod/network.php:361 +msgid "Sort by Comment Date" +msgstr "Ordina per data commento" + +#: mod/network.php:365 +msgid "Posted Order" +msgstr "Ordina per invio" + +#: mod/network.php:368 +msgid "Sort by Post Date" +msgstr "Ordina per data messaggio" + +#: mod/network.php:378 +msgid "Posts that mention or involve you" +msgstr "Messaggi che ti citano o coinvolgono" + +#: mod/network.php:385 +msgid "New" +msgstr "Nuovo" + +#: mod/network.php:388 +msgid "Activity Stream - by date" +msgstr "Activity Stream - per data" + +#: mod/network.php:395 +msgid "Shared Links" +msgstr "Links condivisi" + +#: mod/network.php:398 +msgid "Interesting Links" +msgstr "Link Interessanti" + +#: mod/network.php:405 +msgid "Starred" +msgstr "Preferiti" + +#: mod/network.php:408 +msgid "Favourite Posts" +msgstr "Messaggi preferiti" + +#: 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] "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:469 +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:578 +#, php-format +msgid "Contact: %s" +msgstr "Contatto: %s" + +#: mod/network.php:582 +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:587 +msgid "Invalid contact." +msgstr "Contatto non valido." + +#: mod/crepair.php:107 +msgid "Contact settings applied." +msgstr "Contatto modificato." + +#: mod/crepair.php:109 +msgid "Contact update failed." +msgstr "Le modifiche al contatto non sono state salvate." + +#: mod/crepair.php:140 +msgid "Repair Contact Settings" +msgstr "Ripara il contatto" + +#: mod/crepair.php:142 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\"" +"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/attach.php:8 -msgid "Item not available." -msgstr "Oggetto non disponibile." +#: mod/crepair.php:143 +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/attach.php:20 -msgid "Item was not found." -msgstr "Oggetto non trovato." +#: mod/crepair.php:149 +msgid "Return to contact editor" +msgstr "Ritorna alla modifica contatto" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "No mirroring" +msgstr "Non duplicare" + +#: mod/crepair.php:160 +msgid "Mirror as forwarded posting" +msgstr "Duplica come messaggi ricondivisi" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "Mirror as my own posting" +msgstr "Duplica come miei messaggi" + +#: mod/crepair.php:169 +msgid "Refetch contact data" +msgstr "Ricarica dati contatto" + +#: 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:181 +msgid "Mirror postings from this contact" +msgstr "Ripeti i messaggi di questo contatto" + +#: mod/crepair.php:181 +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." + +#: view/theme/diabook/theme.php:123 include/nav.php:76 include/nav.php:156 +msgid "Your posts and conversations" +msgstr "I tuoi messaggi e le tue conversazioni" + +#: view/theme/diabook/theme.php:124 include/nav.php:77 +msgid "Your profile page" +msgstr "Pagina del tuo profilo" + +#: view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "I tuoi contatti" + +#: view/theme/diabook/theme.php:126 include/nav.php:78 +msgid "Your photos" +msgstr "Le tue foto" + +#: view/theme/diabook/theme.php:127 include/nav.php:80 +msgid "Your events" +msgstr "I tuoi eventi" + +#: view/theme/diabook/theme.php:128 include/nav.php:81 +msgid "Personal notes" +msgstr "Note personali" + +#: view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Le tue foto personali" + +#: view/theme/diabook/theme.php:130 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:624 view/theme/diabook/config.php:158 +msgid "Community Pages" +msgstr "Pagine Comunitarie" + +#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626 +#: view/theme/diabook/config.php:160 +msgid "Community Profiles" +msgstr "Profili Comunità" + +#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630 +#: view/theme/diabook/config.php:164 +msgid "Last users" +msgstr "Ultimi utenti" + +#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632 +#: view/theme/diabook/config.php:166 +msgid "Last likes" +msgstr "Ultimi \"mi piace\"" + +#: view/theme/diabook/theme.php:463 include/text.php:2032 +#: include/conversation.php:118 include/conversation.php:245 +msgid "event" +msgstr "l'evento" + +#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631 +#: view/theme/diabook/config.php:165 +msgid "Last photos" +msgstr "Ultime foto" + +#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629 +#: view/theme/diabook/config.php:163 +msgid "Find Friends" +msgstr "Trova Amici" + +#: view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "Elenco Locale" + +#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36 +msgid "Similar Interests" +msgstr "Interessi simili" + +#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38 +msgid "Invite Friends" +msgstr "Invita amici" + +#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625 +#: view/theme/diabook/config.php:159 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Livello di zoom per Earth Layers" + +#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156 +msgid "Set longitude (X) for Earth Layers" +msgstr "Longitudine (X) per Earth Layers" + +#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Latitudine (Y) per Earth Layers" + +#: view/theme/diabook/theme.php:599 view/theme/diabook/theme.php:627 +#: view/theme/diabook/config.php:161 +msgid "Help or @NewHere ?" +msgstr "Serve aiuto? Sei nuovo?" + +#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628 +#: view/theme/diabook/config.php:162 +msgid "Connect Services" +msgstr "Servizi di conessione" + +#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 +#: include/acl_selectors.php:337 +msgid "don't show" +msgstr "non mostrare" + +#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 +#: include/acl_selectors.php:336 +msgid "show" +msgstr "mostra" + +#: view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Mostra/Nascondi riquadri nella colonna destra" + +#: view/theme/diabook/config.php:151 view/theme/dispy/config.php:73 +#: view/theme/cleanzero/config.php:84 +msgid "Set font-size for posts and comments" +msgstr "Dimensione del carattere di messaggi e commenti" + +#: view/theme/diabook/config.php:152 view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Altezza della linea di testo di messaggi e commenti" + +#: view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Imposta la dimensione della colonna centrale" + +#: view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Imposta lo schema dei colori" + +#: view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Livello di zoom per Earth Layer" + +#: view/theme/vier/config.php:59 +msgid "Set style" +msgstr "Imposta stile" + +#: view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Imposta schema colori" + +#: view/theme/duepuntozero/config.php:44 include/text.php:1768 +#: include/user.php:255 +msgid "default" +msgstr "default" + +#: view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "greenzero" + +#: view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "purplezero" + +#: view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "easterbunny" + +#: view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "darkzero" + +#: view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "slackr" + +#: view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "Varianti" + +#: view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Allineamento" + +#: view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Sinistra" + +#: view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Centrato" + +#: view/theme/quattro/config.php:68 view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "Schema colori" + +#: view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Dimensione caratteri post" + +#: view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Dimensione caratteri nelle aree di testo" + +#: view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)" + +#: view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Imposta la larghezza del tema" + +#: view/smarty3/compiled/de93dd804a3e4e0c280f6a6ccb3ab9b0eaebd65d.file.blob.tpl.php:106 +msgid "Click here to download" +msgstr "" + +#: view/smarty3/compiled/e3e71db17e5b19827a9ae25070c4171ecb4fad17.file.project.tpl.php:149 +#: view/smarty3/compiled/681c121d981f553bdaa9e163d8a08e0bb4bd88ec.file.tree.tpl.php:121 +msgid "Create new pull request" +msgstr "" + +#: view/smarty3/compiled/919a59d5a78d842406e0afa69e5825d6feb5dc06.file.admin_plugins.tpl.php:42 +msgid "Reload active plugins" +msgstr "" + +#: view/smarty3/compiled/1708ab6fbb592af5399438bf991f7b474286b1b1.file.contact_drop_confirm.tpl.php:22 +msgid "Drop contact" +msgstr "" + +#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:32 +msgid "Public projects on this node" +msgstr "" + +#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:79 +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:68 +#, php-format +msgid "" +"Do you want to delete the project '%s'?\\n\\nThis operation cannot be " +"undone." +msgstr "" + +#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:56 +msgid "Visibility" +msgstr "" + +#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:72 +#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:69 +msgid "Create" +msgstr "" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:107 +msgid "No pull requests to show" +msgstr "" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:123 +msgid "opened by" +msgstr "" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:128 +msgid "closed" +msgstr "" + +#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:133 +msgid "merged" +msgstr "" + +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:31 +msgid "Projects" +msgstr "" + +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:32 +msgid "add new" +msgstr "" + +#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:51 +msgid "delete" +msgstr "" + +#: view/smarty3/compiled/4bbe2f5d3d1015c250383e229b603c26c960f47c.file.commits.tpl.php:80 +#: view/smarty3/compiled/1cdeb5a00fc3621815c983a6f754af6d16ff85c9.file.commit.tpl.php:80 +#: view/smarty3/compiled/0427bde50f01fd26112193bc4daba7b58c19ca11.file.aside.tpl.php:51 +msgid "Clone this project:" +msgstr "" + +#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:38 +msgid "New pull request" +msgstr "" + +#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:63 +msgid "Can't show you the diff at the moment. Sorry" +msgstr "" #: boot.php:763 msgid "Delete this item?" @@ -5776,144 +6182,6 @@ msgstr "Politiche di privacy del sito" msgid "privacy policy" msgstr "politiche di privacy" -#: object/Item.php:95 -msgid "This entry was edited" -msgstr "Questa voce è stata modificata" - -#: object/Item.php:209 -msgid "ignore thread" -msgstr "ignora la discussione" - -#: object/Item.php:210 -msgid "unignore thread" -msgstr "non ignorare la discussione" - -#: object/Item.php:211 -msgid "toggle ignore status" -msgstr "inverti stato \"Ignora\"" - -#: object/Item.php:214 -msgid "ignored" -msgstr "ignorato" - -#: object/Item.php:318 include/conversation.php:665 -msgid "Categories:" -msgstr "Categorie:" - -#: object/Item.php:319 include/conversation.php:666 -msgid "Filed under:" -msgstr "Archiviato in:" - -#: object/Item.php:331 -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:152 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." - -#: include/dbstructure.php:210 -msgid "Errors encountered performing database changes." -msgstr "Riscontrati errori applicando le modifiche al database." - -#: include/auth.php:38 -msgid "Logged out." -msgstr "Uscita effettuata." - -#: include/auth.php:128 include/user.php: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:128 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" - -#: include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Inserisci posizione o indirizzo web" - -#: include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Esempio: bob@example.com, http://example.com/barbara" - -#: include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" - -#: include/contact_widgets.php:30 -msgid "Find People" -msgstr "Trova persone" - -#: include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Inserisci un nome o un interesse" - -#: include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Connetti/segui" - -#: include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Esempi: Mario Rossi, Pesca" - -#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 -msgid "Similar Interests" -msgstr "Interessi simili" - -#: include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Profilo causale" - -#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 -msgid "Invite Friends" -msgstr "Invita amici" - -#: include/contact_widgets.php:71 -msgid "Networks" -msgstr "Reti" - -#: include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Tutte le Reti" - -#: include/contact_widgets.php:104 include/features.php:60 -msgid "Saved Folders" -msgstr "Cartelle Salvate" - -#: include/contact_widgets.php:107 include/contact_widgets.php:139 -msgid "Everything" -msgstr "Tutto" - -#: include/contact_widgets.php:136 -msgid "Categories" -msgstr "Categorie" - #: include/features.php:23 msgid "General Features" msgstr "Funzionalità generali" @@ -6051,6 +6319,10 @@ msgstr "Cateorie post" msgid "Add categories to your posts" msgstr "Aggiungi categorie ai tuoi post" +#: include/features.php:60 include/contact_widgets.php:104 +msgid "Saved Folders" +msgstr "Cartelle Salvate" + #: include/features.php:60 msgid "Ability to file posts under folders" msgstr "Permette di archiviare i post in cartelle" @@ -6079,517 +6351,35 @@ msgstr "Silenzia le notifiche di nuovi post" msgid "Ability to mute notifications for a thread" msgstr "Permette di silenziare le notifiche di nuovi post in una discussione" -#: include/follow.php:75 -msgid "Connect URL missing." -msgstr "URL di connessione mancante." +#: include/auth.php:38 +msgid "Logged out." +msgstr "Uscita effettuata." -#: include/follow.php:102 +#: include/auth.php:128 include/user.php:75 msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Questo sito non è configurato per permettere la comunicazione con altri network." +"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/follow.php:103 include/follow.php:123 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." +#: include/auth.php:128 include/user.php:75 +msgid "The error message was:" +msgstr "Il messaggio riportato era:" -#: include/follow.php:121 -msgid "The profile address specified does not provide adequate information." -msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." +#: include/event.php:22 include/bb2diaspora.php:154 +msgid "Starts:" +msgstr "Inizia:" -#: include/follow.php:125 -msgid "An author or name was not found." -msgstr "Non è stato trovato un nome o un autore" - -#: include/follow.php:127 -msgid "No browser URL could be matched to this address." -msgstr "Nessun URL puo' essere associato a questo indirizzo." - -#: include/follow.php:129 -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:130 -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:136 -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:146 -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:207 -msgid "Default privacy group for new contacts" -msgstr "Gruppo predefinito per i nuovi contatti" - -#: include/group.php:226 -msgid "Everybody" -msgstr "Tutti" - -#: include/group.php:249 -msgid "edit" -msgstr "modifica" - -#: include/group.php:271 -msgid "Edit group" -msgstr "Modifica gruppo" - -#: include/group.php:272 -msgid "Create a new group" -msgstr "Crea un nuovo gruppo" - -#: include/group.php:275 -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:256 -msgid "never" -msgstr "mai" - -#: include/datetime.php:262 -msgid "less than a second ago" -msgstr "meno di un secondo fa" - -#: include/datetime.php:272 -msgid "year" -msgstr "anno" - -#: include/datetime.php:272 -msgid "years" -msgstr "anni" - -#: include/datetime.php:273 -msgid "month" -msgstr "mese" - -#: include/datetime.php:273 -msgid "months" -msgstr "mesi" - -#: include/datetime.php:274 -msgid "week" -msgstr "settimana" - -#: include/datetime.php:274 -msgid "weeks" -msgstr "settimane" - -#: include/datetime.php:275 -msgid "day" -msgstr "giorno" - -#: include/datetime.php:275 -msgid "days" -msgstr "giorni" - -#: include/datetime.php:276 -msgid "hour" -msgstr "ora" - -#: include/datetime.php:276 -msgid "hours" -msgstr "ore" - -#: include/datetime.php:277 -msgid "minute" -msgstr "minuto" - -#: include/datetime.php:277 -msgid "minutes" -msgstr "minuti" - -#: include/datetime.php:278 -msgid "second" -msgstr "secondo" - -#: include/datetime.php:278 -msgid "seconds" -msgstr "secondi" - -#: include/datetime.php:287 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" - -#: include/datetime.php:459 include/items.php:2432 -#, php-format -msgid "%s's birthday" -msgstr "Compleanno di %s" - -#: include/datetime.php:460 include/items.php:2433 -#, php-format -msgid "Happy Birthday %s" -msgstr "Buon compleanno %s" - -#: include/identity.php:38 -msgid "Requested account is not available." -msgstr "L'account richiesto non è disponibile." - -#: include/identity.php:121 include/identity.php:255 include/identity.php:607 -msgid "Edit profile" -msgstr "Modifica il profilo" - -#: include/identity.php:220 -msgid "Message" -msgstr "Messaggio" - -#: include/identity.php:226 include/nav.php:184 -msgid "Profiles" -msgstr "Profili" - -#: include/identity.php:226 -msgid "Manage/edit profiles" -msgstr "Gestisci/modifica i profili" - -#: include/identity.php:341 -msgid "Network:" -msgstr "Rete:" - -#: include/identity.php:373 include/identity.php:459 -msgid "g A l F d" -msgstr "g A l d F" - -#: 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 "[oggi]" - -#: include/identity.php:431 -msgid "Birthday Reminders" -msgstr "Promemoria compleanni" - -#: include/identity.php:432 -msgid "Birthdays this week:" -msgstr "Compleanni questa settimana:" - -#: include/identity.php:493 -msgid "[No description]" -msgstr "[Nessuna descrizione]" - -#: include/identity.php:517 -msgid "Event Reminders" -msgstr "Promemoria" - -#: include/identity.php:518 -msgid "Events this week:" -msgstr "Eventi di questa settimana:" - -#: 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 "Compleanno:" - -#: include/identity.php:557 -msgid "Age:" -msgstr "Età:" - -#: include/identity.php:566 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" - -#: include/identity.php:579 -msgid "Religion:" -msgstr "Religione:" - -#: include/identity.php:583 -msgid "Hobbies/Interests:" -msgstr "Hobby/Interessi:" - -#: include/identity.php:590 -msgid "Contact information and Social Networks:" -msgstr "Informazioni su contatti e social network:" - -#: include/identity.php:592 -msgid "Musical interests:" -msgstr "Interessi musicali:" - -#: include/identity.php:594 -msgid "Books, literature:" -msgstr "Libri, letteratura:" - -#: include/identity.php:596 -msgid "Television:" -msgstr "Televisione:" - -#: include/identity.php:598 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/danza/cultura/intrattenimento:" - -#: include/identity.php:600 -msgid "Love/Romance:" -msgstr "Amore:" - -#: include/identity.php:602 -msgid "Work/employment:" -msgstr "Lavoro:" - -#: include/identity.php:604 -msgid "School/education:" -msgstr "Scuola:" - -#: include/identity.php:632 include/nav.php:76 -msgid "Status" -msgstr "Stato" - -#: include/identity.php:635 -msgid "Status Messages and Posts" -msgstr "Messaggi di stato e post" - -#: include/identity.php:643 -msgid "Profile Details" -msgstr "Dettagli del profilo" - -#: include/identity.php:656 include/identity.php:659 include/nav.php:79 -msgid "Videos" -msgstr "Video" - -#: include/identity.php:670 -msgid "Events and Calendar" -msgstr "Eventi e calendario" - -#: include/identity.php:678 -msgid "Only You Can See This" -msgstr "Solo tu puoi vedere questo" - -#: include/acl_selectors.php:324 -msgid "Post to Email" -msgstr "Invia a email" - -#: include/acl_selectors.php:329 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Connettore disabilitato, dato che \"%s\" è abilitato." - -#: include/acl_selectors.php:335 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: include/acl_selectors.php:336 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 -msgid "show" -msgstr "mostra" - -#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 -msgid "don't show" -msgstr "non mostrare" +#: include/event.php:32 include/bb2diaspora.php:162 +msgid "Finishes:" +msgstr "Finisce:" #: 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:232 include/conversation.php:881 -msgid "Poke" -msgstr "Stuzzica" - -#: include/Contact.php:233 include/conversation.php:875 -msgid "View Status" -msgstr "Visualizza stato" - -#: include/Contact.php:234 include/conversation.php:876 -msgid "View Profile" -msgstr "Visualizza profilo" - -#: include/Contact.php:235 include/conversation.php:877 -msgid "View Photos" -msgstr "Visualizza foto" - -#: include/Contact.php:236 include/Contact.php:259 -#: include/conversation.php:878 -msgid "Network Posts" -msgstr "Post della Rete" - -#: include/Contact.php:237 include/Contact.php:259 -#: include/conversation.php:879 -msgid "Edit Contact" -msgstr "Modifica contatti" - -#: include/Contact.php:238 -msgid "Drop Contact" -msgstr "Rimuovi contatto" - -#: include/Contact.php:239 include/Contact.php:259 -#: include/conversation.php:880 -msgid "Send PM" -msgstr "Invia messaggio privato" - -#: include/security.php:22 -msgid "Welcome " -msgstr "Ciao" - -#: include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Carica una foto per il profilo." - -#: include/security.php:26 -msgid "Welcome back " -msgstr "Ciao " - -#: include/security.php: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:118 include/conversation.php:245 -#: include/text.php:2032 view/theme/diabook/theme.php:463 -msgid "event" -msgstr "l'evento" - -#: include/conversation.php:206 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha stuzzicato %2$s" - -#: include/conversation.php:290 -msgid "post/item" -msgstr "post/elemento" - -#: include/conversation.php:291 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito" - -#: include/conversation.php:771 -msgid "remove" -msgstr "rimuovi" - -#: include/conversation.php:775 -msgid "Delete Selected Items" -msgstr "Cancella elementi selezionati" - -#: include/conversation.php:874 -msgid "Follow Thread" -msgstr "Segui la discussione" - -#: include/conversation.php:943 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." - -#: include/conversation.php:943 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." - -#: include/conversation.php:948 -#, php-format -msgid "%2$d people like this" -msgstr "Piace a %2$d persone." - -#: include/conversation.php:951 -#, php-format -msgid "%2$d people don't like this" -msgstr "Non piace a %2$d persone." - -#: include/conversation.php:965 -msgid "and" -msgstr "e" - -#: include/conversation.php:971 -#, php-format -msgid ", and %d other people" -msgstr "e altre %d persone" - -#: include/conversation.php:973 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." - -#: include/conversation.php:973 -#, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." - -#: include/conversation.php:1000 include/conversation.php:1018 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: include/conversation.php:1002 include/conversation.php:1020 -msgid "Please enter a video link/URL:" -msgstr "Inserisci un collegamento video / URL:" - -#: include/conversation.php:1003 include/conversation.php:1021 -msgid "Please enter an audio link/URL:" -msgstr "Inserisci un collegamento audio / URL:" - -#: include/conversation.php:1004 include/conversation.php:1022 -msgid "Tag term:" -msgstr "Tag:" - -#: include/conversation.php:1006 include/conversation.php:1024 -msgid "Where are you right now?" -msgstr "Dove sei ora?" - -#: include/conversation.php:1007 -msgid "Delete item(s)?" -msgstr "Cancellare questo elemento/i?" - -#: include/conversation.php:1076 -msgid "permissions" -msgstr "permessi" - -#: include/conversation.php:1099 -msgid "Post to Groups" -msgstr "Invia ai Gruppi" - -#: include/conversation.php:1100 -msgid "Post to Contacts" -msgstr "Invia ai Contatti" - -#: include/conversation.php:1101 -msgid "Private post" -msgstr "Post privato" - -#: include/network.php:959 -msgid "view full size" -msgstr "vedi a schermo intero" +#: include/Scrape.php:603 +msgid " on Last.fm" +msgstr "su Last.fm" #: include/text.php:299 msgid "newer" @@ -6866,11 +6656,6 @@ msgstr "Vedi in una pagina separata" msgid "view on separate page" msgstr "vedi in una pagina separata" -#: include/text.php:1768 include/user.php:255 -#: view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "default" - #: include/text.php:1780 msgid "Select an alternate language" msgstr "Seleziona una diversa lingua" @@ -6887,303 +6672,6 @@ msgstr "messaggio" msgid "Item filed" msgstr "Messaggio salvato" -#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 -msgid "Image/photo" -msgstr "Immagine/foto" - -#: 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 ha scritto il seguente messaggio" - -#: include/bbcode.php:1076 include/bbcode.php:1096 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" - -#: include/bbcode.php:1121 include/bbcode.php:1122 -msgid "Encrypted content" -msgstr "Contenuto criptato" - -#: include/notifier.php:830 include/delivery.php:456 -msgid "(no subject)" -msgstr "(nessun oggetto)" - -#: include/notifier.php:840 include/delivery.php:467 include/enotify.php:33 -msgid "noreply" -msgstr "nessuna risposta" - -#: include/dba_pdo.php:72 include/dba.php:56 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Sconosciuto | non categorizzato" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Blocca immediatamente" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Shady, spammer, self-marketer" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Lo conosco, ma non ho un'opinione particolare" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "E' ok, probabilmente innocuo" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Rispettabile, ha la mia fiducia" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Settimanalmente" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensilmente" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "Ostatus" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS / Atom" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Connettore Diaspora" - -#: include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - -#: include/contact_selectors.php:103 -msgid "Redmatrix" -msgstr "Redmatrix" - -#: include/Scrape.php:603 -msgid " on Last.fm" -msgstr "su Last.fm" - -#: include/bb2diaspora.php:154 include/event.php:22 -msgid "Starts:" -msgstr "Inizia:" - -#: include/bb2diaspora.php:162 include/event.php:32 -msgid "Finishes:" -msgstr "Finisce:" - -#: include/plugin.php:458 include/plugin.php:460 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." - -#: include/plugin.php:466 -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:471 -msgid "This action is not available under your subscription plan." -msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." - -#: include/nav.php:73 -msgid "End this session" -msgstr "Finisci questa sessione" - -#: include/nav.php:76 include/nav.php:156 view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "I tuoi messaggi e le tue conversazioni" - -#: include/nav.php:77 view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "Pagina del tuo profilo" - -#: include/nav.php:78 view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "Le tue foto" - -#: include/nav.php:79 -msgid "Your videos" -msgstr "I tuoi video" - -#: include/nav.php:80 view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "I tuoi eventi" - -#: include/nav.php:81 view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "Note personali" - -#: include/nav.php:81 -msgid "Your personal notes" -msgstr "Le tue note personali" - -#: include/nav.php:92 -msgid "Sign in" -msgstr "Entra" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "Home Page" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "Crea un account" - -#: include/nav.php:114 -msgid "Help and documentation" -msgstr "Guida e documentazione" - -#: include/nav.php:117 -msgid "Apps" -msgstr "Applicazioni" - -#: include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Applicazioni, utilità e giochi aggiuntivi" - -#: include/nav.php:119 -msgid "Search site content" -msgstr "Cerca nel contenuto del sito" - -#: include/nav.php:137 -msgid "Conversations on this site" -msgstr "Conversazioni su questo sito" - -#: include/nav.php:139 -msgid "Conversations on the network" -msgstr "Conversazioni nella rete" - -#: include/nav.php:141 -msgid "Directory" -msgstr "Elenco" - -#: include/nav.php:141 -msgid "People directory" -msgstr "Elenco delle persone" - -#: include/nav.php:143 -msgid "Information" -msgstr "Informazioni" - -#: include/nav.php:143 -msgid "Information about this friendica instance" -msgstr "Informazioni su questo server friendica" - -#: include/nav.php:153 -msgid "Conversations from your friends" -msgstr "Conversazioni dai tuoi amici" - -#: include/nav.php:154 -msgid "Network Reset" -msgstr "Reset pagina Rete" - -#: include/nav.php:154 -msgid "Load Network page with no filters" -msgstr "Carica la pagina Rete senza nessun filtro" - -#: include/nav.php:161 -msgid "Friend Requests" -msgstr "Richieste di amicizia" - -#: include/nav.php:165 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" - -#: include/nav.php:166 -msgid "Mark all system notifications seen" -msgstr "Segna tutte le notifiche come viste" - -#: include/nav.php:170 -msgid "Private mail" -msgstr "Posta privata" - -#: include/nav.php:171 -msgid "Inbox" -msgstr "In arrivo" - -#: include/nav.php:172 -msgid "Outbox" -msgstr "Inviati" - -#: include/nav.php:176 -msgid "Manage" -msgstr "Gestisci" - -#: include/nav.php:176 -msgid "Manage other pages" -msgstr "Gestisci altre pagine" - -#: include/nav.php:181 -msgid "Account settings" -msgstr "Parametri account" - -#: include/nav.php:184 -msgid "Manage/Edit Profiles" -msgstr "Gestisci/Modifica i profili" - -#: include/nav.php:186 -msgid "Manage/edit friends and contacts" -msgstr "Gestisci/modifica amici e contatti" - -#: include/nav.php:193 -msgid "Site setup and configuration" -msgstr "Configurazione del sito" - -#: include/nav.php:197 -msgid "Navigation" -msgstr "Navigazione" - -#: include/nav.php:197 -msgid "Site map" -msgstr "Mappa del sito" - #: include/api.php:321 include/api.php:332 include/api.php:441 #: include/api.php:1141 include/api.php:1143 msgid "User not found." @@ -7224,131 +6712,259 @@ msgstr "Azione non valida." msgid "DB error" msgstr "Errore database" -#: 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:146 include/user.php:244 -msgid "Nickname is already registered. Please choose another." -msgstr "Nome utente già registrato. Scegline un altro." - -#: include/user.php:156 -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:172 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." - -#: include/user.php:230 -msgid "An error occurred during registration. Please try again." -msgstr "C'è stato un errore durante la registrazione. Prova ancora." - -#: include/user.php:265 -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:297 include/user.php:301 include/profile_selectors.php:42 -msgid "Friends" -msgstr "Amici" - -#: include/user.php:385 +#: include/dba.php:56 include/dba_pdo.php:72 #, 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." +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" -#: include/user.php:389 +#: include/items.php:2445 include/datetime.php:459 #, 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" +msgid "%s's birthday" +msgstr "Compleanno di %s" -#: include/diaspora.php:717 -msgid "Sharing notification from Diaspora network" -msgstr "Notifica di condivisione dal network Diaspora*" +#: include/items.php:2446 include/datetime.php:460 +#, php-format +msgid "Happy Birthday %s" +msgstr "Buon compleanno %s" -#: include/diaspora.php:2560 -msgid "Attachments:" -msgstr "Allegati:" - -#: include/items.php:4853 +#: include/items.php:4866 msgid "Do you really want to delete this item?" msgstr "Vuoi veramente cancellare questo elemento?" -#: include/items.php:5128 +#: include/items.php:5141 msgid "Archives" msgstr "Archivi" +#: include/delivery.php:456 include/notifier.php:834 +msgid "(no subject)" +msgstr "(nessun oggetto)" + +#: include/delivery.php:467 include/notifier.php:844 include/enotify.php:33 +msgid "noreply" +msgstr "nessuna risposta" + +#: include/diaspora.php:716 +msgid "Sharing notification from Diaspora network" +msgstr "Notifica di condivisione dal network Diaspora*" + +#: include/diaspora.php:2567 +msgid "Attachments:" +msgstr "Allegati:" + +#: include/identity.php:38 +msgid "Requested account is not available." +msgstr "L'account richiesto non è disponibile." + +#: include/identity.php:121 include/identity.php:255 include/identity.php:608 +msgid "Edit profile" +msgstr "Modifica il profilo" + +#: include/identity.php:220 +msgid "Message" +msgstr "Messaggio" + +#: include/identity.php:226 include/nav.php:184 +msgid "Profiles" +msgstr "Profili" + +#: include/identity.php:226 +msgid "Manage/edit profiles" +msgstr "Gestisci/modifica i profili" + +#: include/identity.php:342 +msgid "Network:" +msgstr "Rete:" + +#: include/identity.php:374 include/identity.php:460 +msgid "g A l F d" +msgstr "g A l d F" + +#: include/identity.php:375 include/identity.php:461 +msgid "F d" +msgstr "d F" + +#: include/identity.php:420 include/identity.php:507 +msgid "[today]" +msgstr "[oggi]" + +#: include/identity.php:432 +msgid "Birthday Reminders" +msgstr "Promemoria compleanni" + +#: include/identity.php:433 +msgid "Birthdays this week:" +msgstr "Compleanni questa settimana:" + +#: include/identity.php:494 +msgid "[No description]" +msgstr "[Nessuna descrizione]" + +#: include/identity.php:518 +msgid "Event Reminders" +msgstr "Promemoria" + +#: include/identity.php:519 +msgid "Events this week:" +msgstr "Eventi di questa settimana:" + +#: include/identity.php:546 +msgid "j F, Y" +msgstr "j F Y" + +#: include/identity.php:547 +msgid "j F" +msgstr "j F" + +#: include/identity.php:554 +msgid "Birthday:" +msgstr "Compleanno:" + +#: include/identity.php:558 +msgid "Age:" +msgstr "Età:" + +#: include/identity.php:567 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" + +#: include/identity.php:580 +msgid "Religion:" +msgstr "Religione:" + +#: include/identity.php:584 +msgid "Hobbies/Interests:" +msgstr "Hobby/Interessi:" + +#: include/identity.php:591 +msgid "Contact information and Social Networks:" +msgstr "Informazioni su contatti e social network:" + +#: include/identity.php:593 +msgid "Musical interests:" +msgstr "Interessi musicali:" + +#: include/identity.php:595 +msgid "Books, literature:" +msgstr "Libri, letteratura:" + +#: include/identity.php:597 +msgid "Television:" +msgstr "Televisione:" + +#: include/identity.php:599 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/danza/cultura/intrattenimento:" + +#: include/identity.php:601 +msgid "Love/Romance:" +msgstr "Amore:" + +#: include/identity.php:603 +msgid "Work/employment:" +msgstr "Lavoro:" + +#: include/identity.php:605 +msgid "School/education:" +msgstr "Scuola:" + +#: include/identity.php:633 include/nav.php:76 +msgid "Status" +msgstr "Stato" + +#: include/identity.php:636 +msgid "Status Messages and Posts" +msgstr "Messaggi di stato e post" + +#: include/identity.php:644 +msgid "Profile Details" +msgstr "Dettagli del profilo" + +#: include/identity.php:657 include/identity.php:660 include/nav.php:79 +msgid "Videos" +msgstr "Video" + +#: include/identity.php:671 +msgid "Events and Calendar" +msgstr "Eventi e calendario" + +#: include/identity.php:679 +msgid "Only You Can See This" +msgstr "Solo tu puoi vedere questo" + +#: include/follow.php:75 +msgid "Connect URL missing." +msgstr "URL di connessione mancante." + +#: include/follow.php:102 +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:103 include/follow.php:123 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." + +#: include/follow.php:121 +msgid "The profile address specified does not provide adequate information." +msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." + +#: include/follow.php:125 +msgid "An author or name was not found." +msgstr "Non è stato trovato un nome o un autore" + +#: include/follow.php:127 +msgid "No browser URL could be matched to this address." +msgstr "Nessun URL puo' essere associato a questo indirizzo." + +#: include/follow.php:129 +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:130 +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:136 +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:146 +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:253 +msgid "Unable to retrieve contact information." +msgstr "Impossibile recuperare informazioni sul contatto." + +#: include/follow.php:306 +msgid "following" +msgstr "segue" + +#: 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/profile_selectors.php:6 msgid "Male" msgstr "Maschio" @@ -7493,6 +7109,10 @@ msgstr "Infedele" msgid "Sex Addict" msgstr "Sesso-dipendente" +#: include/profile_selectors.php:42 include/user.php:297 include/user.php:301 +msgid "Friends" +msgstr "Amici" + #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Amici con benefici" @@ -7577,6 +7197,461 @@ msgstr "Non interessa" msgid "Ask me" msgstr "Chiedimelo" +#: include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Errore decodificando il file account" + +#: include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?" + +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Errore! Non posso controllare il nickname" + +#: include/uimport.php:120 include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "L'utente '%s' esiste già su questo server!" + +#: include/uimport.php:153 +msgid "User creation error" +msgstr "Errore creando l'utente" + +#: include/uimport.php:173 +msgid "User profile creation error" +msgstr "Errore creando il profile dell'utente" + +#: include/uimport.php:222 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d contatto non importato" +msgstr[1] "%d contatti non importati" + +#: include/uimport.php:292 +msgid "Done. You can now login with your username and password" +msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password" + +#: include/plugin.php:458 include/plugin.php:460 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." + +#: include/plugin.php:466 +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:471 +msgid "This action is not available under your subscription plan." +msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." + +#: include/conversation.php:206 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha stuzzicato %2$s" + +#: include/conversation.php:290 +msgid "post/item" +msgstr "post/elemento" + +#: include/conversation.php:291 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito" + +#: include/conversation.php:771 +msgid "remove" +msgstr "rimuovi" + +#: include/conversation.php:775 +msgid "Delete Selected Items" +msgstr "Cancella elementi selezionati" + +#: include/conversation.php:874 +msgid "Follow Thread" +msgstr "Segui la discussione" + +#: include/conversation.php:875 include/Contact.php:233 +msgid "View Status" +msgstr "Visualizza stato" + +#: include/conversation.php:876 include/Contact.php:234 +msgid "View Profile" +msgstr "Visualizza profilo" + +#: include/conversation.php:877 include/Contact.php:235 +msgid "View Photos" +msgstr "Visualizza foto" + +#: include/conversation.php:878 include/Contact.php:236 +#: include/Contact.php:259 +msgid "Network Posts" +msgstr "Post della Rete" + +#: include/conversation.php:879 include/Contact.php:237 +#: include/Contact.php:259 +msgid "Edit Contact" +msgstr "Modifica contatti" + +#: include/conversation.php:880 include/Contact.php:239 +#: include/Contact.php:259 +msgid "Send PM" +msgstr "Invia messaggio privato" + +#: include/conversation.php:881 include/Contact.php:232 +msgid "Poke" +msgstr "Stuzzica" + +#: include/conversation.php:943 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." + +#: include/conversation.php:943 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: include/conversation.php:948 +#, php-format +msgid "%2$d people like this" +msgstr "Piace a %2$d persone." + +#: include/conversation.php:951 +#, php-format +msgid "%2$d people don't like this" +msgstr "Non piace a %2$d persone." + +#: include/conversation.php:965 +msgid "and" +msgstr "e" + +#: include/conversation.php:971 +#, php-format +msgid ", and %d other people" +msgstr "e altre %d persone" + +#: include/conversation.php:973 +#, php-format +msgid "%s like this." +msgstr "Piace a %s." + +#: include/conversation.php:973 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." + +#: include/conversation.php:1000 include/conversation.php:1018 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: include/conversation.php:1002 include/conversation.php:1020 +msgid "Please enter a video link/URL:" +msgstr "Inserisci un collegamento video / URL:" + +#: include/conversation.php:1003 include/conversation.php:1021 +msgid "Please enter an audio link/URL:" +msgstr "Inserisci un collegamento audio / URL:" + +#: include/conversation.php:1004 include/conversation.php:1022 +msgid "Tag term:" +msgstr "Tag:" + +#: include/conversation.php:1006 include/conversation.php:1024 +msgid "Where are you right now?" +msgstr "Dove sei ora?" + +#: include/conversation.php:1007 +msgid "Delete item(s)?" +msgstr "Cancellare questo elemento/i?" + +#: include/conversation.php:1076 +msgid "permissions" +msgstr "permessi" + +#: include/conversation.php:1099 +msgid "Post to Groups" +msgstr "Invia ai Gruppi" + +#: include/conversation.php:1100 +msgid "Post to Contacts" +msgstr "Invia ai Contatti" + +#: include/conversation.php:1101 +msgid "Private post" +msgstr "Post privato" + +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Aggiungi nuovo contatto" + +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Inserisci posizione o indirizzo web" + +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Esempio: bob@example.com, http://example.com/barbara" + +#: include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invito disponibile" +msgstr[1] "%d inviti disponibili" + +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "Trova persone" + +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Inserisci un nome o un interesse" + +#: include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Connetti/segui" + +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Esempi: Mario Rossi, Pesca" + +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Profilo causale" + +#: include/contact_widgets.php:71 +msgid "Networks" +msgstr "Reti" + +#: include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Tutte le Reti" + +#: include/contact_widgets.php:107 include/contact_widgets.php:139 +msgid "Everything" +msgstr "Tutto" + +#: include/contact_widgets.php:136 +msgid "Categories" +msgstr "Categorie" + +#: include/nav.php:73 +msgid "End this session" +msgstr "Finisci questa sessione" + +#: include/nav.php:79 +msgid "Your videos" +msgstr "I tuoi video" + +#: include/nav.php:81 +msgid "Your personal notes" +msgstr "Le tue note personali" + +#: include/nav.php:92 +msgid "Sign in" +msgstr "Entra" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Home Page" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Crea un account" + +#: include/nav.php:114 +msgid "Help and documentation" +msgstr "Guida e documentazione" + +#: include/nav.php:117 +msgid "Apps" +msgstr "Applicazioni" + +#: include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Applicazioni, utilità e giochi aggiuntivi" + +#: include/nav.php:119 +msgid "Search site content" +msgstr "Cerca nel contenuto del sito" + +#: include/nav.php:137 +msgid "Conversations on this site" +msgstr "Conversazioni su questo sito" + +#: include/nav.php:139 +msgid "Conversations on the network" +msgstr "Conversazioni nella rete" + +#: include/nav.php:141 +msgid "Directory" +msgstr "Elenco" + +#: include/nav.php:141 +msgid "People directory" +msgstr "Elenco delle persone" + +#: include/nav.php:143 +msgid "Information" +msgstr "Informazioni" + +#: include/nav.php:143 +msgid "Information about this friendica instance" +msgstr "Informazioni su questo server friendica" + +#: include/nav.php:153 +msgid "Conversations from your friends" +msgstr "Conversazioni dai tuoi amici" + +#: include/nav.php:154 +msgid "Network Reset" +msgstr "Reset pagina Rete" + +#: include/nav.php:154 +msgid "Load Network page with no filters" +msgstr "Carica la pagina Rete senza nessun filtro" + +#: include/nav.php:161 +msgid "Friend Requests" +msgstr "Richieste di amicizia" + +#: include/nav.php:165 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" + +#: include/nav.php:166 +msgid "Mark all system notifications seen" +msgstr "Segna tutte le notifiche come viste" + +#: include/nav.php:170 +msgid "Private mail" +msgstr "Posta privata" + +#: include/nav.php:171 +msgid "Inbox" +msgstr "In arrivo" + +#: include/nav.php:172 +msgid "Outbox" +msgstr "Inviati" + +#: include/nav.php:176 +msgid "Manage" +msgstr "Gestisci" + +#: include/nav.php:176 +msgid "Manage other pages" +msgstr "Gestisci altre pagine" + +#: include/nav.php:181 +msgid "Account settings" +msgstr "Parametri account" + +#: include/nav.php:184 +msgid "Manage/Edit Profiles" +msgstr "Gestisci/Modifica i profili" + +#: include/nav.php:186 +msgid "Manage/edit friends and contacts" +msgstr "Gestisci/modifica amici e contatti" + +#: include/nav.php:193 +msgid "Site setup and configuration" +msgstr "Configurazione del sito" + +#: include/nav.php:197 +msgid "Navigation" +msgstr "Navigazione" + +#: include/nav.php:197 +msgid "Site map" +msgstr "Mappa del sito" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Sconosciuto | non categorizzato" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Blocca immediatamente" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Shady, spammer, self-marketer" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Lo conosco, ma non ho un'opinione particolare" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "E' ok, probabilmente innocuo" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Rispettabile, ha la mia fiducia" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Settimanalmente" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mensilmente" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "Ostatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS / Atom" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Connettore Diaspora" + +#: include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "Statusnet" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" + +#: include/contact_selectors.php:103 +msgid "Redmatrix" +msgstr "Redmatrix" + #: include/enotify.php:18 msgid "Friendica Notification" msgstr "Notifica Friendica" @@ -7860,6 +7935,148 @@ msgstr "Nome completo: %1$s\nIndirizzo del sito: %2$s\nNome utente: %3$s (%4$s)" msgid "Please visit %s to approve or reject the request." msgstr "Visita %s per approvare o rifiutare la richiesta." +#: 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:146 include/user.php:244 +msgid "Nickname is already registered. Please choose another." +msgstr "Nome utente già registrato. Scegline un altro." + +#: include/user.php:156 +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:172 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." + +#: include/user.php:230 +msgid "An error occurred during registration. Please try again." +msgstr "C'è stato un errore durante la registrazione. Prova ancora." + +#: include/user.php:265 +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: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 "\nGentile %1$s,\nGrazie per esserti registrato su %2$s. Il tuo account è stato creato." + +#: 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 "\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/acl_selectors.php:324 +msgid "Post to Email" +msgstr "Invia a email" + +#: include/acl_selectors.php:329 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Connettore disabilitato, dato che \"%s\" è abilitato." + +#: include/acl_selectors.php:335 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 +msgid "Image/photo" +msgstr "Immagine/foto" + +#: 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 ha scritto il seguente messaggio" + +#: include/bbcode.php:1076 include/bbcode.php:1096 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" + +#: include/bbcode.php:1121 include/bbcode.php:1122 +msgid "Encrypted content" +msgstr "Contenuto criptato" + #: include/oembed.php:220 msgid "Embedded content" msgstr "Contenuto incorporato" @@ -7868,204 +8085,147 @@ msgstr "Contenuto incorporato" msgid "Embedding disabled" msgstr "Embed disabilitato" -#: include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Errore decodificando il file account" +#: 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/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?" +#: include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Gruppo predefinito per i nuovi contatti" -#: include/uimport.php:116 include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Errore! Non posso controllare il nickname" +#: include/group.php:226 +msgid "Everybody" +msgstr "Tutti" -#: include/uimport.php:120 include/uimport.php:131 +#: include/group.php:249 +msgid "edit" +msgstr "modifica" + +#: include/group.php:271 +msgid "Edit group" +msgstr "Modifica gruppo" + +#: include/group.php:272 +msgid "Create a new group" +msgstr "Crea un nuovo gruppo" + +#: include/group.php:275 +msgid "Contacts not in any group" +msgstr "Contatti in nessun gruppo." + +#: include/Contact.php:119 +msgid "stopped following" +msgstr "tolto dai seguiti" + +#: include/Contact.php:238 +msgid "Drop Contact" +msgstr "Rimuovi contatto" + +#: 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:256 +msgid "never" +msgstr "mai" + +#: include/datetime.php:262 +msgid "less than a second ago" +msgstr "meno di un secondo fa" + +#: include/datetime.php:272 +msgid "year" +msgstr "anno" + +#: include/datetime.php:272 +msgid "years" +msgstr "anni" + +#: include/datetime.php:273 +msgid "month" +msgstr "mese" + +#: include/datetime.php:273 +msgid "months" +msgstr "mesi" + +#: include/datetime.php:274 +msgid "week" +msgstr "settimana" + +#: include/datetime.php:274 +msgid "weeks" +msgstr "settimane" + +#: include/datetime.php:275 +msgid "day" +msgstr "giorno" + +#: include/datetime.php:275 +msgid "days" +msgstr "giorni" + +#: include/datetime.php:276 +msgid "hour" +msgstr "ora" + +#: include/datetime.php:276 +msgid "hours" +msgstr "ore" + +#: include/datetime.php:277 +msgid "minute" +msgstr "minuto" + +#: include/datetime.php:277 +msgid "minutes" +msgstr "minuti" + +#: include/datetime.php:278 +msgid "second" +msgstr "secondo" + +#: include/datetime.php:278 +msgid "seconds" +msgstr "secondi" + +#: include/datetime.php:287 #, php-format -msgid "User '%s' already exists on this server!" -msgstr "L'utente '%s' esiste già su questo server!" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s fa" -#: include/uimport.php:153 -msgid "User creation error" -msgstr "Errore creando l'utente" +#: include/network.php:959 +msgid "view full size" +msgstr "vedi a schermo intero" -#: include/uimport.php:173 -msgid "User profile creation error" -msgstr "Errore creando il profile dell'utente" - -#: include/uimport.php:222 +#: include/dbstructure.php:26 #, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d contatto non importato" -msgstr[1] "%d contatti non importati" +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/uimport.php:292 -msgid "Done. You can now login with your username and password" -msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password" +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Il messaggio di errore è\n[pre]%s[/pre]" -#: index.php:441 -msgid "toggle mobile" -msgstr "commuta tema mobile" +#: include/dbstructure.php:152 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." -#: view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)" - -#: view/theme/cleanzero/config.php:84 view/theme/dispy/config.php:73 -#: view/theme/diabook/config.php:151 -msgid "Set font-size for posts and comments" -msgstr "Dimensione del carattere di messaggi e commenti" - -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Imposta la larghezza del tema" - -#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Schema colori" - -#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152 -msgid "Set line-height for posts and comments" -msgstr "Altezza della linea di testo di messaggi e commenti" - -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Imposta schema colori" - -#: view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Allineamento" - -#: view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Sinistra" - -#: view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Centrato" - -#: view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Dimensione caratteri post" - -#: view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Dimensione caratteri nelle aree di testo" - -#: view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Imposta la dimensione della colonna centrale" - -#: view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Imposta lo schema dei colori" - -#: view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Livello di zoom per Earth Layer" - -#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "Longitudine (X) per Earth Layers" - -#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Latitudine (Y) per Earth Layers" - -#: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130 -#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 -msgid "Community Pages" -msgstr "Pagine Comunitarie" - -#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 -#: view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "Earth Layers" - -#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 -#: view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "Profili Comunità" - -#: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 -#: view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "Serve aiuto? Sei nuovo?" - -#: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 -#: view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "Servizi di conessione" - -#: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 -#: view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "Trova Amici" - -#: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 -#: view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "Ultimi utenti" - -#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 -#: view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "Ultime foto" - -#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 -#: view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "Ultimi \"mi piace\"" - -#: view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "I tuoi contatti" - -#: view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Le tue foto personali" - -#: view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Elenco Locale" - -#: view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Livello di zoom per Earth Layers" - -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Mostra/Nascondi riquadri nella colonna destra" - -#: view/theme/vier/config.php:59 -msgid "Set style" -msgstr "Imposta stile" - -#: view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "greenzero" - -#: view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "purplezero" - -#: view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "easterbunny" - -#: view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "darkzero" - -#: view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "slackr" - -#: view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "Varianti" +#: include/dbstructure.php:210 +msgid "Errors encountered performing database changes." +msgstr "Riscontrati errori applicando le modifiche al database." diff --git a/view/it/strings.php b/view/it/strings.php index 3ccaba7f42..2e186c8b8f 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -5,281 +5,123 @@ function string_plural_select_it($n){ return ($n != 1);; }} ; -$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["%d contact in common"] = array( - 0 => "%d contatto in comune", - 1 => "%d contatti in comune", -); -$a->strings["View all contacts"] = "Vedi tutti i contatti"; -$a->strings["Unblock"] = "Sblocca"; -$a->strings["Block"] = "Blocca"; -$a->strings["Toggle Blocked status"] = "Inverti stato \"Blocca\""; -$a->strings["Unignore"] = "Non ignorare"; -$a->strings["Ignore"] = "Ignora"; -$a->strings["Toggle Ignored status"] = "Inverti stato \"Ignora\""; -$a->strings["Unarchive"] = "Dearchivia"; -$a->strings["Archive"] = "Archivia"; -$a->strings["Toggle Archive status"] = "Inverti stato \"Archiviato\""; -$a->strings["Repair"] = "Ripara"; -$a->strings["Advanced Contact Settings"] = "Impostazioni avanzate Contatto"; -$a->strings["Communications lost with this contact!"] = "Comunicazione con questo contatto persa!"; -$a->strings["Fetch further information for feeds"] = "Recupera maggiori infomazioni per i feed"; -$a->strings["Disabled"] = "Disabilitato"; -$a->strings["Fetch information"] = "Recupera informazioni"; -$a->strings["Fetch information and keywords"] = "Recupera informazioni e parole chiave"; -$a->strings["Contact Editor"] = "Editor dei Contatti"; -$a->strings["Submit"] = "Invia"; -$a->strings["Profile Visibility"] = "Visibilità del profilo"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."; -$a->strings["Contact Information / Notes"] = "Informazioni / Note sul contatto"; -$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["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["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["This entry was edited"] = "Questa voce è stata modificata"; +$a->strings["Private Message"] = "Messaggio privato"; +$a->strings["Edit"] = "Modifica"; +$a->strings["Select"] = "Seleziona"; $a->strings["Delete"] = "Rimuovi"; -$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["Profile"] = "Profilo"; -$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; -$a->strings["Visible To"] = "Visibile a"; -$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)"; -$a->strings["Item not found."] = "Elemento non trovato."; -$a->strings["Public access denied."] = "Accesso negato."; -$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato."; -$a->strings["Item has been removed."] = "L'oggetto è stato rimosso."; -$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica"; -$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."; -$a->strings["Getting Started"] = "Come Iniziare"; -$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."; -$a->strings["Settings"] = "Impostazioni"; -$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."; -$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."; -$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."; -$a->strings["Profile Keywords"] = "Parole chiave del profilo"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."; -$a->strings["Connecting"] = "Collegarsi"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Sestrings["Importing Emails"] = "Importare le Email"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"; -$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto"; -$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."; -$a->strings["Finding New People"] = "Trova nuove persone"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."; -$a->strings["Groups"] = "Gruppi"; -$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"; -$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."; -$a->strings["Getting Help"] = "Ottenere Aiuto"; -$a->strings["Go to the Help Section"] = "Vai alla sezione Guida"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."; -$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."; -$a->strings["Login failed."] = "Accesso fallito."; -$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; -$a->strings["Profile Photos"] = "Foto del profilo"; -$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; -$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; -$a->strings["Image exceeds size limit of %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["Save to Folder:"] = "Salva nella Cartella:"; -$a->strings["- select -"] = "- seleziona -"; -$a->strings["Save"] = "Salva"; -$a->strings["You already added this contact."] = "Hai già aggiunto questo contatto."; -$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["Submit Request"] = "Invia richiesta"; -$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["save to folder"] = "salva nella cartella"; +$a->strings["add star"] = "aggiungi a speciali"; +$a->strings["remove star"] = "rimuovi da speciali"; +$a->strings["toggle star status"] = "Inverti stato preferito"; +$a->strings["starred"] = "preferito"; +$a->strings["ignore thread"] = "ignora la discussione"; +$a->strings["unignore thread"] = "non ignorare la discussione"; +$a->strings["toggle ignore status"] = "inverti stato \"Ignora\""; +$a->strings["ignored"] = "ignorato"; +$a->strings["add tag"] = "aggiungi tag"; +$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)"; +$a->strings["like"] = "mi piace"; +$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)"; +$a->strings["dislike"] = "non mi piace"; +$a->strings["Share this"] = "Condividi questo"; +$a->strings["share"] = "condividi"; +$a->strings["Categories:"] = "Categorie:"; +$a->strings["Filed under:"] = "Archiviato in:"; +$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; +$a->strings["to"] = "a"; +$a->strings["via"] = "via"; +$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; +$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca"; +$a->strings["%s from %s"] = "%s da %s"; +$a->strings["Comment"] = "Commento"; +$a->strings["Please wait"] = "Attendi"; +$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["This is you"] = "Questo sei tu"; +$a->strings["Submit"] = "Invia"; +$a->strings["Bold"] = "Grassetto"; +$a->strings["Italic"] = "Corsivo"; +$a->strings["Underline"] = "Sottolineato"; +$a->strings["Quote"] = "Citazione"; +$a->strings["Code"] = "Codice"; +$a->strings["Image"] = "Immagine"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Preview"] = "Anteprima"; $a->strings["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["Not Found"] = "Non trovato"; +$a->strings["Page not found."] = "Pagina non trovata."; +$a->strings["Permission denied"] = "Permesso negato"; +$a->strings["Permission denied."] = "Permesso negato."; +$a->strings["toggle mobile"] = "commuta tema mobile"; +$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; $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["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; -$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico"; -$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio"; -$a->strings["{0} requested registration"] = "{0} chiede la registrazione"; -$a->strings["No contacts."] = "Nessun contatto."; -$a->strings["View Contacts"] = "Visualizza i contatti"; +$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; +$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."; +$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d parametro richiesto non è stato trovato all'indirizzo dato", + 1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato", +); +$a->strings["Introduction complete."] = "Presentazione completa."; +$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione."; +$a->strings["Profile unavailable."] = "Profilo non disponibile."; +$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi."; +$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore."; +$a->strings["Invalid locator"] = "Invalid locator"; +$a->strings["Invalid email address."] = "Indirizzo email non valido."; +$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita."; +$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata."; +$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui."; +$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici."; +$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; +$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso."; +$a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto."; +$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata."; +$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; +$a->strings["Confirm"] = "Conferma"; +$a->strings["Hide this contact"] = "Nascondi questo contatto"; +$a->strings["Welcome home %s."] = "Bentornato a casa %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s."; +$a->strings["[Name Withheld]"] = "[Nome Nascosto]"; +$a->strings["Public access denied."] = "Accesso negato."; +$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["No"] = "No"; +$a->strings["Yes"] = "Si"; +$a->strings["Add a personal note:"] = "Aggiungi una nota personale:"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; +$a->strings["Diaspora"] = "Diaspora"; +$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["Cancel"] = "Annulla"; +$a->strings["View Video"] = "Guarda Video"; +$a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile."; +$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato."; +$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti"; $a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; $a->strings["Discard"] = "Scarta"; +$a->strings["Ignore"] = "Ignora"; $a->strings["System"] = "Sistema"; $a->strings["Network"] = "Rete"; $a->strings["Personal"] = "Personale"; @@ -290,6 +132,7 @@ $a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate"; $a->strings["Notification type: "] = "Tipo di notifica: "; $a->strings["Friend Suggestion"] = "Amico suggerito"; $a->strings["suggested by %s"] = "sugerito da %s"; +$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri"; $a->strings["Post a new friend activity"] = "Invia una attività \"è ora amico con\""; $a->strings["if applicable"] = "se applicabile"; $a->strings["Approve"] = "Approva"; @@ -322,6 +165,13 @@ $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["photo"] = "foto"; +$a->strings["status"] = "stato"; +$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["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["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:"; @@ -334,72 +184,6 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb: "; $a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; $a->strings["Source input (Diaspora format): "] = "Sorgente (formato Diaspora):"; $a->strings["diaspora2bb: "] = "diaspora2bb: "; -$a->strings["Nothing new here"] = "Niente di nuovo qui"; -$a->strings["Clear notifications"] = "Pulisci le notifiche"; -$a->strings["New Message"] = "Nuovo messaggio"; -$a->strings["No recipient selected."] = "Nessun destinatario selezionato."; -$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto."; -$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato."; -$a->strings["Message collection failure."] = "Errore recuperando il messaggio."; -$a->strings["Message sent."] = "Messaggio inviato."; -$a->strings["Messages"] = "Messaggi"; -$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?"; -$a->strings["Message deleted."] = "Messaggio eliminato."; -$a->strings["Conversation removed."] = "Conversazione rimossa."; -$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; -$a->strings["Send Private Message"] = "Invia un messaggio privato"; -$a->strings["To:"] = "A:"; -$a->strings["Subject:"] = "Oggetto:"; -$a->strings["Your message:"] = "Il tuo messaggio:"; -$a->strings["Upload photo"] = "Carica foto"; -$a->strings["Insert web link"] = "Inserisci link"; -$a->strings["Please wait"] = "Attendi"; -$a->strings["No messages."] = "Nessun messaggio."; -$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s"; -$a->strings["You and %s"] = "Tu e %s"; -$a->strings["%s and You"] = "%s e Tu"; -$a->strings["Delete conversation"] = "Elimina la conversazione"; -$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; -$a->strings["%d message"] = array( - 0 => "%d messaggio", - 1 => "%d messaggi", -); -$a->strings["Message not available."] = "Messaggio non disponibile."; -$a->strings["Delete message"] = "Elimina il messaggio"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente."; -$a->strings["Send Reply"] = "Invia la risposta"; -$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; -$a->strings["Contact settings applied."] = "Contatto modificato."; -$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; -$a->strings["Repair Contact Settings"] = "Ripara il contatto"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."; -$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; -$a->strings["No mirroring"] = "Non duplicare"; -$a->strings["Mirror as forwarded posting"] = "Duplica come messaggi ricondivisi"; -$a->strings["Mirror as my own posting"] = "Duplica come miei messaggi"; -$a->strings["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["People Search - %s"] = "Cerca persone - %s"; -$a->strings["Connect"] = "Connetti"; -$a->strings["No matches"] = "Nessun risultato"; -$a->strings["Photos"] = "Foto"; -$a->strings["Files"] = "File"; -$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo"; $a->strings["Theme settings updated."] = "Impostazioni del tema aggiornate."; $a->strings["Site"] = "Sito"; $a->strings["Users"] = "Utenti"; @@ -414,6 +198,7 @@ $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["Item not found."] = "Elemento non trovato."; $a->strings["Administration"] = "Amministrazione"; $a->strings["ID"] = "ID"; $a->strings["Recipient Name"] = "Nome Destinatario"; @@ -434,19 +219,22 @@ $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."] = ""; $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["Never"] = "Mai"; $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["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 meso"; +$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"; @@ -512,8 +300,8 @@ $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 update URL"] = "URL aggiornamento Elenco Globale"; -$a->strings["URL to update 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["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."] = ""; $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"; @@ -562,6 +350,8 @@ $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["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"] = ""; +$a->strings["Number of days after which a server is requeried for his contacts."] = ""; $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"; @@ -632,9 +422,12 @@ $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["Name"] = "Nome"; $a->strings["Email"] = "Email"; $a->strings["No registrations."] = "Nessuna registrazione."; $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"; @@ -654,6 +447,7 @@ $a->strings["Plugin %s enabled."] = "Plugin %s abilitato."; $a->strings["Disable"] = "Disabilita"; $a->strings["Enable"] = "Abilita"; $a->strings["Toggle"] = "Inverti"; +$a->strings["Settings"] = "Impostazioni"; $a->strings["Author: "] = "Autore: "; $a->strings["Maintainer: "] = "Manutentore: "; $a->strings["No themes found."] = "Nessun tema trovato."; @@ -666,39 +460,83 @@ $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["Update now"] = "Aggiorna adesso"; $a->strings["Close"] = "Chiudi"; $a->strings["FTP Host"] = "Indirizzo FTP"; $a->strings["FTP Path"] = "Percorso FTP"; $a->strings["FTP User"] = "Utente FTP"; $a->strings["FTP Password"] = "Pasword FTP"; -$a->strings["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["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["No messages."] = "Nessun messaggio."; +$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s"; +$a->strings["You and %s"] = "Tu e %s"; +$a->strings["%s and You"] = "%s e Tu"; +$a->strings["Delete conversation"] = "Elimina la conversazione"; +$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; +$a->strings["%d message"] = array( + 0 => "%d messaggio", + 1 => "%d messaggi", ); -$a->strings["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 is empty"] = "Il gruppo è vuoto"; -$a->strings["Group: %s"] = "Gruppo: %s"; -$a->strings["Contact: %s"] = "Contatto: %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["Friends of %s"] = "Amici di %s"; -$a->strings["No friends to display."] = "Nessun amico da visualizzare."; +$a->strings["Message not available."] = "Messaggio non disponibile."; +$a->strings["Delete message"] = "Elimina il messaggio"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente."; +$a->strings["Send Reply"] = "Invia la risposta"; +$a->strings["Item not found"] = "Oggetto non trovato"; +$a->strings["Edit post"] = "Modifica messaggio"; +$a->strings["Save"] = "Salva"; +$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["Profile not found."] = "Profilo 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["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s"; $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["l, F j"] = "l j F"; @@ -718,134 +556,306 @@ $a->strings["Adjust for viewer timezone"] = "Visualizza con il fuso orario di ch $a->strings["Description:"] = "Descrizione:"; $a->strings["Title:"] = "Titolo:"; $a->strings["Share this event"] = "Condividi questo evento"; -$a->strings["Preview"] = "Anteprima"; -$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 'Activating scheduled tasks'"] = "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 'Activating scheduled tasks'"; -$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["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["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["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["Photos"] = "Foto"; +$a->strings["Files"] = "File"; +$a->strings["Welcome to %s"] = "Benvenuto su %s"; +$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; +$a->strings["Visible to:"] = "Visibile a:"; $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["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; +$a->strings["Edit contact"] = "Modifca contatto"; +$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo"; +$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["Remove My Account"] = "Rimuovi il mio account"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."; +$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; +$a->strings["Invalid request."] = "Richiesta non valida."; +$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["Wall Photos"] = "Foto della bacheca"; +$a->strings["Image upload failed."] = "Caricamento immagine fallito."; +$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["%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["Contact Photos"] = "Foto dei contatti"; +$a->strings["Photo Albums"] = "Album foto"; +$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["Profile Photos"] = "Foto del profilo"; +$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["Permissions"] = "Permessi"; +$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["Share"] = "Condividi"; +$a->strings["View Album"] = "Sfoglia l'album"; +$a->strings["No profile"] = "Nessun profilo"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registrazione completata. Controlla la tua mail per ulteriori informazioni."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

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

Puoi cambiare la password dopo il login."; +$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere elaborata."; +$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte del prorietario del sito."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."; +$a->strings["Your OpenID (optional): "] = "Il tuo OpenID (opzionale): "; +$a->strings["Include your profile in member directory?"] = "Includi il tuo profilo nell'elenco pubblico?"; +$a->strings["Membership on this site is by invitation only."] = "La registrazione su questo sito è solo su invito."; +$a->strings["Your invitation ID: "] = "L'ID del tuo invito:"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo nome completo (es. Mario Rossi): "; +$a->strings["Your Email Address: "] = "Il tuo indirizzo email: "; +$a->strings["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["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["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["System down for maintenance"] = "Sistema in manutenzione"; +$a->strings["Item not available."] = "Oggetto non disponibile."; +$a->strings["Item was not found."] = "Oggetto non trovato."; +$a->strings["Applications"] = "Applicazioni"; +$a->strings["No installed applications."] = "Nessuna applicazione installata."; $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["Profile Match"] = "Profili corrispondenti"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."; -$a->strings["is interested in:"] = "è interessato a:"; -$a->strings["link"] = "collegamento"; -$a->strings["Not available."] = "Non disponibile."; -$a->strings["Community"] = "Comunità"; +$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["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["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["%d contact in common"] = array( + 0 => "%d contatto in comune", + 1 => "%d contatti in comune", +); +$a->strings["View all contacts"] = "Vedi tutti i contatti"; +$a->strings["Toggle Blocked status"] = "Inverti stato \"Blocca\""; +$a->strings["Unignore"] = "Non ignorare"; +$a->strings["Toggle Ignored status"] = "Inverti stato \"Ignora\""; +$a->strings["Unarchive"] = "Dearchivia"; +$a->strings["Archive"] = "Archivia"; +$a->strings["Toggle Archive status"] = "Inverti stato \"Archiviato\""; +$a->strings["Repair"] = "Ripara"; +$a->strings["Advanced Contact Settings"] = "Impostazioni avanzate Contatto"; +$a->strings["Communications lost with this contact!"] = "Comunicazione con questo contatto persa!"; +$a->strings["Fetch further information for feeds"] = "Recupera maggiori infomazioni per i feed"; +$a->strings["Fetch information"] = "Recupera informazioni"; +$a->strings["Fetch information and keywords"] = "Recupera informazioni e parole chiave"; +$a->strings["Contact Editor"] = "Editor dei Contatti"; +$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["Delete contact"] = "Rimuovi contatto"; +$a->strings["Last update:"] = "Ultimo aggiornamento:"; +$a->strings["Update public posts"] = "Aggiorna messaggi pubblici"; +$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 hastag, quando \"Recupera informazioni e parole chiave\" è selezionato"; +$a->strings["Profile URL"] = "URL Profilo"; +$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["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["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["Common Friends"] = "Amici in comune"; +$a->strings["No contacts in common."] = "Nessun contatto in comune."; +$a->strings["You already added this contact."] = "Hai già aggiunto questo contatto."; +$a->strings["Contact added"] = "Contatto aggiunto"; +$a->strings["Login"] = "Accedi"; +$a->strings["The post was created"] = "Il messaggio è stato creato"; +$a->strings["Move account"] = "Muovi account"; +$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server Friendica."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora"; +$a->strings["Account file"] = "File account"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; +$a->strings["Friends of %s"] = "Amici di %s"; +$a->strings["No friends to display."] = "Nessun amico da visualizzare."; +$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["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["Profile"] = "Profilo"; +$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."; +$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."; +$a->strings["Profile Keywords"] = "Parole chiave del profilo"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."; +$a->strings["Connecting"] = "Collegarsi"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Sestrings["Importing Emails"] = "Importare le Email"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"; +$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto"; +$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."; +$a->strings["Finding New People"] = "Trova nuove persone"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."; +$a->strings["Groups"] = "Gruppi"; +$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"; +$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."; +$a->strings["Getting Help"] = "Ottenere Aiuto"; +$a->strings["Go to the Help Section"] = "Vai alla sezione Guida"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."; +$a->strings["Remove term"] = "Rimuovi termine"; +$a->strings["Saved Searches"] = "Ricerche salvate"; +$a->strings["Search"] = "Cerca"; $a->strings["No results."] = "Nessun risultato."; -$a->strings["everybody"] = "tutti"; +$a->strings["Items tagged with: %s"] = "Elementi taggati con: %s"; +$a->strings["Search results for: %s"] = "Risultato della ricerca per: %s"; +$a->strings["Total invitation limit exceeded."] = "Limite totale degli inviti superato."; +$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; +$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito."; +$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita."; +$a->strings["%d message sent."] = array( + 0 => "%d messaggio inviato.", + 1 => "%d messaggi inviati.", +); +$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."; +$a->strings["Send invitations"] = "Invia inviti"; +$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"; $a->strings["Additional features"] = "Funzionalità aggiuntive"; $a->strings["Display"] = "Visualizzazione"; $a->strings["Social Networks"] = "Social Networks"; @@ -891,8 +901,10 @@ $a->strings["Disable intelligent shortening"] = "Disabilita accorciamento intell $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"] = ""; +$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"] = "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)"; @@ -961,8 +973,6 @@ $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"; @@ -978,8 +988,6 @@ $a->strings["Maximum Friend Requests/Day:"] = "Numero massimo di richieste di am $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"; @@ -1007,94 +1015,10 @@ $a->strings["Change the behaviour of this account for special situations"] = "Mo $a->strings["Relocate"] = "Trasloca"; $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone."; $a->strings["Resend relocate message to contacts"] = "Reinvia il messaggio di trasloco"; -$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; -$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."; -$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d parametro richiesto non è stato trovato all'indirizzo dato", - 1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato", -); -$a->strings["Introduction complete."] = "Presentazione completa."; -$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione."; -$a->strings["Profile unavailable."] = "Profilo non disponibile."; -$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi."; -$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore."; -$a->strings["Invalid locator"] = "Invalid locator"; -$a->strings["Invalid email address."] = "Indirizzo email non valido."; -$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita."; -$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata."; -$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui."; -$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici."; -$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; -$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso."; -$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata."; -$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; -$a->strings["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["Your registration can not be processed."] = "La tua registrazione non puo' essere elaborata."; -$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte del prorietario del sito."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."; -$a->strings["Your OpenID (optional): "] = "Il tuo OpenID (opzionale): "; -$a->strings["Include your profile in member directory?"] = "Includi il tuo profilo nell'elenco pubblico?"; -$a->strings["Membership on this site is by invitation only."] = "La registrazione su questo sito è solo su invito."; -$a->strings["Your invitation ID: "] = "L'ID del tuo invito:"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo nome completo (es. Mario Rossi): "; -$a->strings["Your Email Address: "] = "Il tuo indirizzo email: "; -$a->strings["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["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["Global Directory"] = "Elenco globale"; -$a->strings["Find on this site"] = "Cerca nel sito"; -$a->strings["Site Directory"] = "Elenco del sito"; -$a->strings["Age: "] = "Età : "; -$a->strings["Gender: "] = "Genere:"; -$a->strings["Status:"] = "Stato:"; -$a->strings["Homepage:"] = "Homepage:"; -$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["Common Friends"] = "Amici in comune"; -$a->strings["No contacts in common."] = "Nessun contatto in comune."; -$a->strings["Export account"] = "Esporta account"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server."; -$a->strings["Export all"] = "Esporta tutto"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)"; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s"; -$a->strings["Mood"] = "Umore"; -$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici"; -$a->strings["Do you really want to delete this suggestion?"] = "Vuoi veramente cancellare questo suggerimento?"; -$a->strings["Friend Suggestions"] = "Contatti suggeriti"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."; -$a->strings["Ignore/Hide"] = "Ignora / Nascondi"; +$a->strings["Item has been removed."] = "L'oggetto è stato rimosso."; +$a->strings["People Search - %s"] = "Cerca persone - %s"; +$a->strings["Connect"] = "Connetti"; +$a->strings["No matches"] = "Nessun risultato"; $a->strings["Profile deleted."] = "Profilo elminato."; $a->strings["Profile-"] = "Profilo-"; $a->strings["New profile created."] = "Il nuovo profilo è stato creato."; @@ -1169,47 +1093,78 @@ $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["link"] = "collegamento"; +$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["{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["Nothing new here"] = "Niente di nuovo qui"; +$a->strings["Clear notifications"] = "Pulisci le notifiche"; +$a->strings["Not available."] = "Non disponibile."; +$a->strings["Community"] = "Comunità"; +$a->strings["Save to Folder:"] = "Salva nella Cartella:"; +$a->strings["- select -"] = "- seleziona -"; +$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["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["Do you really want to delete this suggestion?"] = "Vuoi veramente cancellare questo suggerimento?"; +$a->strings["Friend Suggestions"] = "Contatti suggeriti"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."; +$a->strings["Ignore/Hide"] = "Ignora / Nascondi"; +$a->strings["Access denied."] = "Accesso negato."; +$a->strings["Resubsribing to OStatus contacts"] = ""; +$a->strings["Error"] = ""; +$a->strings["Done"] = ""; +$a->strings["Keep this window open until done."] = ""; +$a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s"; +$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"; +$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:"; +$a->strings["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."] = "Nessun contatto."; +$a->strings["View Contacts"] = "Visualizza i contatti"; $a->strings["Personal Notes"] = "Note personali"; +$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["Global Directory"] = "Elenco globale"; +$a->strings["Find on this site"] = "Cerca nel sito"; +$a->strings["Site Directory"] = "Elenco del sito"; +$a->strings["Gender: "] = "Genere:"; +$a->strings["Status:"] = "Stato:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta)."; +$a->strings["Subsribing 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["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."; @@ -1217,87 +1172,226 @@ $a->strings["UTC time: %s"] = "Ora UTC: %s"; $a->strings["Current timezone: %s"] = "Fuso orario corrente: %s"; $a->strings["Converted localtime: %s"] = "Ora locale convertita: %s"; $a->strings["Please select your timezone:"] = "Selezionare il tuo fuso orario:"; -$a->strings["Poke/Prod"] = "Tocca/Pungola"; -$a->strings["poke, prod or do other things to somebody"] = "tocca, pungola o fai altre cose a qualcuno"; -$a->strings["Recipient"] = "Destinatario"; -$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi fare al destinatario"; -$a->strings["Make this post private"] = "Rendi questo post privato"; -$a->strings["Total invitation limit exceeded."] = "Limite totale degli inviti superato."; -$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; -$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito."; -$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita."; -$a->strings["%d message sent."] = array( - 0 => "%d messaggio inviato.", - 1 => "%d messaggi inviati.", -); -$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."; -$a->strings["Send invitations"] = "Invia inviti"; -$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"; -$a->strings["Contact Photos"] = "Foto dei contatti"; -$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["Post successful."] = "Inviato!"; +$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; +$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; +$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; +$a->strings["Upload File:"] = "Carica un file:"; +$a->strings["Select a profile:"] = "Seleziona un profilo:"; +$a->strings["Upload"] = "Carica"; +$a->strings["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["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 'Activating scheduled tasks'"] = "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 'Activating scheduled tasks'"; +$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"] = ""; +$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."] = ""; +$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["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["Not Extended"] = "Not Extended"; +$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["No such group"] = "Nessun gruppo"; +$a->strings["Group is empty"] = "Il gruppo è vuoto"; +$a->strings["Group: %s"] = "Gruppo: %s"; +$a->strings["View in context"] = "Vedi nel contesto"; $a->strings["Account approved."] = "Account approvato."; $a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; $a->strings["Please login."] = "Accedi."; -$a->strings["Move account"] = "Muovi account"; -$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server Friendica."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora"; -$a->strings["Account file"] = "File account"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""; -$a->strings["Item not available."] = "Oggetto non disponibile."; -$a->strings["Item was not found."] = "Oggetto non trovato."; +$a->strings["Profile Match"] = "Profili corrispondenti"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."; +$a->strings["is interested in:"] = "è interessato a:"; +$a->strings["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["%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["Search Results For: %s"] = "Risultato della ricerca per: %s"; +$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["Contact: %s"] = "Contatto: %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["Contact settings applied."] = "Contatto modificato."; +$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; +$a->strings["Repair Contact Settings"] = "Ripara il contatto"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."; +$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; +$a->strings["No mirroring"] = "Non duplicare"; +$a->strings["Mirror as forwarded posting"] = "Duplica come messaggi ricondivisi"; +$a->strings["Mirror as my own posting"] = "Duplica come miei messaggi"; +$a->strings["Refetch contact data"] = "Ricarica dati contatto"; +$a->strings["Account Nickname"] = "Nome utente"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente"; +$a->strings["Account URL"] = "URL dell'utente"; +$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["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni"; +$a->strings["Your profile page"] = "Pagina del tuo profilo"; +$a->strings["Your contacts"] = "I tuoi contatti"; +$a->strings["Your photos"] = "Le tue foto"; +$a->strings["Your events"] = "I tuoi eventi"; +$a->strings["Personal notes"] = "Note personali"; +$a->strings["Your personal photos"] = "Le tue foto personali"; +$a->strings["Community Pages"] = "Pagine Comunitarie"; +$a->strings["Community Profiles"] = "Profili Comunità"; +$a->strings["Last users"] = "Ultimi utenti"; +$a->strings["Last likes"] = "Ultimi \"mi piace\""; +$a->strings["event"] = "l'evento"; +$a->strings["Last photos"] = "Ultime foto"; +$a->strings["Find Friends"] = "Trova Amici"; +$a->strings["Local Directory"] = "Elenco Locale"; +$a->strings["Similar Interests"] = "Interessi simili"; +$a->strings["Invite Friends"] = "Invita amici"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Set zoomfactor for Earth Layers"] = "Livello di zoom per Earth Layers"; +$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["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; +$a->strings["Connect Services"] = "Servizi di conessione"; +$a->strings["don't show"] = "non mostrare"; +$a->strings["show"] = "mostra"; +$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra"; +$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti"; +$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti"; +$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale"; +$a->strings["Set color scheme"] = "Imposta lo schema dei colori"; +$a->strings["Set zoomfactor for Earth Layer"] = "Livello di zoom per Earth Layer"; +$a->strings["Set style"] = "Imposta stile"; +$a->strings["Set colour scheme"] = "Imposta schema colori"; +$a->strings["default"] = "default"; +$a->strings["greenzero"] = "greenzero"; +$a->strings["purplezero"] = "purplezero"; +$a->strings["easterbunny"] = "easterbunny"; +$a->strings["darkzero"] = "darkzero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = "slackr"; +$a->strings["Variations"] = "Varianti"; +$a->strings["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 resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)"; +$a->strings["Set theme width"] = "Imposta la larghezza del tema"; +$a->strings["Click here to download"] = ""; +$a->strings["Create new pull request"] = ""; +$a->strings["Reload active plugins"] = ""; +$a->strings["Drop contact"] = ""; +$a->strings["Public projects on this node"] = ""; +$a->strings["Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone."] = ""; +$a->strings["Visibility"] = ""; +$a->strings["Create"] = ""; +$a->strings["No pull requests to show"] = ""; +$a->strings["opened by"] = ""; +$a->strings["closed"] = ""; +$a->strings["merged"] = ""; +$a->strings["Projects"] = ""; +$a->strings["add new"] = ""; +$a->strings["delete"] = ""; +$a->strings["Clone this project:"] = ""; +$a->strings["New pull request"] = ""; +$a->strings["Can't show you the diff at the moment. Sorry"] = ""; $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."; @@ -1312,40 +1406,6 @@ $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["ignore thread"] = "ignora la discussione"; -$a->strings["unignore thread"] = "non ignorare la discussione"; -$a->strings["toggle ignore status"] = "inverti stato \"Ignora\""; -$a->strings["ignored"] = "ignorato"; -$a->strings["Categories:"] = "Categorie:"; -$a->strings["Filed under:"] = "Archiviato in:"; -$a->strings["via"] = "via"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nGli sviluppatori di Friendica hanno rilasciato l'aggiornamento %s\nrecentemente, ma quando ho provato a installarlo, qualcosa è \nandato terribilmente storto.\nBisogna sistemare le cose e non posso farlo da solo.\nContatta uno sviluppatore se non puoi aiutarmi da solo. Il mio database potrebbe essere invalido."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Il messaggio di errore è\n[pre]%s[/pre]"; -$a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; -$a->strings["Errors encountered performing database changes."] = "Riscontrati errori applicando le modifiche al database."; -$a->strings["Logged out."] = "Uscita effettuata."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."; -$a->strings["The error message was:"] = "Il messaggio riportato era:"; -$a->strings["Add New Contact"] = "Aggiungi nuovo contatto"; -$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d invito disponibile", - 1 => "%d inviti disponibili", -); -$a->strings["Find People"] = "Trova persone"; -$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse"; -$a->strings["Connect/Follow"] = "Connetti/segui"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca"; -$a->strings["Similar Interests"] = "Interessi simili"; -$a->strings["Random Profile"] = "Profilo causale"; -$a->strings["Invite Friends"] = "Invita amici"; -$a->strings["Networks"] = "Reti"; -$a->strings["All Networks"] = "Tutte le Reti"; -$a->strings["Saved Folders"] = "Cartelle Salvate"; -$a->strings["Everything"] = "Tutto"; -$a->strings["Categories"] = "Categorie"; $a->strings["General Features"] = "Funzionalità generali"; $a->strings["Multiple Profiles"] = "Profili multipli"; $a->strings["Ability to create multiple profiles"] = "Possibilità di creare profili multipli"; @@ -1380,6 +1440,7 @@ $a->strings["Tagging"] = "Aggiunta tag"; $a->strings["Ability to tag existing posts"] = "Permette di aggiungere tag ai post già esistenti"; $a->strings["Post Categories"] = "Cateorie post"; $a->strings["Add categories to your posts"] = "Aggiungi categorie ai tuoi post"; +$a->strings["Saved Folders"] = "Cartelle Salvate"; $a->strings["Ability to file posts under folders"] = "Permette di archiviare i post in cartelle"; $a->strings["Dislike Posts"] = "Non mi piace"; $a->strings["Ability to dislike posts/comments"] = "Permetti di inviare \"non mi piace\" ai messaggi"; @@ -1387,126 +1448,13 @@ $a->strings["Star Posts"] = "Post preferiti"; $a->strings["Ability to mark special posts with a star indicator"] = "Permette di segnare i post preferiti con una stella"; $a->strings["Mute Post Notifications"] = "Silenzia le notifiche di nuovi post"; $a->strings["Ability to mute notifications for a thread"] = "Permette di silenziare le notifiche di nuovi post in una discussione"; -$a->strings["Connect URL missing."] = "URL di connessione mancante."; -$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili."; -$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni."; -$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore"; -$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."; -$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."; -$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto."; -$a->strings["following"] = "segue"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."; -$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti"; -$a->strings["Everybody"] = "Tutti"; -$a->strings["edit"] = "modifica"; -$a->strings["Edit group"] = "Modifica gruppo"; -$a->strings["Create a new group"] = "Crea un nuovo gruppo"; -$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo."; -$a->strings["Miscellaneous"] = "Varie"; -$a->strings["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["Requested account is not available."] = "L'account richiesto non è disponibile."; -$a->strings["Edit profile"] = "Modifica il profilo"; -$a->strings["Message"] = "Messaggio"; -$a->strings["Profiles"] = "Profili"; -$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; -$a->strings["Network:"] = "Rete:"; -$a->strings["g A l F d"] = "g A l d F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[oggi]"; -$a->strings["Birthday Reminders"] = "Promemoria compleanni"; -$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; -$a->strings["[No description]"] = "[Nessuna descrizione]"; -$a->strings["Event Reminders"] = "Promemoria"; -$a->strings["Events this week:"] = "Eventi di questa settimana:"; -$a->strings["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["Status"] = "Stato"; -$a->strings["Status Messages and Posts"] = "Messaggi di stato e post"; -$a->strings["Profile Details"] = "Dettagli del profilo"; -$a->strings["Videos"] = "Video"; -$a->strings["Events and Calendar"] = "Eventi e calendario"; -$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo"; -$a->strings["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["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["Starts:"] = "Inizia:"; +$a->strings["Finishes:"] = "Finisce:"; $a->strings["[no subject]"] = "[nessun oggetto]"; -$a->strings["stopped following"] = "tolto dai seguiti"; -$a->strings["Poke"] = "Stuzzica"; -$a->strings["View Status"] = "Visualizza stato"; -$a->strings["View Profile"] = "Visualizza profilo"; -$a->strings["View Photos"] = "Visualizza foto"; -$a->strings["Network Posts"] = "Post della Rete"; -$a->strings["Edit Contact"] = "Modifica contatti"; -$a->strings["Drop Contact"] = "Rimuovi contatto"; -$a->strings["Send PM"] = "Invia messaggio privato"; -$a->strings["Welcome "] = "Ciao"; -$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo."; -$a->strings["Welcome back "] = "Ciao "; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla."; -$a->strings["event"] = "l'evento"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s ha stuzzicato %2\$s"; -$a->strings["post/item"] = "post/elemento"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito"; -$a->strings["remove"] = "rimuovi"; -$a->strings["Delete Selected Items"] = "Cancella elementi selezionati"; -$a->strings["Follow Thread"] = "Segui la discussione"; -$a->strings["%s likes this."] = "Piace a %s."; -$a->strings["%s doesn't like this."] = "Non piace a %s."; -$a->strings["%2\$d people like this"] = "Piace a %2\$d persone."; -$a->strings["%2\$d people don't like this"] = "Non piace a %2\$d persone."; -$a->strings["and"] = "e"; -$a->strings[", and %d other people"] = "e altre %d persone"; -$a->strings["%s like this."] = "Piace a %s."; -$a->strings["%s don't like this."] = "Non piace a %s."; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:"; -$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Where are you right now?"] = "Dove sei ora?"; -$a->strings["Delete item(s)?"] = "Cancellare questo elemento/i?"; -$a->strings["permissions"] = "permessi"; -$a->strings["Post to Groups"] = "Invia ai Gruppi"; -$a->strings["Post to Contacts"] = "Invia ai Contatti"; -$a->strings["Private post"] = "Post privato"; -$a->strings["view full size"] = "vedi a schermo intero"; +$a->strings[" on Last.fm"] = "su Last.fm"; $a->strings["newer"] = "nuovi"; $a->strings["older"] = "vecchi"; $a->strings["prev"] = "prec"; @@ -1578,84 +1526,10 @@ $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["default"] = "default"; $a->strings["Select an alternate language"] = "Seleziona una diversa lingua"; $a->strings["activity"] = "attività"; $a->strings["post"] = "messaggio"; $a->strings["Item filed"] = "Messaggio salvato"; -$a->strings["Image/photo"] = "Immagine/foto"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["%s wrote the following post"] = "%s ha scritto il seguente messaggio"; -$a->strings["$1 wrote:"] = "$1 ha scritto:"; -$a->strings["Encrypted content"] = "Contenuto criptato"; -$a->strings["(no subject)"] = "(nessun oggetto)"; -$a->strings["noreply"] = "nessuna risposta"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato"; -$a->strings["Block immediately"] = "Blocca immediatamente"; -$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; -$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare"; -$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo"; -$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia"; -$a->strings["Weekly"] = "Settimanalmente"; -$a->strings["Monthly"] = "Mensilmente"; -$a->strings["OStatus"] = "Ostatus"; -$a->strings["RSS/Atom"] = "RSS / Atom"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Connettore Diaspora"; -$a->strings["Statusnet"] = "Statusnet"; -$a->strings["App.net"] = "App.net"; -$a->strings["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["User not found."] = "Utente non trovato."; $a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato"; $a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato"; @@ -1665,29 +1539,66 @@ $a->strings["There is no conversation with this id."] = "Non c'è nessuna conver $a->strings["Invalid item."] = "Elemento non valido."; $a->strings["Invalid action. "] = "Azione non valida."; $a->strings["DB error"] = "Errore database"; -$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["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["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +$a->strings["%s's birthday"] = "Compleanno di %s"; +$a->strings["Happy Birthday %s"] = "Buon compleanno %s"; $a->strings["Do you really want to delete this item?"] = "Vuoi veramente cancellare questo elemento?"; $a->strings["Archives"] = "Archivi"; +$a->strings["(no subject)"] = "(nessun oggetto)"; +$a->strings["noreply"] = "nessuna risposta"; +$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; +$a->strings["Attachments:"] = "Allegati:"; +$a->strings["Requested account is not available."] = "L'account richiesto non è disponibile."; +$a->strings["Edit profile"] = "Modifica il profilo"; +$a->strings["Message"] = "Messaggio"; +$a->strings["Profiles"] = "Profili"; +$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; +$a->strings["Network:"] = "Rete:"; +$a->strings["g A l F d"] = "g A l d F"; +$a->strings["F d"] = "d F"; +$a->strings["[today]"] = "[oggi]"; +$a->strings["Birthday Reminders"] = "Promemoria compleanni"; +$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; +$a->strings["[No description]"] = "[Nessuna descrizione]"; +$a->strings["Event Reminders"] = "Promemoria"; +$a->strings["Events this week:"] = "Eventi di questa settimana:"; +$a->strings["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["Status"] = "Stato"; +$a->strings["Status Messages and Posts"] = "Messaggi di stato e post"; +$a->strings["Profile Details"] = "Dettagli del profilo"; +$a->strings["Videos"] = "Video"; +$a->strings["Events and Calendar"] = "Eventi e calendario"; +$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo"; +$a->strings["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["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["Male"] = "Maschio"; $a->strings["Female"] = "Femmina"; $a->strings["Currently Male"] = "Al momento maschio"; @@ -1724,6 +1635,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"; @@ -1745,6 +1657,121 @@ $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["Error decoding account file"] = "Errore decodificando il file account"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname"; +$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!"; +$a->strings["User creation error"] = "Errore creando l'utente"; +$a->strings["User profile creation error"] = "Errore creando il profile dell'utente"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contatto non importato", + 1 => "%d contatti non importati", +); +$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"; +$a->strings["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["%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["View Status"] = "Visualizza stato"; +$a->strings["View Profile"] = "Visualizza profilo"; +$a->strings["View Photos"] = "Visualizza foto"; +$a->strings["Network Posts"] = "Post della Rete"; +$a->strings["Edit Contact"] = "Modifica contatti"; +$a->strings["Send PM"] = "Invia messaggio privato"; +$a->strings["Poke"] = "Stuzzica"; +$a->strings["%s likes this."] = "Piace a %s."; +$a->strings["%s doesn't like this."] = "Non piace a %s."; +$a->strings["%2\$d people like this"] = "Piace a %2\$d persone."; +$a->strings["%2\$d people don't like this"] = "Non piace a %2\$d persone."; +$a->strings["and"] = "e"; +$a->strings[", and %d other people"] = "e altre %d persone"; +$a->strings["%s like this."] = "Piace a %s."; +$a->strings["%s don't like this."] = "Non piace a %s."; +$a->strings["Visible to everybody"] = "Visibile a tutti"; +$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:"; +$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:"; +$a->strings["Tag term:"] = "Tag:"; +$a->strings["Where are you right now?"] = "Dove sei ora?"; +$a->strings["Delete item(s)?"] = "Cancellare questo elemento/i?"; +$a->strings["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["Add New Contact"] = "Aggiungi nuovo contatto"; +$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d invito disponibile", + 1 => "%d inviti disponibili", +); +$a->strings["Find People"] = "Trova persone"; +$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse"; +$a->strings["Connect/Follow"] = "Connetti/segui"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca"; +$a->strings["Random Profile"] = "Profilo causale"; +$a->strings["Networks"] = "Reti"; +$a->strings["All Networks"] = "Tutte le Reti"; +$a->strings["Everything"] = "Tutto"; +$a->strings["Categories"] = "Categorie"; +$a->strings["End this session"] = "Finisci questa sessione"; +$a->strings["Your videos"] = "I tuoi video"; +$a->strings["Your personal notes"] = "Le tue note personali"; +$a->strings["Sign in"] = "Entra"; +$a->strings["Home Page"] = "Home Page"; +$a->strings["Create an account"] = "Crea un account"; +$a->strings["Help 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["Unknown | Not categorised"] = "Sconosciuto | non categorizzato"; +$a->strings["Block immediately"] = "Blocca immediatamente"; +$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; +$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare"; +$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo"; +$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia"; +$a->strings["Weekly"] = "Settimanalmente"; +$a->strings["Monthly"] = "Mensilmente"; +$a->strings["OStatus"] = "Ostatus"; +$a->strings["RSS/Atom"] = "RSS / Atom"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Connettore Diaspora"; +$a->strings["Statusnet"] = "Statusnet"; +$a->strings["App.net"] = "App.net"; +$a->strings["Redmatrix"] = "Redmatrix"; $a->strings["Friendica Notification"] = "Notifica Friendica"; $a->strings["Thank You,"] = "Grazie,"; $a->strings["%s Administrator"] = "Amministratore %s"; @@ -1802,55 +1829,64 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "H $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["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["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nGentile %1\$s,\nGrazie per esserti registrato su %2\$s. Il tuo account è stato creato."; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3\$s\n Nome utente: %1\$s\n Password: %5\$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2\$s"; +$a->strings["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["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["Embedded content"] = "Contenuto incorporato"; $a->strings["Embedding disabled"] = "Embed disabilitato"; -$a->strings["Error decoding account file"] = "Errore decodificando il file account"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"; -$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname"; -$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!"; -$a->strings["User creation error"] = "Errore creando l'utente"; -$a->strings["User profile creation error"] = "Errore creando il profile dell'utente"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contatto non importato", - 1 => "%d contatti non importati", -); -$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"; -$a->strings["toggle mobile"] = "commuta tema mobile"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)"; -$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti"; -$a->strings["Set theme width"] = "Imposta la larghezza del tema"; -$a->strings["Color scheme"] = "Schema colori"; -$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti"; -$a->strings["Set colour scheme"] = "Imposta schema colori"; -$a->strings["Alignment"] = "Allineamento"; -$a->strings["Left"] = "Sinistra"; -$a->strings["Center"] = "Centrato"; -$a->strings["Posts font size"] = "Dimensione caratteri post"; -$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo"; -$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale"; -$a->strings["Set color scheme"] = "Imposta lo schema dei colori"; -$a->strings["Set zoomfactor for Earth Layer"] = "Livello di zoom per Earth Layer"; -$a->strings["Set longitude (X) for Earth Layers"] = "Longitudine (X) per Earth Layers"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Latitudine (Y) per Earth Layers"; -$a->strings["Community Pages"] = "Pagine Comunitarie"; -$a->strings["Earth Layers"] = "Earth Layers"; -$a->strings["Community Profiles"] = "Profili Comunità"; -$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; -$a->strings["Connect Services"] = "Servizi di conessione"; -$a->strings["Find Friends"] = "Trova Amici"; -$a->strings["Last users"] = "Ultimi utenti"; -$a->strings["Last photos"] = "Ultime foto"; -$a->strings["Last likes"] = "Ultimi \"mi piace\""; -$a->strings["Your contacts"] = "I tuoi contatti"; -$a->strings["Your personal photos"] = "Le tue foto personali"; -$a->strings["Local Directory"] = "Elenco Locale"; -$a->strings["Set zoomfactor for Earth Layers"] = "Livello di zoom per Earth Layers"; -$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra"; -$a->strings["Set style"] = "Imposta stile"; -$a->strings["greenzero"] = "greenzero"; -$a->strings["purplezero"] = "purplezero"; -$a->strings["easterbunny"] = "easterbunny"; -$a->strings["darkzero"] = "darkzero"; -$a->strings["comix"] = "comix"; -$a->strings["slackr"] = "slackr"; -$a->strings["Variations"] = "Varianti"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."; +$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti"; +$a->strings["Everybody"] = "Tutti"; +$a->strings["edit"] = "modifica"; +$a->strings["Edit group"] = "Modifica gruppo"; +$a->strings["Create a new group"] = "Crea un nuovo gruppo"; +$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo."; +$a->strings["stopped following"] = "tolto dai seguiti"; +$a->strings["Drop Contact"] = "Rimuovi contatto"; +$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["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["view full size"] = "vedi a schermo intero"; +$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."; From dd9f475ff61e5808f4429cf5de0f5fda79224991 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 7 Oct 2015 06:22:15 +0200 Subject: [PATCH 070/443] personalise emails send from the server --- include/enotify.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/enotify.php b/include/enotify.php index 0ac9f48ffa..e02c613831 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -20,7 +20,11 @@ function notification($params) { $siteurl = $a->get_baseurl(true); $thanks = t('Thank You,'); $sitename = $a->config['sitename']; - $site_admin = sprintf( t('%s Administrator'), $sitename); + if (!x($a->config['admin_name'])) { + $site_admin = sprintf( t('%s Administrator'), $sitename); + } else { + $site_admin = sprintf( t('%1$s, %2$s Administrator'), $a->config['admin_name'], $sitename); + } $nickname = ""; $sender_name = $sitename; From 1f0b759e2f6df7af4bc55571168bad3e3acbcd76 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 7 Oct 2015 08:25:10 +0200 Subject: [PATCH 071/443] Added resize possibility to proxy function --- include/acl_selectors.php | 6 ++--- include/bbcode.php | 2 +- include/conversation.php | 4 +-- include/text.php | 2 +- mod/contacts.php | 6 ++--- mod/content.php | 12 ++++----- mod/directory.php | 2 +- mod/dirfind.php | 2 +- mod/display.php | 6 ++--- mod/follow.php | 2 +- mod/match.php | 3 ++- mod/notifications.php | 14 +++++------ mod/ping.php | 2 +- mod/proxy.php | 51 ++++++++++++++++++++++++++++++--------- mod/suggest.php | 4 +-- mod/viewcontacts.php | 2 +- object/Item.php | 4 +-- view/theme/vier/theme.php | 2 +- 18 files changed, 77 insertions(+), 49 deletions(-) diff --git a/include/acl_selectors.php b/include/acl_selectors.php index f628b97309..05856bd217 100644 --- a/include/acl_selectors.php +++ b/include/acl_selectors.php @@ -545,7 +545,7 @@ function acl_lookup(&$a, $out_type = 'json') { $x['data'] = array(); if(count($r)) { foreach($r as $g) { - $x['photos'][] = proxy_url($g['micro']); + $x['photos'][] = proxy_url($g['micro'], false, PROXY_SIZE_MICRO); $x['links'][] = $g['url']; $x['suggestions'][] = $g['name']; $x['data'][] = intval($g['id']); @@ -559,7 +559,7 @@ function acl_lookup(&$a, $out_type = 'json') { foreach($r as $g){ $contacts[] = array( "type" => "c", - "photo" => proxy_url($g['micro']), + "photo" => proxy_url($g['micro'], false, PROXY_SIZE_MICRO), "name" => $g['name'], "id" => intval($g['id']), "network" => $g['network'], @@ -604,7 +604,7 @@ function acl_lookup(&$a, $out_type = 'json') { // /nickname $unknow_contacts[] = array( "type" => "c", - "photo" => proxy_url($row['author-avatar']), + "photo" => proxy_url($row['author-avatar'], false, PROXY_SIZE_MICRO), "name" => $row['author-name'], "id" => '', "network" => "unknown", diff --git a/include/bbcode.php b/include/bbcode.php index a4ad09ccf5..2fcf6c3247 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -601,7 +601,7 @@ function bb_ShareAttributes($share, $simplehtml) { default: $headline = trim($share[1]).'
'; if ($avatar != "") - $headline .= ''; + $headline .= ''; $headline .= sprintf(t('%s wrote the following post'.$reldate.':'), $profile, $author, $link); $headline .= "
"; diff --git a/include/conversation.php b/include/conversation.php index 0a33740555..2397014141 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -656,7 +656,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { 'name' => $profile_name_e, 'sparkle' => $sparkle, 'lock' => $lock, - 'thumb' => proxy_url($profile_avatar), + 'thumb' => proxy_url($profile_avatar, false, PROXY_SIZE_THUMB), 'title' => $item['title_e'], 'body' => $body_e, 'tags' => $tags_e, @@ -675,7 +675,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { 'indent' => '', 'owner_name' => $owner_name_e, 'owner_url' => $owner_url, - 'owner_photo' => proxy_url($owner_photo), + 'owner_photo' => proxy_url($owner_photo, false, PROXY_SIZE_THUMB), 'plink' => get_plink($item), 'edpost' => false, 'isstarred' => $isstarred, diff --git a/include/text.php b/include/text.php index c5b28b508e..4ce634b603 100644 --- a/include/text.php +++ b/include/text.php @@ -970,7 +970,7 @@ function micropro($contact, $redirect = false, $class = '', $textmode = false) { . (($click) ? ' fakelink' : '') . '" ' . (($redir) ? ' target="redir" ' : '') . (($url) ? ' href="' . $url . '"' : '') . $click . ' >' . $contact['name']
+			. proxy_url($contact['micro'], false, PROXY_SIZE_THUMB) . '
' . "\r\n"; } }} diff --git a/mod/contacts.php b/mod/contacts.php index 92463cd8de..25b22658f2 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -832,8 +832,8 @@ function _contact_detail_for_template($rr){ $url = $rr['url']; $sparkle = ''; } - - + + return array( 'img_hover' => sprintf( t('Visit %s\'s profile [%s]'),$rr['name'],$rr['url']), 'edit_hover' => t('Edit contact'), @@ -841,7 +841,7 @@ function _contact_detail_for_template($rr){ 'id' => $rr['id'], 'alt_text' => $alt_text, 'dir_icon' => $dir_icon, - 'thumb' => proxy_url($rr['thumb']), + 'thumb' => proxy_url($rr['thumb'], false, PROXY_SIZE_THUMB), 'name' => $rr['name'], 'username' => $rr['name'], 'sparkle' => $sparkle, diff --git a/mod/content.php b/mod/content.php index cec23a9142..c5a5556116 100644 --- a/mod/content.php +++ b/mod/content.php @@ -11,8 +11,8 @@ // There is no "pagination query", but we will manage the "current page" on the client // and provide a link to fetch the next page - until there are no pages left to fetch. -// With the exception of complex tag and text searches, this prototype is incredibly -// fast - e.g. one or two milliseconds to fetch parent items for the current content, +// With the exception of complex tag and text searches, this prototype is incredibly +// fast - e.g. one or two milliseconds to fetch parent items for the current content, // and 10-20 milliseconds to fetch all the child items. @@ -476,7 +476,7 @@ function render_content(&$a, $items, $mode, $update, $preview = false) { 'name' => $name_e, 'sparkle' => $sparkle, 'lock' => $lock, - 'thumb' => proxy_url($profile_avatar), + 'thumb' => proxy_url($profile_avatar, false, PROXY_SIZE_THUMB), 'title' => $title_e, 'body' => $body_e, 'text' => $text_e, @@ -485,7 +485,7 @@ function render_content(&$a, $items, $mode, $update, $preview = false) { 'indent' => '', 'owner_name' => $owner_name_e, 'owner_url' => $owner_url, - 'owner_photo' => proxy_url($owner_photo), + 'owner_photo' => proxy_url($owner_photo, false, PROXY_SIZE_THUMB), 'plink' => get_plink($item), 'edpost' => false, 'isstarred' => $isstarred, @@ -859,7 +859,7 @@ function render_content(&$a, $items, $mode, $update, $preview = false) { 'profile_url' => $profile_link, 'item_photo_menu' => item_photo_menu($item), 'name' => $name_e, - 'thumb' => proxy_url($profile_avatar), + 'thumb' => proxy_url($profile_avatar, false, PROXY_SIZE_THUMB), 'osparkle' => $osparkle, 'sparkle' => $sparkle, 'title' => $title_e, @@ -869,7 +869,7 @@ function render_content(&$a, $items, $mode, $update, $preview = false) { 'indent' => $indent, 'shiny' => $shiny, 'owner_url' => $owner_url, - 'owner_photo' => proxy_url($owner_photo), + 'owner_photo' => proxy_url($owner_photo, false, PROXY_SIZE_THUMB), 'owner_name' => $owner_name_e, 'plink' => get_plink($item), 'edpost' => $edpost, diff --git a/mod/directory.php b/mod/directory.php index fa3a89e45a..6fd99256f0 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -171,7 +171,7 @@ function directory_content(&$a) { $entry = replace_macros($tpl,array( '$id' => $rr['id'], '$profile_link' => $profile_link, - '$photo' => proxy_url($a->get_cached_avatar_image($rr[$photo])), + '$photo' => proxy_url($a->get_cached_avatar_image($rr[$photo]), false, PROXY_SIZE_THUMB), '$alt_text' => $rr['name'], '$name' => $rr['name'], '$details' => $pdesc . $details, diff --git a/mod/dirfind.php b/mod/dirfind.php index 488e10fa16..4156d3b1cf 100644 --- a/mod/dirfind.php +++ b/mod/dirfind.php @@ -140,7 +140,7 @@ function dirfind_content(&$a, $prefix = "") { $o .= replace_macros($tpl,array( '$url' => zrl($jj->url), '$name' => $jj->name, - '$photo' => proxy_url($jj->photo), + '$photo' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB), '$tags' => $jj->tags, '$conntxt' => $conntxt, '$connlnk' => $connlnk, diff --git a/mod/display.php b/mod/display.php index 46574bd064..6b345e6302 100644 --- a/mod/display.php +++ b/mod/display.php @@ -97,7 +97,7 @@ function display_fetchauthor($a, $item) { $profiledata["nickname"] = $item["author-name"]; $profiledata["name"] = $item["author-name"]; $profiledata["picdate"] = ""; - $profiledata["photo"] = proxy_url($item["author-avatar"]); + $profiledata["photo"] = proxy_url($item["author-avatar"], false, PROXY_SIZE_SMALL); $profiledata["url"] = $item["author-link"]; $profiledata["network"] = $item["network"]; @@ -174,7 +174,7 @@ function display_fetchauthor($a, $item) { $r[0]["about"] = ""; } - $profiledata["photo"] = proxy_url($r[0]["photo"]); + $profiledata["photo"] = proxy_url($r[0]["photo"], false, PROXY_SIZE_SMALL); $profiledata["address"] = bbcode($r[0]["location"]); $profiledata["about"] = bbcode($r[0]["about"]); if ($r[0]["nick"] != "") @@ -185,7 +185,7 @@ function display_fetchauthor($a, $item) { $r = q("SELECT `avatar`, `nick`, `location`, `about` FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($profiledata["url"]))); if (count($r)) { if ($profiledata["photo"] == "") - $profiledata["photo"] = proxy_url($r[0]["avatar"]); + $profiledata["photo"] = proxy_url($r[0]["avatar"], false, PROXY_SIZE_SMALL); if (($profiledata["address"] == "") AND ($profiledata["network"] != NETWORK_DIASPORA)) $profiledata["address"] = bbcode($r[0]["location"]); if (($profiledata["about"] == "") AND ($profiledata["network"] != NETWORK_DIASPORA)) diff --git a/mod/follow.php b/mod/follow.php index 352a8988b5..54c20e5093 100644 --- a/mod/follow.php +++ b/mod/follow.php @@ -81,7 +81,7 @@ function follow_content(&$a) { $o = replace_macros($tpl,array( '$header' => htmlentities($header), - '$photo' => proxy_url($ret["photo"]), + '$photo' => proxy_url($ret["photo"], false, PROXY_SIZE_SMALL), '$desc' => "", '$pls_answer' => t('Please answer the following:'), '$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$ret["name"]), false, '', array(t('No'),t('Yes'))), diff --git a/mod/match.php b/mod/match.php index 74f83a6cc9..f31b0f67a4 100644 --- a/mod/match.php +++ b/mod/match.php @@ -2,6 +2,7 @@ include_once('include/text.php'); require_once('include/socgraph.php'); require_once('include/contact_widgets.php'); +require_once('mod/proxy.php'); function match_content(&$a) { @@ -65,7 +66,7 @@ function match_content(&$a) { $o .= replace_macros($tpl,array( '$url' => zrl($jj->url), '$name' => $jj->name, - '$photo' => proxy_url($jj->photo), + '$photo' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB), '$inttxt' => ' ' . t('is interested in:'), '$conntxt' => t('Connect'), '$connlnk' => $connlnk, diff --git a/mod/notifications.php b/mod/notifications.php index fadd1e94e5..a267b7c958 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -166,7 +166,7 @@ function notifications_content(&$a) { '$intro_id' => $rr['intro_id'], '$madeby' => sprintf( t('suggested by %s'),$rr['name']), '$contact_id' => $rr['contact-id'], - '$photo' => ((x($rr,'fphoto')) ? proxy_url($rr['fphoto']) : "images/person-175.jpg"), + '$photo' => ((x($rr,'fphoto')) ? proxy_url($rr['fphoto'], false, PROXY_SIZE_SMALL) : "images/person-175.jpg"), '$fullname' => $rr['fname'], '$url' => zrl($rr['furl']), '$hidden' => array('hidden', t('Hide this contact from others'), ($rr['hidden'] == 1), ''), @@ -238,7 +238,7 @@ function notifications_content(&$a) { '$uid' => $_SESSION['uid'], '$intro_id' => $rr['intro_id'], '$contact_id' => $rr['contact-id'], - '$photo' => ((x($rr,'photo')) ? proxy_url($rr['photo']) : "images/person-175.jpg"), + '$photo' => ((x($rr,'photo')) ? proxy_url($rr['photo'], false, PROXY_SIZE_SMALL) : "images/person-175.jpg"), '$fullname' => $rr['name'], '$location' => bbcode($rr['glocation'], false, false), '$location_label' => t('Location:'), @@ -303,7 +303,7 @@ function notifications_content(&$a) { $notif_content .= replace_macros($tpl_item_likes,array( //'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'], '$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'], - '$item_image' => $it['author-avatar'], + '$item_image' => proxy_url($it['author-avatar'], false, PROXY_SIZE_MICRO), '$item_text' => sprintf( t("%s liked %s's post"), $it['author-name'], $it['pname']), '$item_when' => relative_date($it['created']) )); @@ -313,7 +313,7 @@ function notifications_content(&$a) { $notif_content .= replace_macros($tpl_item_dislikes,array( //'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'], '$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'], - '$item_image' => $it['author-avatar'], + '$item_image' => proxy_url($it['author-avatar'], false, PROXY_SIZE_MICRO), '$item_text' => sprintf( t("%s disliked %s's post"), $it['author-name'], $it['pname']), '$item_when' => relative_date($it['created']) )); @@ -328,7 +328,7 @@ function notifications_content(&$a) { $notif_content .= replace_macros($tpl_item_friends,array( //'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'], '$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'], - '$item_image' => $it['author-avatar'], + '$item_image' => proxy_url($it['author-avatar'], false, PROXY_SIZE_MICRO), '$item_text' => sprintf( t("%s is now friends with %s"), $it['author-name'], $it['fname']), '$item_when' => relative_date($it['created']) )); @@ -343,7 +343,7 @@ function notifications_content(&$a) { $notif_content .= replace_macros($tpl,array( //'$item_link' => $a->get_baseurl(true).'/display/'.$a->user['nickname']."/".$it['parent'], '$item_link' => $a->get_baseurl(true).'/display/'.$it['pguid'], - '$item_image' => $it['author-avatar'], + '$item_image' => proxy_url($it['author-avatar'], false, PROXY_SIZE_MICRO), '$item_text' => $item_text, '$item_when' => relative_date($it['created']) )); @@ -376,7 +376,7 @@ function notifications_content(&$a) { foreach ($r as $it) { $notif_content .= replace_macros($not_tpl,array( '$item_link' => $a->get_baseurl(true).'/notify/view/'. $it['id'], - '$item_image' => proxy_url($it['photo']), + '$item_image' => proxy_url($it['photo'], false, PROXY_SIZE_MICRO), '$item_text' => strip_tags(bbcode($it['msg'])), '$item_when' => relative_date($it['date']) )); diff --git a/mod/ping.php b/mod/ping.php index e87ed98553..791ceed351 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -173,7 +173,7 @@ function ping_init(&$a) { * 'message' => notification message. "{0}" will be replaced by subject name **/ function xmlize($n){ - $n['photo'] = proxy_url($n['photo']); + $n['photo'] = proxy_url($n['photo'], false, PROXY_SIZE_MICRO); $n['message'] = html_entity_decode($n['message'], ENT_COMPAT | ENT_HTML401, "UTF-8"); $n['name'] = html_entity_decode($n['name'], ENT_COMPAT | ENT_HTML401, "UTF-8"); diff --git a/mod/proxy.php b/mod/proxy.php index d82d334cec..d26967dddf 100644 --- a/mod/proxy.php +++ b/mod/proxy.php @@ -3,6 +3,12 @@ define("PROXY_DEFAULT_TIME", 86400); // 1 Day +define("PROXY_SIZE_MICRO", "micro"); +define("PROXY_SIZE_THUMB", "thumb"); +define("PROXY_SIZE_SMALL", "small"); +define("PROXY_SIZE_MEDIUM", "medium"); +define("PROXY_SIZE_LARGE", "large"); + require_once('include/security.php'); require_once("include/Photo.php"); @@ -37,6 +43,7 @@ function proxy_init() { $thumb = false; $size = 1024; + $sizetype = ""; // If the cache path isn't there, try to create it if (!is_dir($_SERVER["DOCUMENT_ROOT"]."/proxy")) @@ -59,14 +66,27 @@ function proxy_init() { $size = 200; // thumb, small, medium and large. - if (substr($url, -6) == ":thumb") - $size = 150; - if (substr($url, -6) == ":small") - $size = 340; - if (substr($url, -7) == ":medium") + if (substr($url, -6) == ":micro") { + $size = 48; + $sizetype = ":micro"; + $url = substr($url, 0, -6); + } elseif (substr($url, -6) == ":thumb") { + $size = 80; + $sizetype = ":thumb"; + $url = substr($url, 0, -6); + } elseif (substr($url, -6) == ":small") { + $size = 175; + $url = substr($url, 0, -6); + $sizetype = ":small"; + } elseif (substr($url, -7) == ":medium") { $size = 600; - if (substr($url, -6) == ":large") + $url = substr($url, 0, -7); + $sizetype = ":medium"; + } elseif (substr($url, -6) == ":large") { $size = 1024; + $url = substr($url, 0, -6); + $sizetype = ":large"; + } $pos = strrpos($url, "=."); if ($pos) @@ -176,6 +196,8 @@ function proxy_init() { } } + $img_str_orig = $img_str; + // reduce quality - if it isn't a GIF if ($mime != "image/gif") { $img = new Photo($img_str, $mime); @@ -188,10 +210,12 @@ function proxy_init() { // If there is a real existing directory then put the cache file there // advantage: real file access is really fast // Otherwise write in cachefile - if ($valid AND $direct_cache) - file_put_contents($_SERVER["DOCUMENT_ROOT"]."/proxy/".proxy_url($_REQUEST['url'], true), $img_str); - elseif ($cachefile != '') - file_put_contents($cachefile, $img_str); + if ($valid AND $direct_cache) { + file_put_contents($_SERVER["DOCUMENT_ROOT"]."/proxy/".proxy_url($_REQUEST['url'], true), $img_str_orig); + if ($sizetype <> '') + file_put_contents($_SERVER["DOCUMENT_ROOT"]."/proxy/".proxy_url($_REQUEST['url'], true).$sizetype, $img_str); + } elseif ($cachefile != '') + file_put_contents($cachefile, $img_str_orig); header("Content-type: $mime"); @@ -208,7 +232,7 @@ function proxy_init() { killme(); } -function proxy_url($url, $writemode = false) { +function proxy_url($url, $writemode = false, $size = "") { global $_SERVER; $a = get_app(); @@ -251,6 +275,9 @@ function proxy_url($url, $writemode = false) { $proxypath = $a->get_baseurl()."/proxy/".$path; + if ($size != "") + $size = ":".$size; + // Too long files aren't supported by Apache // Writemode in combination with long files shouldn't be possible if ((strlen($proxypath) > 250) AND $writemode) @@ -260,7 +287,7 @@ function proxy_url($url, $writemode = false) { elseif ($writemode) return ($path); else - return ($proxypath); + return ($proxypath.$size); } /** diff --git a/mod/suggest.php b/mod/suggest.php index e07e933114..8bf31ca8e5 100644 --- a/mod/suggest.php +++ b/mod/suggest.php @@ -81,12 +81,12 @@ function suggest_content(&$a) { foreach($r as $rr) { - $connlnk = $a->get_baseurl() . '/follow/?url=' . (($rr['connect']) ? $rr['connect'] : $rr['url']); + $connlnk = $a->get_baseurl() . '/follow/?url=' . (($rr['connect']) ? $rr['connect'] : $rr['url']); $o .= replace_macros($tpl,array( '$url' => zrl($rr['url']), '$name' => $rr['name'], - '$photo' => proxy_url($rr['photo']), + '$photo' => proxy_url($rr['photo'], false, PROXY_SIZE_THUMB), '$ignlnk' => $a->get_baseurl() . '/suggest?ignore=' . $rr['id'], '$ignid' => $rr['id'], '$conntxt' => t('Connect'), diff --git a/mod/viewcontacts.php b/mod/viewcontacts.php index b84856701d..19bf0415c7 100644 --- a/mod/viewcontacts.php +++ b/mod/viewcontacts.php @@ -62,7 +62,7 @@ function viewcontacts_content(&$a) { $contacts[] = array( 'id' => $rr['id'], 'img_hover' => sprintf( t('Visit %s\'s profile [%s]'), $rr['name'], $rr['url']), - 'thumb' => proxy_url($rr['thumb']), + 'thumb' => proxy_url($rr['thumb'], false, PROXY_SIZE_THUMB), 'name' => substr($rr['name'],0,20), 'username' => $rr['name'], 'url' => $url, diff --git a/object/Item.php b/object/Item.php index c7a025861f..0dc4f41985 100644 --- a/object/Item.php +++ b/object/Item.php @@ -334,7 +334,7 @@ class Item extends BaseObject { 'profile_url' => $profile_link, 'item_photo_menu' => item_photo_menu($item), 'name' => $name_e, - 'thumb' => proxy_url($profile_avatar), + 'thumb' => proxy_url($profile_avatar, false, PROXY_SIZE_THUMB), 'osparkle' => $osparkle, 'sparkle' => $sparkle, 'title' => $title_e, @@ -347,7 +347,7 @@ class Item extends BaseObject { 'indent' => $indent, 'shiny' => $shiny, 'owner_url' => $this->get_owner_url(), - 'owner_photo' => proxy_url($this->get_owner_photo()), + 'owner_photo' => proxy_url($this->get_owner_photo(), false, PROXY_SIZE_THUMB), 'owner_name' => $owner_name_e, 'plink' => get_plink($item), 'edpost' => ((feature_enabled($conv->get_profile_owner(),'edit_posts')) ? $edpost : ''), diff --git a/view/theme/vier/theme.php b/view/theme/vier/theme.php index 6d3ac1caf6..ff06b63030 100644 --- a/view/theme/vier/theme.php +++ b/view/theme/vier/theme.php @@ -132,7 +132,7 @@ function vier_community_info() { '$id' => $rr['id'], //'$profile_link' => zrl($rr['url']), '$profile_link' => $a->get_baseurl().'/follow/?url='.urlencode($rr['url']), - '$photo' => proxy_url($rr['photo']), + '$photo' => proxy_url($rr['photo'], false, PROXY_SIZE_MICRO), '$alt_text' => $rr['name'], )); $aside['$comunity_profiles_items'][] = $entry; From d80888842926eba272ae0e86d7666daeef201dc3 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Wed, 7 Oct 2015 09:38:47 +0200 Subject: [PATCH 072/443] added some lines to the htconfig config variables --- doc/htconfig.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/doc/htconfig.md b/doc/htconfig.md index 5d98f55a76..d46abb3a0b 100644 --- a/doc/htconfig.md +++ b/doc/htconfig.md @@ -77,3 +77,22 @@ line to your .htconfig.php: ## theme ## * hide_eventlist (Boolean) - Don't show the birthdays and events on the profile and network page + +# Administrator Options # + +Enabling the admin panel for an account, and thus making the account holder +admin of the node, is done by setting the variable + + $a->config['admin_email'] = "someone@example.com"; + +where you have to match the email address used for the account with the one you +enter to the .htconfig file. If more then one account should be able to access +the admin panel, seperate the email addresses with a comma. + + $a->config['admin_email'] = "someone@example.com,someonelese@example.com"; + +If you want to have a more personalized closing line for the notification +emails you can set a variable for the admin_name. + + $a->config['admin_name'] = "Marvin"; + From 61c3ce7a212156a06ee88285c3a76c823d761f1e Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 8 Oct 2015 00:25:55 +0200 Subject: [PATCH 073/443] Bugfix: The contact names had to be escaped --- include/conversation.php | 30 +++++++++++++++--------------- include/diaspora.php | 8 +++++++- include/items.php | 17 +++++++++++++++-- mod/allfriends.php | 8 ++++---- mod/common.php | 10 +++++----- mod/contacts.php | 12 ++++++------ mod/crepair.php | 6 +++--- mod/network.php | 8 ++++---- mod/viewcontacts.php | 4 ++-- object/Item.php | 2 +- view/theme/vier/theme.php | 3 ++- 11 files changed, 64 insertions(+), 44 deletions(-) diff --git a/include/conversation.php b/include/conversation.php index 2397014141..bbb0b921a3 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -396,25 +396,25 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { $page_writeable = true; if(!$update) { // The special div is needed for liveUpdate to kick in for this page. - // We only launch liveUpdate if you aren't filtering in some incompatible + // We only launch liveUpdate if you aren't filtering in some incompatible // way and also you aren't writing a comment (discovered in javascript). $live_update_div = '
' . "\r\n" - . "\r\n"; } @@ -431,7 +431,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { // because browser prefetching might change it on us. We have to deliver it with the page. $live_update_div = '
' . "\r\n" - . "\r\n"; } } @@ -441,7 +441,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { $page_writeable = true; if(!$update) { $live_update_div = '
' . "\r\n" - . "\r\n"; } } diff --git a/include/diaspora.php b/include/diaspora.php index 3145c52ea3..61a0dfc3cf 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -110,6 +110,9 @@ function diaspora_dispatch($importer,$msg,$attempt=1) { elseif($xmlbase->message) { $ret = diaspora_message($importer,$xmlbase->message,$msg); } + elseif($xmlbase->participation) { + $ret = diaspora_participation($importer,$xmlbase->participation); + } else { logger('diaspora_dispatch: unknown message type: ' . print_r($xmlbase,true)); } @@ -1834,7 +1837,7 @@ function diaspora_message($importer,$xml,$msg) { $author_signature = base64_decode($msg_author_signature); - $person = find_diaspora_person_by_handle($msg_diaspora_handle); + $person = find_diaspora_person_by_handle($msg_diaspora_handle); if(is_array($person) && x($person,'pubkey')) $key = $person['pubkey']; else { @@ -1881,6 +1884,9 @@ function diaspora_message($importer,$xml,$msg) { return; } +function diaspora_participation($importer,$xml) { + logger("Unsupported message type 'participation' ".print_r($xml, true)); +} function diaspora_photo($importer,$xml,$msg,$attempt=1) { diff --git a/include/items.php b/include/items.php index 0d442e3170..8691ccca49 100644 --- a/include/items.php +++ b/include/items.php @@ -1287,11 +1287,24 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa } if ($arr['network'] == "") { - $r = q("SELECT `network` FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", - intval($arr['contact-id']), + $r = q("SELECT `network` FROM `contact` WHERE `network` IN ('%s', '%s', '%s') AND `nurl` = '%s' AND `uid` = %d LIMIT 1", + dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS), + dbesc(normalise_link($arr['author-link'])), intval($arr['uid']) ); + if(!count($r)) + $r = q("SELECT `network` FROM `gcontact` WHERE `network` IN ('%s', '%s', '%s') AND `nurl` = '%s' LIMIT 1", + dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS), + dbesc(normalise_link($arr['author-link'])) + ); + + if(!count($r)) + $r = q("SELECT `network` FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", + intval($arr['contact-id']), + intval($arr['uid']) + ); + if(count($r)) $arr['network'] = $r[0]["network"]; diff --git a/mod/allfriends.php b/mod/allfriends.php index 1a45775fb2..784dfb8771 100644 --- a/mod/allfriends.php +++ b/mod/allfriends.php @@ -21,7 +21,7 @@ function allfriends_content(&$a) { ); $vcard_widget .= replace_macros(get_markup_template("vcard-widget.tpl"),array( - '$name' => $c[0]['name'], + '$name' => htmlentities($c[0]['name']), '$photo' => $c[0]['photo'], 'url' => z_root() . '/contacts/' . $cid )); @@ -34,7 +34,7 @@ function allfriends_content(&$a) { return; $o .= replace_macros(get_markup_template("section_title.tpl"),array( - '$title' => sprintf( t('Friends of %s'), $c[0]['name']) + '$title' => sprintf( t('Friends of %s'), htmlentities($c[0]['name'])) )); @@ -48,10 +48,10 @@ function allfriends_content(&$a) { $tpl = get_markup_template('common_friends.tpl'); foreach($r as $rr) { - + $o .= replace_macros($tpl,array( '$url' => $rr['url'], - '$name' => $rr['name'], + '$name' => htmlentities($rr['name']), '$photo' => $rr['photo'], '$tags' => '' )); diff --git a/mod/common.php b/mod/common.php index 3118d12479..1e65137ac6 100644 --- a/mod/common.php +++ b/mod/common.php @@ -16,7 +16,7 @@ function common_content(&$a) { if(! $uid) return; - if($cmd === 'loc' && $cid) { + if($cmd === 'loc' && $cid) { $c = q("select name, url, photo from contact where id = %d and uid = %d limit 1", intval($cid), intval($uid) @@ -26,10 +26,10 @@ function common_content(&$a) { $c = q("select name, url, photo from contact where self = 1 and uid = %d limit 1", intval($uid) ); - } + } $vcard_widget .= replace_macros(get_markup_template("vcard-widget.tpl"),array( - '$name' => $c[0]['name'], + '$name' => htmlentities($c[0]['name']), '$photo' => $c[0]['photo'], 'url' => z_root() . '/contacts/' . $cid )); @@ -97,10 +97,10 @@ function common_content(&$a) { $tpl = get_markup_template('common_friends.tpl'); foreach($r as $rr) { - + $o .= replace_macros($tpl,array( '$url' => $rr['url'], - '$name' => $rr['name'], + '$name' => htmlentities($rr['name']), '$photo' => $rr['photo'], '$tags' => '' )); diff --git a/mod/contacts.php b/mod/contacts.php index 25b22658f2..ee62bf3c9e 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -33,7 +33,7 @@ function contacts_init(&$a) { if($contact_id) { $a->data['contact'] = $r[0]; $vcard_widget = replace_macros(get_markup_template("vcard-widget.tpl"),array( - '$name' => $a->data['contact']['name'], + '$name' => htmlentities($a->data['contact']['name']), '$photo' => $a->data['contact']['photo'], '$url' => ($a->data['contact']['network'] == NETWORK_DFRN) ? $a->get_baseurl()."/redir/".$a->data['contact']['id'] : $a->data['contact']['url'] )); @@ -432,7 +432,7 @@ function contacts_content(&$a) { } $a->page['aside'] = ''; - + return replace_macros(get_markup_template('contact_drop_confirm.tpl'), array( '$contact' => _contact_detail_for_template($orig_record[0]), '$method' => 'get', @@ -509,7 +509,7 @@ function contacts_content(&$a) { if(!in_array($contact['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) $relation_text = ""; - $relation_text = sprintf($relation_text,$contact['name']); + $relation_text = sprintf($relation_text,htmlentities($contact['name'])); if(($contact['network'] === NETWORK_DFRN) && ($contact['rel'])) { $url = "redir/{$contact['id']}"; @@ -632,7 +632,7 @@ function contacts_content(&$a) { '$ffi_keyword_blacklist' => $contact['ffi_keyword_blacklist'], '$ffi_keyword_blacklist' => array('ffi_keyword_blacklist', t('Blacklisted keywords'), $contact['ffi_keyword_blacklist'], t('Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected')), '$photo' => $contact['photo'], - '$name' => $contact['name'], + '$name' => htmlentities($contact['name']), '$dir_icon' => $dir_icon, '$alt_text' => $alt_text, '$sparkle' => $sparkle, @@ -842,8 +842,8 @@ function _contact_detail_for_template($rr){ 'alt_text' => $alt_text, 'dir_icon' => $dir_icon, 'thumb' => proxy_url($rr['thumb'], false, PROXY_SIZE_THUMB), - 'name' => $rr['name'], - 'username' => $rr['name'], + 'name' => htmlentities($rr['name']), + 'username' => htmlentities($rr['name']), 'sparkle' => $sparkle, 'itemurl' => $rr['url'], 'url' => $url, diff --git a/mod/crepair.php b/mod/crepair.php index 457a06685d..686be3948f 100644 --- a/mod/crepair.php +++ b/mod/crepair.php @@ -24,7 +24,7 @@ function crepair_init(&$a) { $a->data['contact'] = $r[0]; $tpl = get_markup_template("vcard-widget.tpl"); $vcard_widget .= replace_macros($tpl, array( - '$name' => $a->data['contact']['name'], + '$name' => htmlentities($a->data['contact']['name']), '$photo' => $a->data['contact']['photo'] )); $a->page['aside'] .= $vcard_widget; @@ -179,8 +179,8 @@ function crepair_content(&$a) { '$label_remote_self' => t('Remote Self'), '$allow_remote_self' => $allow_remote_self, '$remote_self' => array('remote_self', t('Mirror postings from this contact'), $contact['remote_self'], t('Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'), $remote_self_options), - '$contact_name' => $contact['name'], - '$contact_nick' => $contact['nick'], + '$contact_name' => htmlentities($contact['name']), + '$contact_nick' => htmlentities($contact['nick']), '$contact_id' => $contact['id'], '$contact_url' => $contact['url'], '$request' => $contact['request'], diff --git a/mod/network.php b/mod/network.php index a92e0c691b..3d14455cdf 100644 --- a/mod/network.php +++ b/mod/network.php @@ -568,14 +568,14 @@ function network_content(&$a, $update = 0) { intval($cid) ); if(count($r)) { - $sql_post_table = " INNER JOIN (SELECT DISTINCT(`parent`) FROM `item` - WHERE 1 $sql_options AND `contact-id` = ".intval($cid)." and deleted = 0 - ORDER BY `item`.`received` DESC) AS `temp1` + $sql_post_table = " INNER JOIN (SELECT DISTINCT(`parent`) FROM `item` + WHERE 1 $sql_options AND `contact-id` = ".intval($cid)." and deleted = 0 + ORDER BY `item`.`received` DESC) AS `temp1` ON $sql_table.$sql_parent = `temp1`.`parent` "; $sql_extra = ""; $o = replace_macros(get_markup_template("section_title.tpl"),array( - '$title' => sprintf( t('Contact: %s'), $r[0]['name']) + '$title' => sprintf( t('Contact: %s'), htmlentities($r[0]['name'])) )) . $o; if($r[0]['network'] === NETWORK_OSTATUS && $r[0]['writable'] && (! get_pconfig(local_user(),'system','nowarn_insecure'))) { diff --git a/mod/viewcontacts.php b/mod/viewcontacts.php index 19bf0415c7..a6bf74b288 100644 --- a/mod/viewcontacts.php +++ b/mod/viewcontacts.php @@ -63,8 +63,8 @@ function viewcontacts_content(&$a) { 'id' => $rr['id'], 'img_hover' => sprintf( t('Visit %s\'s profile [%s]'), $rr['name'], $rr['url']), 'thumb' => proxy_url($rr['thumb'], false, PROXY_SIZE_THUMB), - 'name' => substr($rr['name'],0,20), - 'username' => $rr['name'], + 'name' => htmlentities(substr($rr['name'],0,20)), + 'username' => htmlentities($rr['name']), 'url' => $url, 'sparkle' => '', 'itemurl' => $rr['url'], diff --git a/object/Item.php b/object/Item.php index 0dc4f41985..cc6d08ec2b 100644 --- a/object/Item.php +++ b/object/Item.php @@ -134,7 +134,7 @@ class Item extends BaseObject { $filer = (($conv->get_profile_owner() == local_user()) ? t("save to folder") : false); $diff_author = ((link_compare($item['url'],$item['author-link'])) ? false : true); - $profile_name = (((strlen($item['author-name'])) && $diff_author) ? $item['author-name'] : $item['name']); + $profile_name = htmlentities(((strlen($item['author-name'])) && $diff_author) ? $item['author-name'] : $item['name']); if($item['author-link'] && (! $item['author-name'])) $profile_name = $item['author-link']; diff --git a/view/theme/vier/theme.php b/view/theme/vier/theme.php index ff06b63030..e1a75b9512 100644 --- a/view/theme/vier/theme.php +++ b/view/theme/vier/theme.php @@ -84,7 +84,8 @@ function cmtBbClose(id) { EOT; // Hide the left menu bar - if (($a->page['aside'] == "") AND in_array($a->argv[0], array("community", "events", "help", "manage", "notifications", "probe", "webfinger", "login"))) + if (($a->page['aside'] == "") AND in_array($a->argv[0], array("community", "events", "help", "manage", "notifications", + "probe", "webfinger", "login", "invite"))) $a->page['htmlhead'] .= ""; } From d2d084b8144e1fb9e937bf8a09953c14fb7a24c7 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Thu, 8 Oct 2015 18:35:33 +0200 Subject: [PATCH 074/443] treat attendance as like activity --- include/items.php | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/include/items.php b/include/items.php index 0d442e3170..a5d2c36911 100644 --- a/include/items.php +++ b/include/items.php @@ -2751,7 +2751,11 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) $datarray['parent-uri'] = $parent_uri; $datarray['uid'] = $importer['uid']; $datarray['contact-id'] = $contact['id']; - if((activity_match($datarray['verb'],ACTIVITY_LIKE)) || (activity_match($datarray['verb'],ACTIVITY_DISLIKE))) { + if(($datarray['verb'] === ACTIVITY_LIKE) + || ($datarray['verb'] === ACTIVITY_DISLIKE) + || ($datarray['verb'] === ACTIVITY_ATTEND) + || ($datarray['verb'] === ACTIVITY_ATTENDNO) + || ($datarray['verb'] === ACTIVITY_ATTENDMAYBE)) { $datarray['type'] = 'activity'; $datarray['gravity'] = GRAVITY_LIKE; // only one like or dislike per person @@ -3738,7 +3742,11 @@ function local_delivery($importer,$data) { $datarray['owner-avatar'] = $own[0]['thumb']; $datarray['contact-id'] = $importer['id']; - if(($datarray['verb'] === ACTIVITY_LIKE) || ($datarray['verb'] === ACTIVITY_DISLIKE)) { + if(($datarray['verb'] === ACTIVITY_LIKE) + || ($datarray['verb'] === ACTIVITY_DISLIKE) + || ($datarray['verb'] === ACTIVITY_ATTEND) + || ($datarray['verb'] === ACTIVITY_ATTENDNO) + || ($datarray['verb'] === ACTIVITY_ATTENDMAYBE)) { $is_like = true; $datarray['type'] = 'activity'; $datarray['gravity'] = GRAVITY_LIKE; @@ -3927,7 +3935,11 @@ function local_delivery($importer,$data) { $datarray['parent-uri'] = $parent_uri; $datarray['uid'] = $importer['importer_uid']; $datarray['contact-id'] = $importer['id']; - if(($datarray['verb'] == ACTIVITY_LIKE) || ($datarray['verb'] == ACTIVITY_DISLIKE)) { + if(($datarray['verb'] === ACTIVITY_LIKE) + || ($datarray['verb'] === ACTIVITY_DISLIKE) + || ($datarray['verb'] === ACTIVITY_ATTEND) + || ($datarray['verb'] === ACTIVITY_ATTENDNO) + || ($datarray['verb'] === ACTIVITY_ATTENDMAYBE)) { $datarray['type'] = 'activity'; $datarray['gravity'] = GRAVITY_LIKE; // only one like or dislike per person From 6a9ec1487829003f77079ec7efcf7df1d41445ce Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Thu, 8 Oct 2015 20:26:11 +0200 Subject: [PATCH 075/443] small bugfix in like.php --- mod/like.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/like.php b/mod/like.php index 4f6d6cd6d7..90782687d3 100755 --- a/mod/like.php +++ b/mod/like.php @@ -166,7 +166,7 @@ function like_content(&$a) { $uri = item_new_uri($a->get_hostname(),$owner_uid); $post_type = (($item['resource-id']) ? t('photo') : t('status')); - if($item['resource-type'] === 'event') + if($item['obj_type'] === ACTIVITY_OBJ_EVENT) $post_type = t('event'); $objtype = (($item['resource-id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE ); $link = xmlify('' . "\n") ; From ba1207e6e1a69570da9a4f91121defc9d81a9a6e Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Thu, 8 Oct 2015 22:23:09 +0200 Subject: [PATCH 076/443] translate attendance with localize_item() --- include/conversation.php | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/include/conversation.php b/include/conversation.php index c4605cf5d1..5bc6525b72 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -100,7 +100,11 @@ function localize_item(&$item){ $item['body'] = item_redir_and_replace_images($extracted['body'], $extracted['images'], $item['contact-id']); $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">"; - if (activity_match($item['verb'],ACTIVITY_LIKE) || activity_match($item['verb'],ACTIVITY_DISLIKE)){ + if (activity_match($item['verb'],ACTIVITY_LIKE) + || activity_match($item['verb'],ACTIVITY_DISLIKE) + || activity_match($item['verb'],ACTIVITY_ATTEND) + || activity_match($item['verb'],ACTIVITY_ATTENDNO) + || activity_match($item['verb'],ACTIVITY_ATTENDMAYBE)){ $r = q("SELECT * from `item`,`contact` WHERE `item`.`contact-id`=`contact`.`id` AND `item`.`uri`='%s';", @@ -139,6 +143,15 @@ function localize_item(&$item){ elseif(activity_match($item['verb'],ACTIVITY_DISLIKE)) { $bodyverb = t('%1$s doesn\'t like %2$s\'s %3$s'); } + elseif(activity_match($item['verb'],ACTIVITY_ATTEND)) { + $bodyverb = t('%1$s attends %2$s\'s %3$s'); + } + elseif(activity_match($item['verb'],ACTIVITY_ATTENDNO)) { + $bodyverb = t('%1$s doesn\'t attend %2$s\'s %3$s'); + } + elseif(activity_match($item['verb'],ACTIVITY_ATTENDMAYBE)) { + $bodyverb = t('%1$s attends maybe %2$s\'s %3$s'); + } $item['body'] = sprintf($bodyverb, $author, $objauthor, $plink); } From 16da708e071bb2a41024c4268d963938f850dfb9 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 9 Oct 2015 07:39:38 +0200 Subject: [PATCH 077/443] Contact names with ">" and "<" are a problem ... --- include/conversation.php | 4 ++-- include/items.php | 8 ++++---- mod/dirfind.php | 2 +- object/Item.php | 14 ++++++++++---- 4 files changed, 17 insertions(+), 11 deletions(-) diff --git a/include/conversation.php b/include/conversation.php index bbb0b921a3..cdcc560108 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -942,7 +942,7 @@ function like_puller($a,$item,&$arr,$mode) { $arr[$item['thr-parent']] = 1; else $arr[$item['thr-parent']] ++; - $arr[$item['thr-parent'] . '-l'][] = '' . $item['author-name'] . ''; + $arr[$item['thr-parent'] . '-l'][] = '' . htmlentities($item['author-name']) . ''; } return; }} @@ -958,7 +958,7 @@ if(! function_exists('format_like')) { function format_like($cnt,$arr,$type,$id) { $o = ''; if($cnt == 1) - $o .= (($type === 'like') ? sprintf( t('%s likes this.'), $arr[0]) : sprintf( t('%s doesn\'t like this.'), $arr[0])) . EOL ; + $o .= (($type === 'like') ? sprintf( t('%s likes this.'), $arr[0]) : sprintf( t('%s doesn\'t like this.'), $arr[0])) . EOL; else { $spanatts = "class=\"fakelink\" onclick=\"openClose('{$type}list-$id');\""; switch($type) { diff --git a/include/items.php b/include/items.php index 8691ccca49..04a0ed8cf1 100644 --- a/include/items.php +++ b/include/items.php @@ -1239,10 +1239,10 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa $arr['guid'] = ((x($arr,'guid')) ? notags(trim($arr['guid'])) : get_guid(32, $guid_prefix)); $arr['uri'] = ((x($arr,'uri')) ? notags(trim($arr['uri'])) : $arr['guid']); $arr['extid'] = ((x($arr,'extid')) ? notags(trim($arr['extid'])) : ''); - $arr['author-name'] = ((x($arr,'author-name')) ? notags(trim($arr['author-name'])) : ''); + $arr['author-name'] = ((x($arr,'author-name')) ? trim($arr['author-name']) : ''); $arr['author-link'] = ((x($arr,'author-link')) ? notags(trim($arr['author-link'])) : ''); $arr['author-avatar'] = ((x($arr,'author-avatar')) ? notags(trim($arr['author-avatar'])) : ''); - $arr['owner-name'] = ((x($arr,'owner-name')) ? notags(trim($arr['owner-name'])) : ''); + $arr['owner-name'] = ((x($arr,'owner-name')) ? trim($arr['owner-name']) : ''); $arr['owner-link'] = ((x($arr,'owner-link')) ? notags(trim($arr['owner-link'])) : ''); $arr['owner-avatar'] = ((x($arr,'owner-avatar')) ? notags(trim($arr['owner-avatar'])) : ''); $arr['created'] = ((x($arr,'created') !== false) ? datetime_convert('UTC','UTC',$arr['created']) : datetime_convert()); @@ -1250,8 +1250,8 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa $arr['commented'] = ((x($arr,'commented') !== false) ? datetime_convert('UTC','UTC',$arr['commented']) : datetime_convert()); $arr['received'] = ((x($arr,'received') !== false) ? datetime_convert('UTC','UTC',$arr['received']) : datetime_convert()); $arr['changed'] = ((x($arr,'changed') !== false) ? datetime_convert('UTC','UTC',$arr['changed']) : datetime_convert()); - $arr['title'] = ((x($arr,'title')) ? notags(trim($arr['title'])) : ''); - $arr['location'] = ((x($arr,'location')) ? notags(trim($arr['location'])) : ''); + $arr['title'] = ((x($arr,'title')) ? trim($arr['title']) : ''); + $arr['location'] = ((x($arr,'location')) ? trim($arr['location']) : ''); $arr['coord'] = ((x($arr,'coord')) ? notags(trim($arr['coord'])) : ''); $arr['last-child'] = ((x($arr,'last-child')) ? intval($arr['last-child']) : 0 ); $arr['visible'] = ((x($arr,'visible') !== false) ? intval($arr['visible']) : 1 ); diff --git a/mod/dirfind.php b/mod/dirfind.php index 4156d3b1cf..0c2505361e 100644 --- a/mod/dirfind.php +++ b/mod/dirfind.php @@ -139,7 +139,7 @@ function dirfind_content(&$a, $prefix = "") { $o .= replace_macros($tpl,array( '$url' => zrl($jj->url), - '$name' => $jj->name, + '$name' => htmlentities($jj->name), '$photo' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB), '$tags' => $jj->tags, '$conntxt' => $conntxt, diff --git a/object/Item.php b/object/Item.php index cc6d08ec2b..63fa43d3e2 100644 --- a/object/Item.php +++ b/object/Item.php @@ -235,6 +235,8 @@ class Item extends BaseObject { if ($shareable) $buttons['share'] = array( t('Share this'), t('share')); } + $comment = $this->get_comment_box($indent); + if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0){ $shiny = 'shiny'; } @@ -304,6 +306,10 @@ class Item extends BaseObject { !diaspora_is_redmatrix($item["owner-link"]) AND isset($buttons["like"])) unset($buttons["like"]); + // Diaspora doesn't has multithreaded comments + if (($item["item_network"] == NETWORK_DIASPORA) AND ($indent == 'comment')) + unset($comment); + // Facebook can like comments - but it isn't programmed in the connector yet. if (($item["item_network"] == NETWORK_FACEBOOK) AND ($indent == 'comment') AND isset($buttons["like"])) unset($buttons["like"]); @@ -326,7 +332,7 @@ class Item extends BaseObject { 'id' => $this->get_id(), 'guid' => urlencode($item['guid']), 'linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])), - 'olinktitle' => sprintf( t('View %s\'s profile @ %s'), $this->get_owner_name(), ((strlen($item['owner-link'])) ? $item['owner-link'] : $item['url'])), + 'olinktitle' => sprintf( t('View %s\'s profile @ %s'), htmlentities($this->get_owner_name()), ((strlen($item['owner-link'])) ? $item['owner-link'] : $item['url'])), 'to' => t('to'), 'via' => t('via'), 'wall' => t('Wall-to-Wall'), @@ -348,7 +354,7 @@ class Item extends BaseObject { 'shiny' => $shiny, 'owner_url' => $this->get_owner_url(), 'owner_photo' => proxy_url($this->get_owner_photo(), false, PROXY_SIZE_THUMB), - 'owner_name' => $owner_name_e, + 'owner_name' => htmlentities($owner_name_e), 'plink' => get_plink($item), 'edpost' => ((feature_enabled($conv->get_profile_owner(),'edit_posts')) ? $edpost : ''), 'isstarred' => $isstarred, @@ -361,7 +367,7 @@ class Item extends BaseObject { 'like' => $like, 'dislike' => $dislike, 'switchcomment' => t('Comment'), - 'comment' => $this->get_comment_box($indent), + 'comment' => $comment, 'previewing' => ($conv->is_preview() ? ' preview ' : ''), 'wait' => t('Please wait'), 'thread_level' => $thread_level, @@ -523,7 +529,7 @@ class Item extends BaseObject { */ public function set_conversation($conv) { $previous_mode = ($this->conversation ? $this->conversation->get_mode() : ''); - + $this->conversation = $conv; // Set it on our children too From d85d215bb86a7777467727fa4564b3018e4632eb Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Fri, 9 Oct 2015 13:46:08 +0200 Subject: [PATCH 078/443] attendance update in network stream --- mod/network.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mod/network.php b/mod/network.php index a92e0c691b..9daec49761 100644 --- a/mod/network.php +++ b/mod/network.php @@ -732,7 +732,10 @@ function network_content(&$a, $update = 0) { // Fetch a page full of parent items for this page if($update) { if (!get_config("system", "like_no_comment")) - $sql_extra4 = "(`item`.`deleted` = 0 OR `item`.`verb` = '".ACTIVITY_LIKE."' OR `item`.`verb` = '".ACTIVITY_DISLIKE."')"; + $sql_extra4 = "(`item`.`deleted` = 0 + OR `item`.`verb` = '".ACTIVITY_LIKE."' OR `item`.`verb` = '".ACTIVITY_DISLIKE."' + OR `item`.`verb` = '".ACTIVITY_ATTEND."' OR `item`.`verb` = '".ACTIVITY_ATTENDNO."' + OR `item`.`verb` = '".ACTIVITY_ATTENDMAYBE."')"; else $sql_extra4 = "`item`.`deleted` = 0 AND `item`.`verb` = '".ACTIVITY_POST."'"; From 0eae67ea48dbce33f0037bc1f77aa71c42f2df02 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Fri, 9 Oct 2015 14:20:01 +0200 Subject: [PATCH 079/443] update attendance state on profile wall --- include/conversation.php | 6 +++--- include/items.php | 14 +++++++------- mod/network.php | 6 +++--- mod/profile.php | 6 ++++-- 4 files changed, 17 insertions(+), 15 deletions(-) diff --git a/include/conversation.php b/include/conversation.php index 5bc6525b72..fd03f4b788 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -101,9 +101,9 @@ function localize_item(&$item){ $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">"; if (activity_match($item['verb'],ACTIVITY_LIKE) - || activity_match($item['verb'],ACTIVITY_DISLIKE) - || activity_match($item['verb'],ACTIVITY_ATTEND) - || activity_match($item['verb'],ACTIVITY_ATTENDNO) + || activity_match($item['verb'],ACTIVITY_DISLIKE) + || activity_match($item['verb'],ACTIVITY_ATTEND) + || activity_match($item['verb'],ACTIVITY_ATTENDNO) || activity_match($item['verb'],ACTIVITY_ATTENDMAYBE)){ $r = q("SELECT * from `item`,`contact` WHERE diff --git a/include/items.php b/include/items.php index a5d2c36911..ad41a0380d 100644 --- a/include/items.php +++ b/include/items.php @@ -2751,9 +2751,9 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) $datarray['parent-uri'] = $parent_uri; $datarray['uid'] = $importer['uid']; $datarray['contact-id'] = $contact['id']; - if(($datarray['verb'] === ACTIVITY_LIKE) - || ($datarray['verb'] === ACTIVITY_DISLIKE) - || ($datarray['verb'] === ACTIVITY_ATTEND) + if(($datarray['verb'] === ACTIVITY_LIKE) + || ($datarray['verb'] === ACTIVITY_DISLIKE) + || ($datarray['verb'] === ACTIVITY_ATTEND) || ($datarray['verb'] === ACTIVITY_ATTENDNO) || ($datarray['verb'] === ACTIVITY_ATTENDMAYBE)) { $datarray['type'] = 'activity'; @@ -3743,8 +3743,8 @@ function local_delivery($importer,$data) { $datarray['contact-id'] = $importer['id']; if(($datarray['verb'] === ACTIVITY_LIKE) - || ($datarray['verb'] === ACTIVITY_DISLIKE) - || ($datarray['verb'] === ACTIVITY_ATTEND) + || ($datarray['verb'] === ACTIVITY_DISLIKE) + || ($datarray['verb'] === ACTIVITY_ATTEND) || ($datarray['verb'] === ACTIVITY_ATTENDNO) || ($datarray['verb'] === ACTIVITY_ATTENDMAYBE)) { $is_like = true; @@ -3936,8 +3936,8 @@ function local_delivery($importer,$data) { $datarray['uid'] = $importer['importer_uid']; $datarray['contact-id'] = $importer['id']; if(($datarray['verb'] === ACTIVITY_LIKE) - || ($datarray['verb'] === ACTIVITY_DISLIKE) - || ($datarray['verb'] === ACTIVITY_ATTEND) + || ($datarray['verb'] === ACTIVITY_DISLIKE) + || ($datarray['verb'] === ACTIVITY_ATTEND) || ($datarray['verb'] === ACTIVITY_ATTENDNO) || ($datarray['verb'] === ACTIVITY_ATTENDMAYBE)) { $datarray['type'] = 'activity'; diff --git a/mod/network.php b/mod/network.php index 9daec49761..9389c07e1b 100644 --- a/mod/network.php +++ b/mod/network.php @@ -732,9 +732,9 @@ function network_content(&$a, $update = 0) { // Fetch a page full of parent items for this page if($update) { if (!get_config("system", "like_no_comment")) - $sql_extra4 = "(`item`.`deleted` = 0 - OR `item`.`verb` = '".ACTIVITY_LIKE."' OR `item`.`verb` = '".ACTIVITY_DISLIKE."' - OR `item`.`verb` = '".ACTIVITY_ATTEND."' OR `item`.`verb` = '".ACTIVITY_ATTENDNO."' + $sql_extra4 = "(`item`.`deleted` = 0 + OR `item`.`verb` = '".ACTIVITY_LIKE."' OR `item`.`verb` = '".ACTIVITY_DISLIKE."' + OR `item`.`verb` = '".ACTIVITY_ATTEND."' OR `item`.`verb` = '".ACTIVITY_ATTENDNO."' OR `item`.`verb` = '".ACTIVITY_ATTENDMAYBE."')"; else $sql_extra4 = "`item`.`deleted` = 0 AND `item`.`verb` = '".ACTIVITY_POST."'"; diff --git a/mod/profile.php b/mod/profile.php index 608971d08d..b7b76cbb5b 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -221,8 +221,10 @@ function profile_content(&$a, $update = 0) { FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND - (`item`.`deleted` = 0 OR item.verb = '" . ACTIVITY_LIKE ."' OR item.verb = '" . ACTIVITY_DISLIKE . "') - and `item`.`moderated` = 0 and `item`.`unseen` = 1 + (`item`.`deleted` = 0 OR item.verb = '" . ACTIVITY_LIKE ."' + OR item.verb = '" . ACTIVITY_DISLIKE . "' OR item.verb = '" . ACTIVITY_ATTEND . "' + OR item.verb = '" . ACTIVITY_ATTENDNO . "' OR item.verb = '" . ACTIVITY_ATTENDMAYBE . "') + AND `item`.`moderated` = 0 and `item`.`unseen` = 1 AND `item`.`wall` = 1 $sql_extra ORDER BY `item`.`created` DESC", From 1c21401751d28d1f6cbcae0611cf072cf1a5de50 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 9 Oct 2015 23:27:00 +0200 Subject: [PATCH 080/443] acl lookup now works fine as well. --- include/acl_selectors.php | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/include/acl_selectors.php b/include/acl_selectors.php index 05856bd217..a1154399a7 100644 --- a/include/acl_selectors.php +++ b/include/acl_selectors.php @@ -392,7 +392,6 @@ function acl_lookup(&$a, $out_type = 'json') { if(!local_user()) return ""; - $start = (x($_REQUEST,'start')?$_REQUEST['start']:0); $count = (x($_REQUEST,'count')?$_REQUEST['count']:100); $search = (x($_REQUEST,'search')?$_REQUEST['search']:""); @@ -492,7 +491,7 @@ function acl_lookup(&$a, $out_type = 'json') { $groups[] = array( "type" => "g", "photo" => "images/twopeople.png", - "name" => $g['name'], + "name" => htmlentities($g['name']), "id" => intval($g['id']), "uids" => array_map("intval", explode(",",$g['uids'])), "link" => '', @@ -547,7 +546,7 @@ function acl_lookup(&$a, $out_type = 'json') { foreach($r as $g) { $x['photos'][] = proxy_url($g['micro'], false, PROXY_SIZE_MICRO); $x['links'][] = $g['url']; - $x['suggestions'][] = $g['name']; + $x['suggestions'][] = htmlentities($g['name']); $x['data'][] = intval($g['id']); } } @@ -560,11 +559,11 @@ function acl_lookup(&$a, $out_type = 'json') { $contacts[] = array( "type" => "c", "photo" => proxy_url($g['micro'], false, PROXY_SIZE_MICRO), - "name" => $g['name'], + "name" => htmlentities($g['name']), "id" => intval($g['id']), "network" => $g['network'], "link" => $g['url'], - "nick" => ($g['attag']) ? $g['attag'] : $g['nick'], + "nick" => htmlentities(($g['attag']) ? $g['attag'] : $g['nick']), "forum" => $g['forum'] ); } @@ -605,11 +604,11 @@ function acl_lookup(&$a, $out_type = 'json') { $unknow_contacts[] = array( "type" => "c", "photo" => proxy_url($row['author-avatar'], false, PROXY_SIZE_MICRO), - "name" => $row['author-name'], + "name" => htmlentities($row['author-name']), "id" => '', "network" => "unknown", "link" => $row['author-link'], - "nick" => $nick, + "nick" => htmlentities($nick), "forum" => false ); } From ab0fbc3a65594880450f90b1dc5131e1d94577ce Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 10 Oct 2015 04:56:40 +0200 Subject: [PATCH 081/443] Bugfix: Unidirectional Diaspora connect request have to be followers - not sharers --- mod/dfrn_confirm.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/dfrn_confirm.php b/mod/dfrn_confirm.php index 1cc258853b..d5dbab951e 100644 --- a/mod/dfrn_confirm.php +++ b/mod/dfrn_confirm.php @@ -382,7 +382,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) { if($duplex) $new_relation = CONTACT_IS_FRIEND; else - $new_relation = CONTACT_IS_SHARING; + $new_relation = CONTACT_IS_FOLLOWER; if($new_relation != CONTACT_IS_FOLLOWER) $writable = 1; From efbdb57f926dc840a162ac960f5a1f3b0fdf0353 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 10 Oct 2015 11:06:18 +0200 Subject: [PATCH 082/443] Reworked contact relations between Friendica and Diaspora --- include/conversation.php | 3 ++- include/diaspora.php | 4 ++-- include/follow.php | 10 ++-------- mod/contacts.php | 6 ++++++ view/templates/contact_edit.tpl | 3 +++ 5 files changed, 15 insertions(+), 11 deletions(-) diff --git a/include/conversation.php b/include/conversation.php index bbb0b921a3..92afcaa1f6 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -897,7 +897,8 @@ function item_photo_menu($item){ if ($a->contacts[$clean_url]['network'] === NETWORK_DFRN) $menu[t("Poke")] = $poke_link; - if (($cid == 0) AND in_array($item['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) + if (($cid == 0) AND + in_array($item['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) $menu[t("Connect/Follow")] = $a->get_baseurl($ssl_state)."/follow?url=".urlencode($item['author-link']); $args = array('item' => $item, 'menu' => $menu); diff --git a/include/diaspora.php b/include/diaspora.php index 61a0dfc3cf..757cf1a6ba 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -592,7 +592,7 @@ function diaspora_request($importer,$xml) { // perhaps we were already sharing with this person. Now they're sharing with us. // That makes us friends. - if($contact['rel'] == CONTACT_IS_FOLLOWER && !in_array($importer['page-flags'], array(PAGE_COMMUNITY, PAGE_SOAPBOX))) { + if($contact['rel'] == CONTACT_IS_FOLLOWER && in_array($importer['page-flags'], array(PAGE_FREELOVE))) { q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d", intval(CONTACT_IS_FRIEND), intval($contact['id']), @@ -774,7 +774,7 @@ function diaspora_post_allow($importer,$contact, $is_comment = false) { // perhaps we were already sharing with this person. Now they're sharing with us. // That makes us friends. // Normally this should have handled by getting a request - but this could get lost - if($contact['rel'] == CONTACT_IS_FOLLOWER && !in_array($importer['page-flags'], array(PAGE_COMMUNITY, PAGE_SOAPBOX))) { + if($contact['rel'] == CONTACT_IS_FOLLOWER && in_array($importer['page-flags'], array(PAGE_FREELOVE))) { q("UPDATE `contact` SET `rel` = %d, `writable` = 1 WHERE `id` = %d AND `uid` = %d", intval(CONTACT_IS_FRIEND), intval($contact['id']), diff --git a/include/follow.php b/include/follow.php index ca0228cc0f..21c05c8f3e 100644 --- a/include/follow.php +++ b/include/follow.php @@ -154,11 +154,7 @@ function new_contact($uid,$url,$interactive = false) { $hidden = (($ret['network'] === NETWORK_MAIL) ? 1 : 0); - if($ret['network'] === NETWORK_MAIL) { - $writeable = 1; - - } - if($ret['network'] === NETWORK_DIASPORA) + if(in_array($ret['network'], array(NETWORK_MAIL, NETWORK_DIASPORA))) $writeable = 1; // check if we already have a contact @@ -215,9 +211,7 @@ function new_contact($uid,$url,$interactive = false) { return $result; } - $new_relation = (($ret['network'] === NETWORK_MAIL) ? CONTACT_IS_FRIEND : CONTACT_IS_SHARING); - if($ret['network'] === NETWORK_DIASPORA) - $new_relation = CONTACT_IS_FOLLOWER; + $new_relation = ((in_array($ret['network'], array(NETWORK_MAIL, NETWORK_DIASPORA))) ? CONTACT_IS_FRIEND : CONTACT_IS_SHARING); // create contact record $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `addr`, `alias`, `batch`, `notify`, `poll`, `poco`, `name`, `nick`, `network`, `pubkey`, `rel`, `priority`, diff --git a/mod/contacts.php b/mod/contacts.php index ee62bf3c9e..c562c9822d 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -590,6 +590,10 @@ function contacts_content(&$a) { if ($contact['network'] == NETWORK_DFRN) $profile_select = contact_profile_assign($contact['profile-id'],(($contact['network'] !== NETWORK_DFRN) ? true : false)); + if (in_array($contact['network'], array(NETWORK_DIASPORA, NETWORK_OSTATUS)) AND + ($contact['rel'] == CONTACT_IS_FOLLOWER)) + $follow = $a->get_baseurl(true)."/follow?url=".urlencode($contact["url"]); + $o .= replace_macros($tpl, array( '$header' => t('Contact Editor'), '$tab_str' => $tab_str, @@ -617,6 +621,8 @@ function contacts_content(&$a) { '$updpub' => t('Update public posts'), '$last_update' => $last_update, '$udnow' => t('Update now'), + '$follow' => $follow, + '$follow_text' => t("Connect/Follow"), '$profile_select' => $profile_select, '$contact_id' => $contact['id'], '$block_text' => (($contact['blocked']) ? t('Unblock') : t('Block') ), diff --git a/view/templates/contact_edit.tpl b/view/templates/contact_edit.tpl index 06141081cb..95e8e5d29a 100644 --- a/view/templates/contact_edit.tpl +++ b/view/templates/contact_edit.tpl @@ -51,6 +51,9 @@ {{if $lblsuggest}}
  • {{$lblsuggest}}
  • {{/if}} + {{if $follow}} +
  • + {{/if}}
    From ba06d659f17c8ea38fd4d4b90f73684670a12bad Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 10 Oct 2015 14:26:07 +0200 Subject: [PATCH 083/443] Bugfix: Feeds weren't imported if a post with the same URI existed. --- include/feed.php | 4 ++-- include/items.php | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/include/feed.php b/include/feed.php index dd360a07b5..f11bb52a1b 100644 --- a/include/feed.php +++ b/include/feed.php @@ -201,8 +201,8 @@ function feed_import($xml,$importer,&$contact, &$hub) { //$item["object"] = $xml; - $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s'", - intval($importer["uid"]), dbesc($item["uri"])); + $r = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' AND `network` = '%s'", + intval($importer["uid"]), dbesc($item["uri"]), dbesc(NETWORK_FEED)); if ($r) { logger("Item with uri ".$item["uri"]." for user ".$importer["uid"]." already existed under id ".$r[0]["id"], LOGGER_DEBUG); continue; diff --git a/include/items.php b/include/items.php index 8691ccca49..1506e737ba 100644 --- a/include/items.php +++ b/include/items.php @@ -1489,9 +1489,10 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa $arr = $unescaped; // find the item we just created - $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d ORDER BY `id` ASC ", + $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d AND `network` = '%s' ORDER BY `id` ASC ", dbesc($arr['uri']), - intval($arr['uid']) + intval($arr['uid']), + dbesc($arr['network']) ); if(count($r)) { From bb0dff2c755a49717a56bf69473b526c1d7871b5 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 10 Oct 2015 16:23:20 +0200 Subject: [PATCH 084/443] Improved contact menu --- boot.php | 2 +- include/conversation.php | 30 +++++++++++++++++------------- mod/dirfind.php | 8 +++++++- 3 files changed, 25 insertions(+), 15 deletions(-) diff --git a/boot.php b/boot.php index b395d3423a..497a87ce9e 100644 --- a/boot.php +++ b/boot.php @@ -1658,7 +1658,7 @@ if(! function_exists('load_contact_links')) { if(! $uid || x($a->contacts,'empty')) return; - $r = q("SELECT `id`,`network`,`url`,`thumb` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `thumb` != ''", + $r = q("SELECT `id`,`network`,`url`,`thumb`, `rel` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `thumb` != ''", intval($uid) ); if(count($r)) { diff --git a/include/conversation.php b/include/conversation.php index bbb0b921a3..1edf794257 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -884,21 +884,25 @@ function item_photo_menu($item){ } - $menu = Array( - t("Follow Thread") => $sub_link, - t("View Status") => $status_link, - t("View Profile") => $profile_link, - t("View Photos") => $photos_link, - t("Network Posts") => $posts_link, - t("Edit Contact") => $contact_url, - t("Send PM") => $pm_url - ); + if (local_user()) { + $menu = Array( + t("Follow Thread") => $sub_link, + t("View Status") => $status_link, + t("View Profile") => $profile_link, + t("View Photos") => $photos_link, + t("Network Posts") => $posts_link, + t("Edit Contact") => $contact_url, + t("Send PM") => $pm_url + ); - if ($a->contacts[$clean_url]['network'] === NETWORK_DFRN) - $menu[t("Poke")] = $poke_link; + if ($a->contacts[$clean_url]['network'] === NETWORK_DFRN) + $menu[t("Poke")] = $poke_link; - if (($cid == 0) AND in_array($item['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) - $menu[t("Connect/Follow")] = $a->get_baseurl($ssl_state)."/follow?url=".urlencode($item['author-link']); + if ((($cid == 0) OR ($a->contacts[$clean_url]['rel'] == CONTACT_IS_FOLLOWER)) AND + in_array($item['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) + $menu[t("Connect/Follow")] = $a->get_baseurl($ssl_state)."/follow?url=".urlencode($item['author-link']); + } else + $menu = array(t("View Profile") => $item['author-link']); $args = array('item' => $item, 'menu' => $menu); diff --git a/mod/dirfind.php b/mod/dirfind.php index 4156d3b1cf..1e4f5539fb 100644 --- a/mod/dirfind.php +++ b/mod/dirfind.php @@ -5,6 +5,11 @@ require_once('include/Contact.php'); function dirfind_init(&$a) { + if(! local_user()) { + notice( t('Permission denied.') . EOL ); + return; + } + if(! x($a->page,'aside')) $a->page['aside'] = ''; @@ -132,7 +137,8 @@ function dirfind_content(&$a, $prefix = "") { } else { $connlnk = $a->get_baseurl().'/follow/?url='.(($jj->connect) ? $jj->connect : $jj->url); $conntxt = t('Connect'); - $photo_menu = array(array(t("Connect/Follow"), $connlnk)); + $photo_menu = array(array(t("View Profile"), zrl($jj->url))); + $photo_menu[] = array(t("Connect/Follow"), $connlnk); } $jj->photo = str_replace("http:///photo/", get_server()."/photo/", $jj->photo); From 199bcdb7a097cb21376f614cb9fb489b0101ba11 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 11 Oct 2015 10:38:05 +0200 Subject: [PATCH 085/443] regenerated messages.po file --- util/messages.po | 10879 +++++++++++++++++++++++---------------------- 1 file changed, 5462 insertions(+), 5417 deletions(-) diff --git a/util/messages.po b/util/messages.po index a6792943bd..ac852f66db 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 3.4.1\n" +"Project-Id-Version: 3.4.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-22 09:58+0200\n" +"POT-Creation-Date: 2015-10-11 10:35+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,270 +18,1181 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" -#: object/Item.php:95 -msgid "This entry was edited" -msgstr "" - -#: object/Item.php:117 mod/photos.php:1379 mod/content.php:622 -msgid "Private Message" -msgstr "" - -#: object/Item.php:121 mod/settings.php:694 mod/content.php:730 -msgid "Edit" -msgstr "" - -#: object/Item.php:130 mod/photos.php:1672 mod/content.php:439 -#: mod/content.php:742 include/conversation.php:612 -msgid "Select" -msgstr "" - -#: object/Item.php:131 mod/admin.php:1087 mod/photos.php:1673 -#: mod/contacts.php:801 mod/settings.php:695 mod/group.php:171 -#: mod/content.php:440 mod/content.php:743 include/conversation.php:613 -msgid "Delete" -msgstr "" - -#: object/Item.php:134 mod/content.php:765 -msgid "save to folder" -msgstr "" - -#: object/Item.php:196 mod/content.php:755 -msgid "add star" -msgstr "" - -#: object/Item.php:197 mod/content.php:756 -msgid "remove star" -msgstr "" - -#: object/Item.php:198 mod/content.php:757 -msgid "toggle star status" -msgstr "" - -#: object/Item.php:201 mod/content.php:760 -msgid "starred" -msgstr "" - -#: 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 mod/ostatus_subscribe.php:69 -msgid "ignored" -msgstr "" - -#: object/Item.php:221 mod/content.php:761 -msgid "add tag" -msgstr "" - -#: object/Item.php:232 mod/photos.php:1561 mod/content.php:686 -msgid "I like this (toggle)" -msgstr "" - -#: object/Item.php:232 mod/content.php:686 -msgid "like" -msgstr "" - -#: object/Item.php:233 mod/photos.php:1562 mod/content.php:687 -msgid "I don't like this (toggle)" -msgstr "" - -#: object/Item.php:233 mod/content.php:687 -msgid "dislike" -msgstr "" - -#: object/Item.php:235 mod/content.php:689 -msgid "Share this" -msgstr "" - -#: object/Item.php:235 mod/content.php:689 -msgid "share" -msgstr "" - -#: object/Item.php:318 include/conversation.php:665 -msgid "Categories:" -msgstr "" - -#: object/Item.php:319 include/conversation.php:666 -msgid "Filed under:" -msgstr "" - -#: object/Item.php:328 object/Item.php:329 mod/content.php:473 -#: mod/content.php:854 mod/content.php:855 include/conversation.php:653 +#: mod/contacts.php:114 #, php-format -msgid "View %s's profile @ %s" -msgstr "" - -#: object/Item.php:330 mod/content.php:856 -msgid "to" -msgstr "" - -#: object/Item.php:331 -msgid "via" -msgstr "" - -#: object/Item.php:332 mod/content.php:857 -msgid "Wall-to-Wall" -msgstr "" - -#: object/Item.php:333 mod/content.php:858 -msgid "via Wall-To-Wall:" -msgstr "" - -#: object/Item.php:342 mod/content.php:483 mod/content.php:866 -#: include/conversation.php:673 -#, php-format -msgid "%s from %s" -msgstr "" - -#: object/Item.php:363 object/Item.php:679 mod/photos.php:1583 -#: mod/photos.php:1627 mod/photos.php:1715 mod/content.php:711 boot.php:764 -msgid "Comment" -msgstr "" - -#: object/Item.php:366 mod/message.php:335 mod/message.php:566 -#: mod/editpost.php:124 mod/wallmessage.php:156 mod/photos.php:1564 -#: mod/content.php:501 mod/content.php:885 include/conversation.php:691 -#: include/conversation.php:1074 -msgid "Please wait" -msgstr "" - -#: object/Item.php:389 mod/content.php:605 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" +msgid "%d contact edited." +msgid_plural "%d contacts edited" msgstr[0] "" msgstr[1] "" -#: object/Item.php:391 object/Item.php:404 mod/content.php:607 -#: include/text.php:2038 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "" - -#: object/Item.php:392 mod/content.php:608 boot.php:765 include/items.php:5147 -#: include/contact_widgets.php:205 -msgid "show more" +#: mod/contacts.php:145 mod/contacts.php:368 +msgid "Could not access contact record." msgstr "" -#: object/Item.php:677 mod/photos.php:1581 mod/photos.php:1625 -#: mod/photos.php:1713 mod/content.php:709 -msgid "This is you" +#: mod/contacts.php:159 +msgid "Could not locate selected profile." msgstr "" -#: object/Item.php:680 mod/fsuggest.php:107 mod/message.php:336 -#: mod/message.php:565 mod/events.php:511 mod/photos.php:1104 -#: mod/photos.php:1223 mod/photos.php:1533 mod/photos.php:1584 -#: mod/photos.php:1628 mod/photos.php:1716 mod/contacts.php:596 -#: mod/invite.php:140 mod/profiles.php:683 mod/manage.php:110 mod/poke.php:199 -#: mod/localtime.php:45 mod/install.php:250 mod/install.php:288 -#: mod/content.php:712 mod/mood.php:137 mod/crepair.php:191 -#: view/theme/diabook/theme.php:633 view/theme/diabook/config.php:148 -#: view/theme/vier/config.php:56 view/theme/dispy/config.php:70 -#: view/theme/duepuntozero/config.php:59 view/theme/quattro/config.php:64 -#: view/theme/cleanzero/config.php:80 -msgid "Submit" +#: mod/contacts.php:192 +msgid "Contact updated." msgstr "" -#: object/Item.php:681 mod/content.php:713 -msgid "Bold" +#: mod/contacts.php:194 mod/dfrn_request.php:576 +msgid "Failed to update contact record." msgstr "" -#: object/Item.php:682 mod/content.php:714 -msgid "Italic" -msgstr "" - -#: object/Item.php:683 mod/content.php:715 -msgid "Underline" -msgstr "" - -#: object/Item.php:684 mod/content.php:716 -msgid "Quote" -msgstr "" - -#: object/Item.php:685 mod/content.php:717 -msgid "Code" -msgstr "" - -#: object/Item.php:686 mod/content.php:718 -msgid "Image" -msgstr "" - -#: object/Item.php:687 mod/content.php:719 -msgid "Link" -msgstr "" - -#: object/Item.php:688 mod/content.php:720 -msgid "Video" -msgstr "" - -#: object/Item.php:689 mod/editpost.php:145 mod/events.php:509 -#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 -#: mod/content.php:721 include/conversation.php:1089 -msgid "Preview" -msgstr "" - -#: index.php:225 mod/apps.php:7 -msgid "You must be logged in to use addons. " -msgstr "" - -#: index.php:269 mod/help.php:42 mod/p.php:16 mod/p.php:25 -msgid "Not Found" -msgstr "" - -#: index.php:272 mod/help.php:45 -msgid "Page not found." -msgstr "" - -#: index.php:381 mod/profperm.php:19 mod/group.php:72 -msgid "Permission denied" -msgstr "" - -#: index.php:382 mod/fsuggest.php:78 mod/files.php:170 -#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 -#: mod/editpost.php:10 mod/dfrn_confirm.php:55 mod/events.php:164 -#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79 -#: mod/wallmessage.php:103 mod/nogroup.php:25 mod/wall_upload.php:70 -#: mod/wall_upload.php:71 mod/api.php:26 mod/api.php:31 mod/photos.php:156 -#: mod/photos.php:1072 mod/register.php:42 mod/attach.php:33 -#: mod/contacts.php:350 mod/follow.php:9 mod/follow.php:44 mod/follow.php:83 -#: mod/uimport.php:23 mod/allfriends.php:9 mod/invite.php:15 -#: mod/invite.php:101 mod/settings.php:20 mod/settings.php:116 -#: mod/settings.php:619 mod/display.php:508 mod/profiles.php:165 -#: mod/profiles.php:615 mod/wall_attach.php:60 mod/wall_attach.php:61 -#: mod/suggest.php:58 mod/repair_ostatus.php:9 mod/manage.php:96 -#: mod/delegate.php:12 mod/viewcontacts.php:24 mod/notes.php:20 -#: mod/poke.php:135 mod/ostatus_subscribe.php:9 mod/profile_photo.php:19 -#: mod/profile_photo.php:169 mod/profile_photo.php:180 -#: mod/profile_photo.php:193 mod/group.php:19 mod/regmod.php:110 -#: mod/item.php:170 mod/item.php:186 mod/mood.php:114 mod/network.php:4 -#: mod/crepair.php:120 include/items.php:5036 +#: mod/contacts.php:350 mod/manage.php:96 mod/display.php:496 +#: mod/profile_photo.php:19 mod/profile_photo.php:169 mod/profile_photo.php:180 +#: mod/profile_photo.php:193 mod/ostatus_subscribe.php:9 mod/follow.php:10 +#: mod/follow.php:54 mod/follow.php:119 mod/item.php:169 mod/item.php:185 +#: 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:69 mod/message.php:39 mod/message.php:175 +#: mod/crepair.php:120 mod/dirfind.php:9 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:621 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:22 mod/poke.php:135 mod/repair_ostatus.php:9 mod/invite.php:15 +#: mod/invite.php:101 mod/photos.php:163 mod/photos.php:1097 mod/regmod.php:110 +#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5075 index.php:382 msgid "Permission denied." msgstr "" -#: index.php:441 -msgid "toggle mobile" +#: mod/contacts.php:389 +msgid "Contact has been blocked" msgstr "" -#: mod/update_notes.php:37 mod/update_profile.php:41 -#: mod/update_community.php:18 mod/update_network.php:25 -#: mod/update_display.php:22 -msgid "[Embedded content - reload page to view]" +#: mod/contacts.php:389 +msgid "Contact has been unblocked" msgstr "" -#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/dfrn_confirm.php:120 +#: 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:439 mod/contacts.php:801 +msgid "Do you really want to delete this contact?" +msgstr "" + +#: mod/contacts.php:441 mod/follow.php:87 mod/message.php:210 +#: mod/settings.php:1076 mod/settings.php:1082 mod/settings.php:1090 +#: mod/settings.php:1094 mod/settings.php:1099 mod/settings.php:1105 +#: mod/settings.php:1111 mod/settings.php:1117 mod/settings.php:1143 +#: mod/settings.php:1144 mod/settings.php:1145 mod/settings.php:1146 +#: mod/settings.php:1147 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:4907 +msgid "Yes" +msgstr "" + +#: mod/contacts.php:444 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:98 +#: mod/videos.php:123 mod/message.php:213 mod/fbrowser.php:89 +#: mod/fbrowser.php:125 mod/settings.php:635 mod/settings.php:661 +#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:148 +#: mod/photos.php:239 mod/photos.php:328 include/conversation.php:1115 +#: include/items.php:4910 +msgid "Cancel" +msgstr "" + +#: mod/contacts.php:456 +msgid "Contact has been removed." +msgstr "" + +#: mod/contacts.php:494 +#, php-format +msgid "You are mutual friends with %s" +msgstr "" + +#: mod/contacts.php:498 +#, php-format +msgid "You are sharing with %s" +msgstr "" + +#: mod/contacts.php:503 +#, php-format +msgid "%s is sharing with you" +msgstr "" + +#: mod/contacts.php:523 +msgid "Private communications are not available for this contact." +msgstr "" + +#: mod/contacts.php:526 mod/admin.php:623 +msgid "Never" +msgstr "" + +#: mod/contacts.php:530 +msgid "(Update was successful)" +msgstr "" + +#: mod/contacts.php:530 +msgid "(Update was not successful)" +msgstr "" + +#: mod/contacts.php:532 +msgid "Suggest friends" +msgstr "" + +#: mod/contacts.php:536 +#, php-format +msgid "Network type: %s" +msgstr "" + +#: mod/contacts.php:539 include/contact_widgets.php:200 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "" +msgstr[1] "" + +#: mod/contacts.php:544 +msgid "View all contacts" +msgstr "" + +#: mod/contacts.php:549 mod/contacts.php:628 mod/contacts.php:804 +#: mod/admin.php:1089 +msgid "Unblock" +msgstr "" + +#: mod/contacts.php:549 mod/contacts.php:628 mod/contacts.php:804 +#: mod/admin.php:1088 +msgid "Block" +msgstr "" + +#: mod/contacts.php:552 +msgid "Toggle Blocked status" +msgstr "" + +#: mod/contacts.php:556 mod/contacts.php:629 mod/contacts.php:805 +msgid "Unignore" +msgstr "" + +#: mod/contacts.php:556 mod/contacts.php:629 mod/contacts.php:805 +#: mod/notifications.php:54 mod/notifications.php:179 mod/notifications.php:259 +msgid "Ignore" +msgstr "" + +#: mod/contacts.php:559 +msgid "Toggle Ignored status" +msgstr "" + +#: mod/contacts.php:564 mod/contacts.php:806 +msgid "Unarchive" +msgstr "" + +#: mod/contacts.php:564 mod/contacts.php:806 +msgid "Archive" +msgstr "" + +#: mod/contacts.php:567 +msgid "Toggle Archive status" +msgstr "" + +#: mod/contacts.php:571 +msgid "Repair" +msgstr "" + +#: mod/contacts.php:574 +msgid "Advanced Contact Settings" +msgstr "" + +#: mod/contacts.php:581 +msgid "Communications lost with this contact!" +msgstr "" + +#: mod/contacts.php:584 +msgid "Fetch further information for feeds" +msgstr "" + +#: mod/contacts.php:585 mod/admin.php:632 +msgid "Disabled" +msgstr "" + +#: mod/contacts.php:585 +msgid "Fetch information" +msgstr "" + +#: mod/contacts.php:585 +msgid "Fetch information and keywords" +msgstr "" + +#: mod/contacts.php:598 +msgid "Contact Editor" +msgstr "" + +#: mod/contacts.php:600 mod/manage.php:110 mod/fsuggest.php:107 +#: mod/message.php:336 mod/message.php:565 mod/crepair.php:191 +#: mod/events.php:566 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:1129 +#: mod/photos.php:1253 mod/photos.php:1571 mod/photos.php:1622 +#: mod/photos.php:1666 mod/photos.php:1754 object/Item.php:686 +#: 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:601 +msgid "Profile Visibility" +msgstr "" + +#: mod/contacts.php:602 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "" + +#: mod/contacts.php:603 +msgid "Contact Information / Notes" +msgstr "" + +#: mod/contacts.php:604 +msgid "Edit contact notes" +msgstr "" + +#: mod/contacts.php:609 mod/contacts.php:844 mod/viewcontacts.php:64 +#: mod/nogroup.php:40 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "" + +#: mod/contacts.php:610 +msgid "Block/Unblock contact" +msgstr "" + +#: mod/contacts.php:611 +msgid "Ignore contact" +msgstr "" + +#: mod/contacts.php:612 +msgid "Repair URL settings" +msgstr "" + +#: mod/contacts.php:613 +msgid "View conversations" +msgstr "" + +#: mod/contacts.php:615 +msgid "Delete contact" +msgstr "" + +#: mod/contacts.php:619 +msgid "Last update:" +msgstr "" + +#: mod/contacts.php:621 +msgid "Update public posts" +msgstr "" + +#: mod/contacts.php:623 mod/admin.php:1590 +msgid "Update now" +msgstr "" + +#: mod/contacts.php:625 mod/dirfind.php:141 include/contact_widgets.php:32 +#: include/conversation.php:903 +msgid "Connect/Follow" +msgstr "" + +#: mod/contacts.php:632 +msgid "Currently blocked" +msgstr "" + +#: mod/contacts.php:633 +msgid "Currently ignored" +msgstr "" + +#: mod/contacts.php:634 +msgid "Currently archived" +msgstr "" + +#: mod/contacts.php:635 mod/notifications.php:172 mod/notifications.php:251 +msgid "Hide this contact from others" +msgstr "" + +#: mod/contacts.php:635 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "" + +#: mod/contacts.php:636 +msgid "Notification for new posts" +msgstr "" + +#: mod/contacts.php:636 +msgid "Send a notification of every new post of this contact" +msgstr "" + +#: mod/contacts.php:639 +msgid "Blacklisted keywords" +msgstr "" + +#: mod/contacts.php:639 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "" + +#: mod/contacts.php:646 mod/follow.php:103 mod/notifications.php:255 +msgid "Profile URL" +msgstr "" + +#: mod/contacts.php:692 +msgid "Suggestions" +msgstr "" + +#: mod/contacts.php:695 +msgid "Suggest potential friends" +msgstr "" + +#: mod/contacts.php:699 mod/group.php:192 +msgid "All Contacts" +msgstr "" + +#: mod/contacts.php:702 +msgid "Show all contacts" +msgstr "" + +#: mod/contacts.php:706 +msgid "Unblocked" +msgstr "" + +#: mod/contacts.php:709 +msgid "Only show unblocked contacts" +msgstr "" + +#: mod/contacts.php:714 +msgid "Blocked" +msgstr "" + +#: mod/contacts.php:717 +msgid "Only show blocked contacts" +msgstr "" + +#: mod/contacts.php:722 +msgid "Ignored" +msgstr "" + +#: mod/contacts.php:725 +msgid "Only show ignored contacts" +msgstr "" + +#: mod/contacts.php:730 +msgid "Archived" +msgstr "" + +#: mod/contacts.php:733 +msgid "Only show archived contacts" +msgstr "" + +#: mod/contacts.php:738 +msgid "Hidden" +msgstr "" + +#: mod/contacts.php:741 +msgid "Only show hidden contacts" +msgstr "" + +#: mod/contacts.php:792 include/text.php:1005 include/nav.php:124 +#: include/nav.php:188 view/theme/diabook/theme.php:125 +msgid "Contacts" +msgstr "" + +#: mod/contacts.php:796 +msgid "Search your contacts" +msgstr "" + +#: mod/contacts.php:797 mod/directory.php:63 +msgid "Finding: " +msgstr "" + +#: mod/contacts.php:798 mod/directory.php:65 include/contact_widgets.php:34 +msgid "Find" +msgstr "" + +#: mod/contacts.php:803 mod/settings.php:146 mod/settings.php:660 +msgid "Update" +msgstr "" + +#: mod/contacts.php:807 mod/group.php:171 mod/admin.php:1087 +#: mod/content.php:440 mod/content.php:743 mod/settings.php:697 +#: mod/photos.php:1711 object/Item.php:131 include/conversation.php:613 +msgid "Delete" +msgstr "" + +#: mod/contacts.php:820 +msgid "Mutual Friendship" +msgstr "" + +#: mod/contacts.php:824 +msgid "is a fan of yours" +msgstr "" + +#: mod/contacts.php:828 +msgid "you are a fan of" +msgstr "" + +#: mod/contacts.php:845 mod/nogroup.php:41 +msgid "Edit contact" +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:381 +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:104 mod/newmember.php:32 include/identity.php:530 +#: include/identity.php:611 include/identity.php:641 include/nav.php:77 +#: view/theme/diabook/theme.php:124 +msgid "Profile" +msgstr "" + +#: mod/profperm.php:106 mod/group.php:222 +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:283 mod/display.php:500 +#: mod/viewsrc.php:15 mod/admin.php:173 mod/admin.php:1132 mod/admin.php:1352 +#: mod/notice.php:15 include/items.php:4866 +msgid "Item not found." +msgstr "" + +#: mod/display.php:211 mod/videos.php:189 mod/viewcontacts.php:19 +#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:93 +#: mod/search.php:99 mod/directory.php:35 mod/photos.php:968 +msgid "Public access denied." +msgstr "" + +#: mod/display.php:331 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "" + +#: mod/display.php:493 +msgid "Item has been removed." +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:22 mod/admin.php:1184 mod/admin.php:1412 +#: mod/settings.php:99 include/nav.php:183 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:696 +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 "" + +#: 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 "" + +#: 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 "" + +#: 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 "" + +#: 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 "" + +#: mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "" + +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 +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:70 mod/photos.php:184 +#: mod/photos.php:767 mod/photos.php:1237 mod/photos.php:1260 +#: mod/photos.php:1843 include/user.php:343 include/user.php:350 +#: include/user.php:357 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 "" + +#: 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 "" + +#: mod/profile_photo.php:144 mod/wall_upload.php:137 mod/photos.php:803 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "" + +#: mod/profile_photo.php:153 mod/wall_upload.php:169 mod/photos.php:843 +msgid "Unable to process image." +msgstr "" + +#: mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "" + +#: mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "" + +#: mod/profile_photo.php:245 +msgid "Upload" +msgstr "" + +#: mod/profile_photo.php:248 +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:202 mod/photos.php:870 +msgid "Image upload failed." +msgstr "" + +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 +#: include/conversation.php:126 include/conversation.php:253 +#: include/text.php:2031 include/diaspora.php:2140 +#: 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:248 include/conversation.php:257 +#: include/diaspora.php:2140 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 "Subsribing 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:214 +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:1027 include/conversation.php:1045 +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:997 +msgid "Save" +msgstr "" + +#: mod/follow.php:27 +msgid "You already added this contact." +msgstr "" + +#: mod/follow.php:35 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "" + +#: mod/follow.php:86 mod/dfrn_request.php:847 +msgid "Please answer the following:" +msgstr "" + +#: mod/follow.php:87 mod/dfrn_request.php:848 +#, php-format +msgid "Does %s know you?" +msgstr "" + +#: mod/follow.php:87 mod/settings.php:1076 mod/settings.php:1082 +#: mod/settings.php:1090 mod/settings.php:1094 mod/settings.php:1099 +#: mod/settings.php:1105 mod/settings.php:1111 mod/settings.php:1117 +#: mod/settings.php:1143 mod/settings.php:1144 mod/settings.php:1145 +#: mod/settings.php:1146 mod/settings.php:1147 mod/dfrn_request.php:848 +#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662 +#: mod/api.php:106 +msgid "No" +msgstr "" + +#: mod/follow.php:88 mod/dfrn_request.php:852 +msgid "Add a personal note:" +msgstr "" + +#: mod/follow.php:94 mod/dfrn_request.php:858 +msgid "Your Identity Address:" +msgstr "" + +#: mod/follow.php:97 mod/dfrn_request.php:861 +msgid "Submit Request" +msgstr "" + +#: mod/follow.php:107 mod/notifications.php:244 mod/events.php:558 +#: mod/directory.php:152 include/identity.php:268 include/bb2diaspora.php:170 +#: include/event.php:42 +msgid "Location:" +msgstr "" + +#: mod/follow.php:109 mod/notifications.php:246 mod/directory.php:160 +#: include/identity.php:277 include/identity.php:582 +msgid "About:" +msgstr "" + +#: mod/follow.php:111 mod/notifications.php:248 include/identity.php:576 +msgid "Tags:" +msgstr "" + +#: mod/follow.php:144 +msgid "Contact added" +msgstr "" + +#: mod/item.php:114 +msgid "Unable to locate original post." +msgstr "" + +#: mod/item.php:322 +msgid "Empty post discarded." +msgstr "" + +#: mod/item.php:461 mod/wall_upload.php:199 mod/wall_upload.php:213 +#: mod/wall_upload.php:220 include/Photo.php:954 include/Photo.php:969 +#: include/Photo.php:976 include/Photo.php:998 include/message.php:145 +msgid "Wall Photos" +msgstr "" + +#: mod/item.php:835 +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 "" + +#: mod/item.php:966 +#, php-format +msgid "You may visit them online at %s" +msgstr "" + +#: 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 "" + +#: 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:273 +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/apps.php:7 index.php:225 +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:134 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:172 +#: include/diaspora.php:636 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "" + +#: mod/dfrn_confirm.php:572 +#, php-format +msgid "No user record found for '%s' " +msgstr "" + +#: 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 "" + +#: 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 "" + +#: mod/dfrn_confirm.php:648 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "" + +#: mod/dfrn_confirm.php: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:732 include/items.php:4289 +msgid "[Name Withheld]" +msgstr "" + +#: mod/dfrn_confirm.php:798 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "" + +#: mod/profile.php:21 include/identity.php:77 +msgid "Requested profile is not available." +msgstr "" + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "" + +#: mod/videos.php:115 +msgid "Do you really want to delete this video?" +msgstr "" + +#: mod/videos.php:120 +msgid "Delete Video" +msgstr "" + +#: mod/videos.php:199 +msgid "No videos selected" +msgstr "" + +#: mod/videos.php:300 mod/photos.php:1079 +msgid "Access to this item is restricted." +msgstr "" + +#: mod/videos.php:375 include/text.php:1457 +msgid "View Video" +msgstr "" + +#: mod/videos.php:382 mod/photos.php:1871 +msgid "View Album" +msgstr "" + +#: mod/videos.php:391 +msgid "Recent Videos" +msgstr "" + +#: mod/videos.php:393 +msgid "Upload New Videos" +msgstr "" + +#: mod/tagger.php:95 include/conversation.php:265 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "" + #: mod/fsuggest.php:63 msgid "Friend suggestion sent." msgstr "" @@ -295,468 +1206,144 @@ msgstr "" msgid "Suggest a friend for %s" msgstr "" -#: mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." +#: 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/dfrn_request.php:120 mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." +#: mod/lostpass.php:19 +msgid "No valid account found." msgstr "" -#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." 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 "" - -#: 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 "" - -#: 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 "" - -#: mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "" - -#: mod/dfrn_request.php:507 include/follow.php:70 -msgid "Disallowed profile URL." -msgstr "" - -#: mod/dfrn_request.php:576 mod/contacts.php:194 -msgid "Failed to update contact record." -msgstr "" - -#: 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:674 mod/dfrn_request.php:691 -msgid "Confirm" -msgstr "" - -#: mod/dfrn_request.php:686 -msgid "Hide this contact" -msgstr "" - -#: mod/dfrn_request.php:689 -#, php-format -msgid "Welcome home %s." -msgstr "" - -#: mod/dfrn_request.php:690 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "" - -#: mod/dfrn_request.php:732 mod/dfrn_confirm.php:753 include/items.php:4250 -msgid "[Name Withheld]" -msgstr "" - -#: mod/dfrn_request.php:777 mod/photos.php:942 mod/videos.php:187 -#: mod/search.php:93 mod/search.php:98 mod/display.php:223 -#: mod/community.php:18 mod/viewcontacts.php:19 mod/directory.php:35 -msgid "Public access denied." -msgstr "" - -#: mod/dfrn_request.php:819 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "" - -#: mod/dfrn_request.php:840 +#: mod/lostpass.php:42 #, 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." +"\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/dfrn_request.php:845 -msgid "Friend/Connection Request" -msgstr "" - -#: mod/dfrn_request.php:846 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "" - -#: mod/dfrn_request.php:847 mod/follow.php:58 -msgid "Please answer the following:" -msgstr "" - -#: mod/dfrn_request.php:848 mod/follow.php:59 -#, php-format -msgid "Does %s know you?" -msgstr "" - -#: mod/dfrn_request.php:848 mod/api.php:106 mod/register.php:236 -#: mod/follow.php:59 mod/settings.php:1068 mod/settings.php:1074 -#: mod/settings.php:1082 mod/settings.php:1086 mod/settings.php:1091 -#: mod/settings.php:1097 mod/settings.php:1103 mod/settings.php:1109 -#: mod/settings.php:1135 mod/settings.php:1136 mod/settings.php:1137 -#: mod/settings.php:1138 mod/settings.php:1139 mod/profiles.php:658 -#: mod/profiles.php:662 -msgid "No" -msgstr "" - -#: mod/dfrn_request.php:848 mod/message.php:210 mod/api.php:105 -#: mod/register.php:235 mod/contacts.php:441 mod/follow.php:59 -#: mod/settings.php:1068 mod/settings.php:1074 mod/settings.php:1082 -#: mod/settings.php:1086 mod/settings.php:1091 mod/settings.php:1097 -#: mod/settings.php:1103 mod/settings.php:1109 mod/settings.php:1135 -#: mod/settings.php:1136 mod/settings.php:1137 mod/settings.php:1138 -#: mod/settings.php:1139 mod/profiles.php:658 mod/profiles.php:661 -#: mod/suggest.php:29 include/items.php:4868 -msgid "Yes" -msgstr "" - -#: mod/dfrn_request.php:852 mod/follow.php:60 -msgid "Add a personal note:" -msgstr "" - -#: mod/dfrn_request.php:854 include/contact_selectors.php:76 -msgid "Friendica" -msgstr "" - -#: mod/dfrn_request.php:855 -msgid "StatusNet/Federated Social Web" -msgstr "" - -#: mod/dfrn_request.php:856 mod/settings.php:793 -#: include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "" - -#: mod/dfrn_request.php:857 +#: mod/lostpass.php:53 #, php-format msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search " -"bar." +"\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/dfrn_request.php:858 mod/follow.php:66 -msgid "Your Identity Address:" -msgstr "" - -#: mod/dfrn_request.php:861 mod/follow.php:69 -msgid "Submit Request" -msgstr "" - -#: mod/dfrn_request.php:862 mod/message.php:213 mod/editpost.php:148 -#: mod/fbrowser.php:89 mod/fbrowser.php:125 mod/photos.php:225 -#: mod/photos.php:314 mod/contacts.php:444 mod/videos.php:121 -#: mod/follow.php:70 mod/tagrm.php:11 mod/tagrm.php:94 mod/settings.php:633 -#: mod/settings.php:659 mod/suggest.php:32 include/items.php:4871 -#: include/conversation.php:1093 -msgid "Cancel" -msgstr "" - -#: mod/files.php:156 mod/videos.php:373 include/text.php:1460 -msgid "View Video" -msgstr "" - -#: mod/profile.php:21 include/identity.php:77 -msgid "Requested profile is not available." -msgstr "" - -#: mod/profile.php:155 mod/display.php:343 -msgid "Access to this profile has been restricted." -msgstr "" - -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "" - -#: mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "" - -#: mod/notifications.php:35 mod/notifications.php:175 -#: mod/notifications.php:234 -msgid "Discard" -msgstr "" - -#: mod/notifications.php:51 mod/notifications.php:174 -#: mod/notifications.php:233 mod/contacts.php:556 mod/contacts.php:623 -#: mod/contacts.php:799 -msgid "Ignore" -msgstr "" - -#: mod/notifications.php:78 -msgid "System" -msgstr "" - -#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 -msgid "Network" -msgstr "" - -#: mod/notifications.php:90 mod/network.php:375 -msgid "Personal" -msgstr "" - -#: mod/notifications.php:96 view/theme/diabook/theme.php:123 -#: include/nav.php:105 include/nav.php:156 -msgid "Home" -msgstr "" - -#: mod/notifications.php:102 include/nav.php:161 -msgid "Introductions" -msgstr "" - -#: mod/notifications.php:127 -msgid "Show Ignored Requests" -msgstr "" - -#: mod/notifications.php:127 -msgid "Hide Ignored Requests" -msgstr "" - -#: mod/notifications.php:159 mod/notifications.php:209 -msgid "Notification type: " -msgstr "" - -#: mod/notifications.php:160 -msgid "Friend Suggestion" -msgstr "" - -#: mod/notifications.php:162 +#: mod/lostpass.php:72 #, php-format -msgid "suggested by %s" +msgid "Password reset requested at %s" msgstr "" -#: mod/notifications.php:167 mod/notifications.php:227 mod/contacts.php:629 -msgid "Hide this contact from others" -msgstr "" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "Post a new friend activity" -msgstr "" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "if applicable" -msgstr "" - -#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1085 -msgid "Approve" -msgstr "" - -#: mod/notifications.php:191 -msgid "Claims to be known to you: " -msgstr "" - -#: mod/notifications.php:191 -msgid "yes" -msgstr "" - -#: mod/notifications.php:191 -msgid "no" -msgstr "" - -#: mod/notifications.php:192 +#: mod/lostpass.php:92 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: " +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -#: mod/notifications.php:195 +#: mod/lostpass.php:109 boot.php:1288 +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 "" -"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: " +"Your password may be changed from the Settings page after " +"successful login." msgstr "" -#: mod/notifications.php:203 -msgid "Friend" -msgstr "" - -#: mod/notifications.php:204 -msgid "Sharer" -msgstr "" - -#: mod/notifications.php:204 -msgid "Fan/Admirer" -msgstr "" - -#: mod/notifications.php:210 -msgid "Friend/Connect Request" -msgstr "" - -#: mod/notifications.php:210 -msgid "New Follower" -msgstr "" - -#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 -#: mod/directory.php:152 include/event.php:42 include/identity.php:268 -#: include/bb2diaspora.php:170 -msgid "Location:" -msgstr "" - -#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 -#: include/identity.php:582 -msgid "About:" -msgstr "" - -#: mod/notifications.php:224 include/identity.php:576 -msgid "Tags:" -msgstr "" - -#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 -#: include/identity.php:541 -msgid "Gender:" -msgstr "" - -#: mod/notifications.php:240 -msgid "No introductions." -msgstr "" - -#: mod/notifications.php:243 include/nav.php:164 -msgid "Notifications" -msgstr "" - -#: mod/notifications.php:281 mod/notifications.php:410 -#: mod/notifications.php:501 +#: mod/lostpass.php:125 #, php-format -msgid "%s liked %s's post" +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/notifications.php:291 mod/notifications.php:420 -#: mod/notifications.php:511 +#: mod/lostpass.php:131 #, php-format -msgid "%s disliked %s's post" +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/notifications.php:306 mod/notifications.php:435 -#: mod/notifications.php:526 +#: mod/lostpass.php:147 #, php-format -msgid "%s is now friends with %s" +msgid "Your password has been changed at %s" msgstr "" -#: mod/notifications.php:313 mod/notifications.php:442 -#, php-format -msgid "%s created a new post" +#: mod/lostpass.php:159 +msgid "Forgot your Password?" msgstr "" -#: mod/notifications.php:314 mod/notifications.php:443 -#: mod/notifications.php:536 -#, php-format -msgid "%s commented on %s's post" +#: 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/notifications.php:329 -msgid "No more network notifications." +#: mod/lostpass.php:161 +msgid "Nickname or Email: " msgstr "" -#: mod/notifications.php:333 -msgid "Network Notifications" +#: mod/lostpass.php:162 +msgid "Reset" msgstr "" -#: mod/notifications.php:359 mod/notify.php:72 -msgid "No more system notifications." -msgstr "" - -#: mod/notifications.php:363 mod/notify.php:76 -msgid "System Notifications" -msgstr "" - -#: mod/notifications.php:458 -msgid "No more personal notifications." -msgstr "" - -#: mod/notifications.php:462 -msgid "Personal Notifications" -msgstr "" - -#: mod/notifications.php:543 -msgid "No more home notifications." -msgstr "" - -#: mod/notifications.php:547 -msgid "Home Notifications" -msgstr "" - -#: mod/like.php:149 mod/tagger.php:62 mod/subthread.php:87 -#: view/theme/diabook/theme.php:471 include/text.php:2034 -#: include/diaspora.php:2134 include/conversation.php:126 -#: include/conversation.php:253 -msgid "photo" -msgstr "" - -#: mod/like.php:149 mod/like.php:319 mod/tagger.php:62 mod/subthread.php:87 -#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 -#: include/diaspora.php:2134 include/conversation.php:121 -#: include/conversation.php:130 include/conversation.php:248 -#: include/conversation.php:257 -msgid "status" -msgstr "" - -#: mod/like.php:166 view/theme/diabook/theme.php:480 include/diaspora.php:2150 -#: include/conversation.php:137 +#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2156 +#: view/theme/diabook/theme.php:480 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "" @@ -766,17 +1353,206 @@ msgstr "" msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." +#: mod/ping.php:233 +msgid "{0} wants to be your friend" msgstr "" -#: mod/openid.php:53 +#: mod/ping.php:248 +msgid "{0} sent you a message" +msgstr "" + +#: mod/ping.php:263 +msgid "{0} requested registration" +msgstr "" + +#: mod/viewcontacts.php:41 +msgid "No contacts." +msgstr "" + +#: mod/viewcontacts.php:78 include/text.php:917 +msgid "View 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:205 include/nav.php:155 +msgid "Network" +msgstr "" + +#: mod/notifications.php:93 mod/network.php:375 +msgid "Personal" +msgstr "" + +#: mod/notifications.php:99 include/nav.php:105 include/nav.php:158 +#: view/theme/diabook/theme.php:123 +msgid "Home" +msgstr "" + +#: mod/notifications.php:105 include/nav.php:163 +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 "" + +#: 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:1085 +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 "" -"Account not found and OpenID registration is not permitted on this site." +"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/openid.php:93 include/auth.php:112 include/auth.php:175 -msgid "Login failed." +#: 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:154 include/identity.php:270 +#: include/identity.php:541 +msgid "Gender:" +msgstr "" + +#: mod/notifications.php:266 +msgid "No introductions." +msgstr "" + +#: mod/notifications.php:269 include/nav.php:166 +msgid "Notifications" +msgstr "" + +#: mod/notifications.php:307 mod/notifications.php:436 +#: mod/notifications.php:527 +#, php-format +msgid "%s liked %s's post" +msgstr "" + +#: mod/notifications.php:317 mod/notifications.php:446 +#: mod/notifications.php:537 +#, php-format +msgid "%s disliked %s's post" +msgstr "" + +#: mod/notifications.php:332 mod/notifications.php:461 +#: mod/notifications.php:552 +#, php-format +msgid "%s is now friends with %s" +msgstr "" + +#: mod/notifications.php:339 mod/notifications.php:468 +#, php-format +msgid "%s created a new post" +msgstr "" + +#: mod/notifications.php:340 mod/notifications.php:469 +#: mod/notifications.php:562 +#, php-format +msgid "%s commented on %s's post" +msgstr "" + +#: 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 @@ -827,6 +1603,290 @@ msgstr "" 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:175 +msgid "New Message" +msgstr "" + +#: mod/message.php:64 mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "" + +#: mod/message.php:68 +msgid "Unable to locate contact information." +msgstr "" + +#: mod/message.php:71 mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "" + +#: 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 "" + +#: mod/message.php:183 include/nav.php:172 +msgid "Messages" +msgstr "" + +#: mod/message.php:208 +msgid "Do you really want to delete this message?" +msgstr "" + +#: mod/message.php:228 +msgid "Message deleted." +msgstr "" + +#: mod/message.php:259 +msgid "Conversation removed." +msgstr "" + +#: 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:1023 include/conversation.php:1041 +msgid "Please enter a link URL:" +msgstr "" + +#: mod/message.php:320 mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "" + +#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 +msgid "To:" +msgstr "" + +#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 +msgid "Subject:" +msgstr "" + +#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 +#: mod/invite.php:134 +msgid "Your message:" +msgstr "" + +#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154 +#: mod/editpost.php:110 include/conversation.php:1078 +msgid "Upload photo" +msgstr "" + +#: mod/message.php:334 mod/message.php:564 mod/wallmessage.php:155 +#: mod/editpost.php:114 include/conversation.php:1082 +msgid "Insert web link" +msgstr "" + +#: 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:1602 object/Item.php:372 include/conversation.php:691 +#: include/conversation.php:1096 +msgid "Please wait" +msgstr "" + +#: mod/message.php:372 +msgid "No messages." +msgstr "" + +#: mod/message.php:379 +#, php-format +msgid "Unknown sender - %s" +msgstr "" + +#: mod/message.php:382 +#, php-format +msgid "You and %s" +msgstr "" + +#: mod/message.php:385 +#, php-format +msgid "%s and You" +msgstr "" + +#: mod/message.php:406 mod/message.php:547 +msgid "Delete conversation" +msgstr "" + +#: mod/message.php:409 +msgid "D, d M Y - g:i A" +msgstr "" + +#: mod/message.php:412 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "" +msgstr[1] "" + +#: mod/message.php:451 +msgid "Message not available." +msgstr "" + +#: mod/message.php:521 +msgid "Delete message" +msgstr "" + +#: 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 "" + +#: 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:107 +msgid "Contact settings applied." +msgstr "" + +#: mod/crepair.php:109 +msgid "Contact update failed." +msgstr "" + +#: mod/crepair.php:140 +msgid "Repair Contact Settings" +msgstr "" + +#: 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 "" + +#: mod/crepair.php:143 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "" + +#: mod/crepair.php:149 +msgid "Return to contact editor" +msgstr "" + +#: 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:1083 mod/admin.php:1095 mod/admin.php:1096 +#: mod/admin.php:1109 mod/settings.php:636 mod/settings.php:662 +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 "" + +#: mod/crepair.php:174 +msgid "Friend Request URL" +msgstr "" + +#: mod/crepair.php:175 +msgid "Friend Confirm URL" +msgstr "" + +#: mod/crepair.php:176 +msgid "Notification Endpoint URL" +msgstr "" + +#: mod/crepair.php:177 +msgid "Poll/Feed URL" +msgstr "" + +#: mod/crepair.php:178 +msgid "New photo from this URL" +msgstr "" + +#: 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:1274 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:42 +#, php-format +msgid "People Search - %s" +msgstr "" + +#: mod/dirfind.php:139 mod/match.php:71 mod/suggest.php:92 +#: include/contact_widgets.php:10 include/identity.php:188 +msgid "Connect" +msgstr "" + +#: mod/dirfind.php:140 include/Contact.php:237 include/conversation.php:891 +#: include/conversation.php:905 +msgid "View Profile" +msgstr "" + +#: mod/dirfind.php:159 mod/match.php:78 +msgid "No matches" +msgstr "" + +#: mod/fbrowser.php:32 include/identity.php:649 include/nav.php:78 +#: view/theme/diabook/theme.php:126 +msgid "Photos" +msgstr "" + +#: mod/fbrowser.php:122 +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 "" @@ -867,7 +1927,7 @@ msgstr "" msgid "check webfinger" msgstr "" -#: mod/admin.php:131 include/nav.php:193 +#: mod/admin.php:131 include/nav.php:195 msgid "Admin" msgstr "" @@ -883,12 +1943,6 @@ msgstr "" msgid "User registrations waiting for confirmation" msgstr "" -#: mod/admin.php:173 mod/admin.php:1132 mod/admin.php:1352 mod/notice.php:15 -#: mod/display.php:82 mod/display.php:295 mod/display.php:512 -#: mod/viewsrc.php:15 include/items.php:4827 -msgid "Item not found." -msgstr "" - #: mod/admin.php:199 mod/admin.php:249 mod/admin.php:686 mod/admin.php:1077 #: mod/admin.php:1181 mod/admin.php:1241 mod/admin.php:1409 mod/admin.php:1443 #: mod/admin.php:1530 @@ -982,7 +2036,7 @@ msgstr "" msgid "Site settings updated." msgstr "" -#: mod/admin.php:599 mod/settings.php:885 +#: mod/admin.php:599 mod/settings.php:887 msgid "No special theme for mobile devices" msgstr "" @@ -998,10 +2052,6 @@ msgstr "" msgid "Global community page" msgstr "" -#: mod/admin.php:623 mod/contacts.php:526 -msgid "Never" -msgstr "" - #: mod/admin.php:624 msgid "At post arrival" msgstr "" @@ -1022,10 +2072,6 @@ msgstr "" msgid "Daily" msgstr "" -#: mod/admin.php:632 mod/contacts.php:585 -msgid "Disabled" -msgstr "" - #: mod/admin.php:634 msgid "Users, Global Contacts" msgstr "" @@ -1079,8 +2125,8 @@ msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "" #: mod/admin.php:688 mod/admin.php:1243 mod/admin.php:1445 mod/admin.php:1532 -#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:786 -#: mod/settings.php:855 mod/settings.php:937 mod/settings.php:1167 +#: mod/settings.php:634 mod/settings.php:744 mod/settings.php:788 +#: mod/settings.php:857 mod/settings.php:943 mod/settings.php:1175 msgid "Save Settings" msgstr "" @@ -1918,11 +2964,6 @@ msgstr "" msgid "Request date" msgstr "" -#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1109 -#: mod/settings.php:634 mod/settings.php:660 mod/crepair.php:170 -msgid "Name" -msgstr "" - #: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1111 #: include/contact_selectors.php:79 include/contact_selectors.php:86 msgid "Email" @@ -1936,16 +2977,6 @@ msgstr "" msgid "Deny" msgstr "" -#: mod/admin.php:1088 mod/contacts.php:549 mod/contacts.php:622 -#: mod/contacts.php:798 -msgid "Block" -msgstr "" - -#: mod/admin.php:1089 mod/contacts.php:549 mod/contacts.php:622 -#: mod/contacts.php:798 -msgid "Unblock" -msgstr "" - #: mod/admin.php:1090 msgid "Site admin" msgstr "" @@ -2028,12 +3059,6 @@ msgstr "" msgid "Toggle" msgstr "" -#: mod/admin.php:1184 mod/admin.php:1412 mod/newmember.php:22 -#: mod/settings.php:99 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:648 include/nav.php:181 -msgid "Settings" -msgstr "" - #: mod/admin.php:1191 mod/admin.php:1421 msgid "Author: " msgstr "" @@ -2084,10 +3109,6 @@ msgstr "" msgid "Log level" msgstr "" -#: mod/admin.php:1590 mod/contacts.php:619 -msgid "Update now" -msgstr "" - #: mod/admin.php:1591 include/acl_selectors.php:347 msgid "Close" msgstr "" @@ -2108,299 +3129,112 @@ msgstr "" msgid "FTP Password" msgstr "" -#: mod/message.php:9 include/nav.php:173 -msgid "New Message" -msgstr "" - -#: mod/message.php:64 mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "" - -#: mod/message.php:68 -msgid "Unable to locate contact information." -msgstr "" - -#: mod/message.php:71 mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "" - -#: 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 "" - -#: mod/message.php:183 include/nav.php:170 -msgid "Messages" -msgstr "" - -#: mod/message.php:208 -msgid "Do you really want to delete this message?" -msgstr "" - -#: mod/message.php:228 -msgid "Message deleted." -msgstr "" - -#: mod/message.php:259 -msgid "Conversation removed." -msgstr "" - -#: 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 "" - -#: mod/message.php:320 mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "" - -#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 -msgid "To:" -msgstr "" - -#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 -msgid "Subject:" -msgstr "" - -#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 -#: mod/invite.php:134 -msgid "Your message:" -msgstr "" - -#: mod/message.php:333 mod/message.php:563 mod/editpost.php:110 -#: mod/wallmessage.php:154 include/conversation.php:1056 -msgid "Upload photo" -msgstr "" - -#: mod/message.php:334 mod/message.php:564 mod/editpost.php:114 -#: mod/wallmessage.php:155 include/conversation.php:1060 -msgid "Insert web link" -msgstr "" - -#: mod/message.php:372 -msgid "No messages." -msgstr "" - -#: mod/message.php:379 +#: mod/network.php:143 #, php-format -msgid "Unknown sender - %s" +msgid "Search Results For: %s" msgstr "" -#: mod/message.php:382 +#: mod/network.php:187 mod/search.php:25 +msgid "Remove term" +msgstr "" + +#: mod/network.php:196 mod/search.php:34 include/features.php:43 +msgid "Saved Searches" +msgstr "" + +#: mod/network.php:197 include/group.php:277 +msgid "add" +msgstr "" + +#: mod/network.php:358 +msgid "Commented Order" +msgstr "" + +#: mod/network.php:361 +msgid "Sort by Comment Date" +msgstr "" + +#: mod/network.php:365 +msgid "Posted Order" +msgstr "" + +#: mod/network.php:368 +msgid "Sort by Post Date" +msgstr "" + +#: mod/network.php:378 +msgid "Posts that mention or involve you" +msgstr "" + +#: mod/network.php:385 +msgid "New" +msgstr "" + +#: mod/network.php:388 +msgid "Activity Stream - by date" +msgstr "" + +#: mod/network.php:395 +msgid "Shared Links" +msgstr "" + +#: mod/network.php:398 +msgid "Interesting Links" +msgstr "" + +#: mod/network.php:405 +msgid "Starred" +msgstr "" + +#: mod/network.php:408 +msgid "Favourite Posts" +msgstr "" + +#: mod/network.php:466 #, php-format -msgid "You and %s" -msgstr "" - -#: mod/message.php:385 -#, php-format -msgid "%s and You" -msgstr "" - -#: mod/message.php:406 mod/message.php:547 -msgid "Delete conversation" -msgstr "" - -#: mod/message.php:409 -msgid "D, d M Y - g:i A" -msgstr "" - -#: mod/message.php:412 -#, php-format -msgid "%d message" -msgid_plural "%d messages" +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/message.php:451 -msgid "Message not available." +#: mod/network.php:469 +msgid "Private messages to this group are at risk of public disclosure." msgstr "" -#: mod/message.php:521 -msgid "Delete message" +#: mod/network.php:532 mod/content.php:119 +msgid "No such group" msgstr "" -#: mod/message.php:549 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." +#: mod/network.php:549 mod/content.php:130 +msgid "Group is empty" msgstr "" -#: mod/message.php:553 -msgid "Send Reply" -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:109 mod/filer.php:31 mod/notes.php:59 include/text.php:997 -msgid "Save" -msgstr "" - -#: mod/editpost.php:111 include/conversation.php:1057 -msgid "upload photo" -msgstr "" - -#: mod/editpost.php:112 include/conversation.php:1058 -msgid "Attach file" -msgstr "" - -#: mod/editpost.php:113 include/conversation.php:1059 -msgid "attach file" -msgstr "" - -#: mod/editpost.php:115 include/conversation.php:1061 -msgid "web link" -msgstr "" - -#: mod/editpost.php:116 include/conversation.php:1062 -msgid "Insert video link" -msgstr "" - -#: mod/editpost.php:117 include/conversation.php:1063 -msgid "video link" -msgstr "" - -#: mod/editpost.php:118 include/conversation.php:1064 -msgid "Insert audio link" -msgstr "" - -#: mod/editpost.php:119 include/conversation.php:1065 -msgid "audio link" -msgstr "" - -#: mod/editpost.php:120 include/conversation.php:1066 -msgid "Set your location" -msgstr "" - -#: mod/editpost.php:121 include/conversation.php:1067 -msgid "set location" -msgstr "" - -#: mod/editpost.php:122 include/conversation.php:1068 -msgid "Clear browser location" -msgstr "" - -#: mod/editpost.php:123 include/conversation.php:1069 -msgid "clear location" -msgstr "" - -#: mod/editpost.php:125 include/conversation.php:1075 -msgid "Permission settings" -msgstr "" - -#: mod/editpost.php:133 include/acl_selectors.php:343 -msgid "CC: email addresses" -msgstr "" - -#: mod/editpost.php:134 include/conversation.php:1084 -msgid "Public post" -msgstr "" - -#: mod/editpost.php:137 include/conversation.php:1071 -msgid "Set title" -msgstr "" - -#: mod/editpost.php:139 include/conversation.php:1073 -msgid "Categories (comma-separated list)" -msgstr "" - -#: mod/editpost.php:140 include/acl_selectors.php:344 -msgid "Example: bob@example.com, mary@example.com" -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: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/diaspora.php:633 -#: include/conversation.php:172 +#: mod/network.php:560 mod/content.php:135 #, php-format -msgid "%1$s is now friends with %2$s" +msgid "Group: %s" msgstr "" -#: mod/dfrn_confirm.php:572 +#: mod/network.php:578 #, php-format -msgid "No user record found for '%s' " +msgid "Contact: %s" msgstr "" -#: mod/dfrn_confirm.php:582 -msgid "Our site encryption key is apparently messed up." +#: mod/network.php:582 +msgid "Private messages to this person are at risk of public disclosure." msgstr "" -#: mod/dfrn_confirm.php:593 -msgid "Empty site URL was provided or URL could not be decrypted by us." +#: mod/network.php:587 +msgid "Invalid contact." msgstr "" -#: mod/dfrn_confirm.php:614 -msgid "Contact record was not found for you on our site." -msgstr "" - -#: mod/dfrn_confirm.php:628 +#: mod/allfriends.php:37 #, php-format -msgid "Site public key not available in contact record for URL %s." +msgid "Friends of %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 "" - -#: 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:798 -#, php-format -msgid "%1$s has joined %2$s" +#: mod/allfriends.php:44 +msgid "No friends to display." msgstr "" #: mod/events.php:71 mod/events.php:73 @@ -2411,165 +3245,393 @@ msgstr "" msgid "Event title and start time are required." msgstr "" -#: mod/events.php:317 +#: mod/events.php:196 +msgid "Sun" +msgstr "" + +#: mod/events.php:197 +msgid "Mon" +msgstr "" + +#: mod/events.php:198 +msgid "Tue" +msgstr "" + +#: mod/events.php:199 +msgid "Wed" +msgstr "" + +#: mod/events.php:200 +msgid "Thu" +msgstr "" + +#: mod/events.php:201 +msgid "Fri" +msgstr "" + +#: mod/events.php:202 +msgid "Sat" +msgstr "" + +#: mod/events.php:203 mod/settings.php:922 include/text.php:1266 +msgid "Sunday" +msgstr "" + +#: mod/events.php:204 mod/settings.php:922 include/text.php:1266 +msgid "Monday" +msgstr "" + +#: mod/events.php:205 include/text.php:1266 +msgid "Tuesday" +msgstr "" + +#: mod/events.php:206 include/text.php:1266 +msgid "Wednesday" +msgstr "" + +#: mod/events.php:207 include/text.php:1266 +msgid "Thursday" +msgstr "" + +#: mod/events.php:208 include/text.php:1266 +msgid "Friday" +msgstr "" + +#: mod/events.php:209 include/text.php:1266 +msgid "Saturday" +msgstr "" + +#: mod/events.php:210 +msgid "Jan" +msgstr "" + +#: mod/events.php:211 +msgid "Feb" +msgstr "" + +#: mod/events.php:212 +msgid "Mar" +msgstr "" + +#: mod/events.php:213 +msgid "Apr" +msgstr "" + +#: mod/events.php:214 mod/events.php:226 include/text.php:1270 +msgid "May" +msgstr "" + +#: mod/events.php:215 +msgid "Jun" +msgstr "" + +#: mod/events.php:216 +msgid "Jul" +msgstr "" + +#: mod/events.php:217 +msgid "Aug" +msgstr "" + +#: mod/events.php:218 +msgid "Sept" +msgstr "" + +#: mod/events.php:219 +msgid "Oct" +msgstr "" + +#: mod/events.php:220 +msgid "Nov" +msgstr "" + +#: mod/events.php:221 +msgid "Dec" +msgstr "" + +#: mod/events.php:222 include/text.php:1270 +msgid "January" +msgstr "" + +#: mod/events.php:223 include/text.php:1270 +msgid "February" +msgstr "" + +#: mod/events.php:224 include/text.php:1270 +msgid "March" +msgstr "" + +#: mod/events.php:225 include/text.php:1270 +msgid "April" +msgstr "" + +#: mod/events.php:227 include/text.php:1270 +msgid "June" +msgstr "" + +#: mod/events.php:228 include/text.php:1270 +msgid "July" +msgstr "" + +#: mod/events.php:229 include/text.php:1270 +msgid "August" +msgstr "" + +#: mod/events.php:230 include/text.php:1270 +msgid "September" +msgstr "" + +#: mod/events.php:231 include/text.php:1270 +msgid "October" +msgstr "" + +#: mod/events.php:232 include/text.php:1270 +msgid "November" +msgstr "" + +#: mod/events.php:233 include/text.php:1270 +msgid "December" +msgstr "" + +#: mod/events.php:234 +msgid "today" +msgstr "" + +#: mod/events.php:235 include/datetime.php:273 +msgid "month" +msgstr "" + +#: mod/events.php:236 include/datetime.php:274 +msgid "week" +msgstr "" + +#: mod/events.php:237 include/datetime.php:275 +msgid "day" +msgstr "" + +#: mod/events.php:372 msgid "l, F j" msgstr "" -#: mod/events.php:339 +#: mod/events.php:394 msgid "Edit event" msgstr "" -#: mod/events.php:361 include/text.php:1716 include/text.php:1723 +#: mod/events.php:416 include/text.php:1713 include/text.php:1720 msgid "link to source" msgstr "" -#: mod/events.php:396 view/theme/diabook/theme.php:127 -#: include/identity.php:668 include/nav.php:80 +#: mod/events.php:451 include/identity.php:669 include/nav.php:80 +#: include/nav.php:141 view/theme/diabook/theme.php:127 msgid "Events" msgstr "" -#: mod/events.php:397 +#: mod/events.php:452 msgid "Create New Event" msgstr "" -#: mod/events.php:398 +#: mod/events.php:453 msgid "Previous" msgstr "" -#: mod/events.php:399 mod/install.php:209 +#: mod/events.php:454 mod/install.php:209 msgid "Next" msgstr "" -#: mod/events.php:491 +#: mod/events.php:546 msgid "Event details" msgstr "" -#: mod/events.php:492 +#: mod/events.php:547 msgid "Starting date and Title are required." msgstr "" -#: mod/events.php:493 +#: mod/events.php:548 msgid "Event Starts:" msgstr "" -#: mod/events.php:493 mod/events.php:505 +#: mod/events.php:548 mod/events.php:560 msgid "Required" msgstr "" -#: mod/events.php:495 +#: mod/events.php:550 msgid "Finish date/time is not known or not relevant" msgstr "" -#: mod/events.php:497 +#: mod/events.php:552 msgid "Event Finishes:" msgstr "" -#: mod/events.php:499 +#: mod/events.php:554 msgid "Adjust for viewer timezone" msgstr "" -#: mod/events.php:501 +#: mod/events.php:556 msgid "Description:" msgstr "" -#: mod/events.php:505 +#: mod/events.php:560 msgid "Title:" msgstr "" -#: mod/events.php:507 +#: mod/events.php:562 msgid "Share this event" msgstr "" -#: mod/fbrowser.php:32 view/theme/diabook/theme.php:126 -#: include/identity.php:649 include/nav.php:78 -msgid "Photos" +#: mod/events.php:564 mod/content.php:721 mod/editpost.php:145 +#: mod/photos.php:1623 mod/photos.php:1667 mod/photos.php:1755 +#: object/Item.php:695 include/conversation.php:1111 +msgid "Preview" msgstr "" -#: mod/fbrowser.php:122 -msgid "Files" +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1710 +#: object/Item.php:130 include/conversation.php:612 +msgid "Select" msgstr "" -#: mod/home.php:35 +#: mod/content.php:473 mod/content.php:854 mod/content.php:855 +#: object/Item.php:334 object/Item.php:335 include/conversation.php:653 #, php-format -msgid "Welcome to %s" +msgid "View %s's profile @ %s" 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/wallmessage.php:42 mod/wallmessage.php:112 +#: mod/content.php:483 mod/content.php:866 object/Item.php:348 +#: include/conversation.php:673 #, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." +msgid "%s from %s" msgstr "" -#: mod/wallmessage.php:59 -msgid "Unable to check your home location." +#: mod/content.php:499 include/conversation.php:689 +msgid "View in context" msgstr "" -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "" - -#: mod/wallmessage.php:143 +#: mod/content.php:605 object/Item.php:395 #, 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." +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: mod/content.php:607 object/Item.php:397 object/Item.php:410 +#: include/text.php:2035 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "" + +#: mod/content.php:608 boot.php:766 object/Item.php:398 +#: include/contact_widgets.php:205 include/items.php:5186 +msgid "show more" msgstr "" -#: mod/nogroup.php:40 mod/contacts.php:605 mod/contacts.php:838 -#: mod/viewcontacts.php:64 -#, php-format -msgid "Visit %s's profile [%s]" +#: mod/content.php:622 mod/photos.php:1410 object/Item.php:117 +msgid "Private Message" msgstr "" -#: mod/nogroup.php:41 mod/contacts.php:839 -msgid "Edit contact" +#: mod/content.php:686 mod/photos.php:1599 object/Item.php:232 +msgid "I like this (toggle)" msgstr "" -#: mod/nogroup.php:59 -msgid "Contacts who are not members of a group" +#: mod/content.php:686 object/Item.php:232 +msgid "like" msgstr "" -#: mod/friendica.php:59 -msgid "This is Friendica, version" +#: mod/content.php:687 mod/photos.php:1600 object/Item.php:233 +msgid "I don't like this (toggle)" msgstr "" -#: mod/friendica.php:60 -msgid "running at web location" +#: mod/content.php:687 object/Item.php:233 +msgid "dislike" msgstr "" -#: mod/friendica.php:62 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." +#: mod/content.php:689 object/Item.php:235 +msgid "Share this" msgstr "" -#: mod/friendica.php:64 -msgid "Bug reports and issues: please visit" +#: mod/content.php:689 object/Item.php:235 +msgid "share" msgstr "" -#: mod/friendica.php:64 -msgid "the bugtracker at github" +#: mod/content.php:709 mod/photos.php:1619 mod/photos.php:1663 +#: mod/photos.php:1751 object/Item.php:683 +msgid "This is you" msgstr "" -#: mod/friendica.php:65 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" +#: mod/content.php:711 mod/photos.php:1621 mod/photos.php:1665 +#: mod/photos.php:1753 boot.php:765 object/Item.php:369 object/Item.php:685 +msgid "Comment" msgstr "" -#: mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" +#: mod/content.php:713 object/Item.php:687 +msgid "Bold" msgstr "" -#: mod/friendica.php:92 -msgid "No installed plugins/addons/apps" +#: mod/content.php:714 object/Item.php:688 +msgid "Italic" +msgstr "" + +#: mod/content.php:715 object/Item.php:689 +msgid "Underline" +msgstr "" + +#: mod/content.php:716 object/Item.php:690 +msgid "Quote" +msgstr "" + +#: mod/content.php:717 object/Item.php:691 +msgid "Code" +msgstr "" + +#: mod/content.php:718 object/Item.php:692 +msgid "Image" +msgstr "" + +#: mod/content.php:719 object/Item.php:693 +msgid "Link" +msgstr "" + +#: mod/content.php:720 object/Item.php:694 +msgid "Video" +msgstr "" + +#: mod/content.php:730 mod/settings.php:696 object/Item.php:121 +msgid "Edit" +msgstr "" + +#: mod/content.php:755 object/Item.php:196 +msgid "add star" +msgstr "" + +#: mod/content.php:756 object/Item.php:197 +msgid "remove star" +msgstr "" + +#: mod/content.php:757 object/Item.php:198 +msgid "toggle star status" +msgstr "" + +#: mod/content.php:760 object/Item.php:201 +msgid "starred" +msgstr "" + +#: mod/content.php:761 object/Item.php:221 +msgid "add tag" +msgstr "" + +#: mod/content.php:765 object/Item.php:134 +msgid "save to folder" +msgstr "" + +#: mod/content.php:856 object/Item.php:336 +msgid "to" +msgstr "" + +#: mod/content.php:857 object/Item.php:338 +msgid "Wall-to-Wall" +msgstr "" + +#: mod/content.php:858 object/Item.php:339 +msgid "via Wall-To-Wall:" msgstr "" #: mod/removeme.php:46 mod/removeme.php:49 @@ -2586,2645 +3648,6 @@ msgstr "" msgid "Please enter your password for verification:" msgstr "" -#: 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/wall_upload.php:137 mod/photos.php:789 mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "" - -#: mod/wall_upload.php:169 mod/photos.php:829 mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "" - -#: mod/wall_upload.php:199 mod/wall_upload.php:213 mod/wall_upload.php:220 -#: mod/item.php:486 include/message.php:145 include/Photo.php:951 -#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995 -msgid "Wall Photos" -msgstr "" - -#: mod/wall_upload.php:202 mod/photos.php:856 mod/profile_photo.php:301 -msgid "Image upload failed." -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/tagger.php:95 include/conversation.php:265 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -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 "" - -#: mod/photos.php:84 include/identity.php:652 -msgid "Photo Albums" -msgstr "" - -#: mod/photos.php:85 mod/photos.php:1836 -msgid "Recent Photos" -msgstr "" - -#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 -msgid "Upload New Photos" -msgstr "" - -#: mod/photos.php:102 mod/settings.php:34 -msgid "everybody" -msgstr "" - -#: mod/photos.php:166 -msgid "Contact information unavailable" -msgstr "" - -#: mod/photos.php:177 mod/photos.php:753 mod/photos.php:1207 -#: mod/photos.php:1230 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 -#: view/theme/diabook/theme.php:500 include/user.php:343 include/user.php:350 -#: include/user.php:357 -msgid "Profile Photos" -msgstr "" - -#: mod/photos.php:187 -msgid "Album not found." -msgstr "" - -#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 -msgid "Delete Album" -msgstr "" - -#: mod/photos.php:220 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "" - -#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 -msgid "Delete Photo" -msgstr "" - -#: mod/photos.php:309 -msgid "Do you really want to delete this photo?" -msgstr "" - -#: 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 "" - -#: mod/photos.php:797 -msgid "Image file is empty." -msgstr "" - -#: mod/photos.php:952 -msgid "No photos selected" -msgstr "" - -#: mod/photos.php:1053 mod/videos.php:298 -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:1149 -msgid "Upload Photos" -msgstr "" - -#: mod/photos.php:1153 mod/photos.php:1219 -msgid "New album name: " -msgstr "" - -#: mod/photos.php:1154 -msgid "or existing album name: " -msgstr "" - -#: mod/photos.php:1155 -msgid "Do not show a status post for this upload" -msgstr "" - -#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 -msgid "Permissions" -msgstr "" - -#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1202 -msgid "Show to Groups" -msgstr "" - -#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1203 -msgid "Show to Contacts" -msgstr "" - -#: mod/photos.php:1168 -msgid "Private Photo" -msgstr "" - -#: mod/photos.php:1169 -msgid "Public Photo" -msgstr "" - -#: mod/photos.php:1232 -msgid "Edit Album" -msgstr "" - -#: mod/photos.php:1238 -msgid "Show Newest First" -msgstr "" - -#: mod/photos.php:1240 -msgid "Show Oldest First" -msgstr "" - -#: mod/photos.php:1268 mod/photos.php:1821 -msgid "View Photo" -msgstr "" - -#: mod/photos.php:1314 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: mod/photos.php:1316 -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:1477 -msgid "Tags: " -msgstr "" - -#: mod/photos.php:1480 -msgid "[Remove any tag]" -msgstr "" - -#: mod/photos.php:1520 -msgid "New album name" -msgstr "" - -#: mod/photos.php:1521 -msgid "Caption" -msgstr "" - -#: mod/photos.php:1522 -msgid "Add a Tag" -msgstr "" - -#: mod/photos.php:1522 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "" - -#: mod/photos.php:1523 -msgid "Do not rotate" -msgstr "" - -#: mod/photos.php:1524 -msgid "Rotate CW (right)" -msgstr "" - -#: mod/photos.php:1525 -msgid "Rotate CCW (left)" -msgstr "" - -#: mod/photos.php:1540 -msgid "Private photo" -msgstr "" - -#: mod/photos.php:1541 -msgid "Public photo" -msgstr "" - -#: mod/photos.php:1563 include/conversation.php:1055 -msgid "Share" -msgstr "" - -#: mod/photos.php:1827 mod/videos.php:380 -msgid "View Album" -msgstr "" - -#: mod/hcard.php:10 -msgid "No profile" -msgstr "" - -#: 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:107 -msgid "Your registration can not be processed." -msgstr "" - -#: mod/register.php:150 -msgid "Your registration is pending approval by the site owner." -msgstr "" - -#: 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 "" - -#: mod/register.php:216 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "" - -#: 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 "" - -#: mod/register.php:218 -msgid "Your OpenID (optional): " -msgstr "" - -#: mod/register.php:232 -msgid "Include your profile in member directory?" -msgstr "" - -#: mod/register.php:256 -msgid "Membership on this site is by invitation only." -msgstr "" - -#: mod/register.php:257 -msgid "Your invitation ID: " -msgstr "" - -#: mod/register.php:268 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "" - -#: mod/register.php:269 -msgid "Your Email Address: " -msgstr "" - -#: mod/register.php:271 mod/settings.php:1174 -msgid "New Password:" -msgstr "" - -#: mod/register.php:271 -msgid "Leave empty for an auto generated password." -msgstr "" - -#: mod/register.php:272 mod/settings.php:1175 -msgid "Confirm:" -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 "" - -#: mod/register.php:274 -msgid "Choose a nickname: " -msgstr "" - -#: mod/register.php:277 boot.php:1248 include/nav.php:109 -msgid "Register" -msgstr "" - -#: mod/register.php:283 mod/uimport.php:64 -msgid "Import" -msgstr "" - -#: mod/register.php:284 -msgid "Import your profile to this friendica instance" -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 "" - -#: 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:1287 -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 "" - -#: 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 "" - -#: mod/lostpass.php:162 -msgid "Reset" -msgstr "" - -#: mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "" - -#: mod/attach.php:8 -msgid "Item not available." -msgstr "" - -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "" - -#: mod/apps.php:11 -msgid "Applications" -msgstr "" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "" - -#: mod/help.php:31 -msgid "Help:" -msgstr "" - -#: mod/help.php:36 include/nav.php:114 -msgid "Help" -msgstr "" - -#: mod/contacts.php:114 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "" -msgstr[1] "" - -#: mod/contacts.php:145 mod/contacts.php:368 -msgid "Could not access contact record." -msgstr "" - -#: mod/contacts.php:159 -msgid "Could not locate selected profile." -msgstr "" - -#: mod/contacts.php:192 -msgid "Contact updated." -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:439 mod/contacts.php:795 -msgid "Do you really want to delete this contact?" -msgstr "" - -#: mod/contacts.php:456 -msgid "Contact has been removed." -msgstr "" - -#: mod/contacts.php:494 -#, php-format -msgid "You are mutual friends with %s" -msgstr "" - -#: mod/contacts.php:498 -#, php-format -msgid "You are sharing with %s" -msgstr "" - -#: mod/contacts.php:503 -#, php-format -msgid "%s is sharing with you" -msgstr "" - -#: mod/contacts.php:523 -msgid "Private communications are not available for this contact." -msgstr "" - -#: mod/contacts.php:530 -msgid "(Update was successful)" -msgstr "" - -#: mod/contacts.php:530 -msgid "(Update was not successful)" -msgstr "" - -#: mod/contacts.php:532 -msgid "Suggest friends" -msgstr "" - -#: mod/contacts.php:536 -#, php-format -msgid "Network type: %s" -msgstr "" - -#: mod/contacts.php:539 include/contact_widgets.php:200 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "" -msgstr[1] "" - -#: mod/contacts.php:544 -msgid "View all contacts" -msgstr "" - -#: mod/contacts.php:552 -msgid "Toggle Blocked status" -msgstr "" - -#: mod/contacts.php:556 mod/contacts.php:623 mod/contacts.php:799 -msgid "Unignore" -msgstr "" - -#: mod/contacts.php:559 -msgid "Toggle Ignored status" -msgstr "" - -#: mod/contacts.php:564 mod/contacts.php:800 -msgid "Unarchive" -msgstr "" - -#: mod/contacts.php:564 mod/contacts.php:800 -msgid "Archive" -msgstr "" - -#: mod/contacts.php:567 -msgid "Toggle Archive status" -msgstr "" - -#: mod/contacts.php:571 -msgid "Repair" -msgstr "" - -#: mod/contacts.php:574 -msgid "Advanced Contact Settings" -msgstr "" - -#: mod/contacts.php:581 -msgid "Communications lost with this contact!" -msgstr "" - -#: mod/contacts.php:584 -msgid "Fetch further information for feeds" -msgstr "" - -#: mod/contacts.php:585 -msgid "Fetch information" -msgstr "" - -#: mod/contacts.php:585 -msgid "Fetch information and keywords" -msgstr "" - -#: mod/contacts.php:594 -msgid "Contact Editor" -msgstr "" - -#: mod/contacts.php:597 -msgid "Profile Visibility" -msgstr "" - -#: mod/contacts.php:598 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "" - -#: mod/contacts.php:599 -msgid "Contact Information / Notes" -msgstr "" - -#: mod/contacts.php:600 -msgid "Edit contact notes" -msgstr "" - -#: mod/contacts.php:606 -msgid "Block/Unblock contact" -msgstr "" - -#: mod/contacts.php:607 -msgid "Ignore contact" -msgstr "" - -#: mod/contacts.php:608 -msgid "Repair URL settings" -msgstr "" - -#: mod/contacts.php:609 -msgid "View conversations" -msgstr "" - -#: mod/contacts.php:611 -msgid "Delete contact" -msgstr "" - -#: mod/contacts.php:615 -msgid "Last update:" -msgstr "" - -#: mod/contacts.php:617 -msgid "Update public posts" -msgstr "" - -#: mod/contacts.php:626 -msgid "Currently blocked" -msgstr "" - -#: mod/contacts.php:627 -msgid "Currently ignored" -msgstr "" - -#: mod/contacts.php:628 -msgid "Currently archived" -msgstr "" - -#: mod/contacts.php:629 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "" - -#: mod/contacts.php:630 -msgid "Notification for new posts" -msgstr "" - -#: mod/contacts.php:630 -msgid "Send a notification of every new post of this contact" -msgstr "" - -#: mod/contacts.php:633 -msgid "Blacklisted keywords" -msgstr "" - -#: mod/contacts.php:633 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "" - -#: mod/contacts.php:640 -msgid "Profile URL" -msgstr "" - -#: mod/contacts.php:686 -msgid "Suggestions" -msgstr "" - -#: mod/contacts.php:689 -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:700 -msgid "Unblocked" -msgstr "" - -#: mod/contacts.php:703 -msgid "Only show unblocked contacts" -msgstr "" - -#: mod/contacts.php:708 -msgid "Blocked" -msgstr "" - -#: mod/contacts.php:711 -msgid "Only show blocked contacts" -msgstr "" - -#: mod/contacts.php:716 -msgid "Ignored" -msgstr "" - -#: mod/contacts.php:719 -msgid "Only show ignored contacts" -msgstr "" - -#: mod/contacts.php:724 -msgid "Archived" -msgstr "" - -#: mod/contacts.php:727 -msgid "Only show archived contacts" -msgstr "" - -#: mod/contacts.php:732 -msgid "Hidden" -msgstr "" - -#: mod/contacts.php:735 -msgid "Only show hidden contacts" -msgstr "" - -#: mod/contacts.php:786 view/theme/diabook/theme.php:125 include/text.php:1005 -#: include/nav.php:124 include/nav.php:186 -msgid "Contacts" -msgstr "" - -#: mod/contacts.php:790 -msgid "Search your contacts" -msgstr "" - -#: mod/contacts.php:791 mod/directory.php:63 -msgid "Finding: " -msgstr "" - -#: mod/contacts.php:792 mod/directory.php:65 include/contact_widgets.php:34 -msgid "Find" -msgstr "" - -#: mod/contacts.php:797 mod/settings.php:146 mod/settings.php:658 -msgid "Update" -msgstr "" - -#: mod/contacts.php:814 -msgid "Mutual Friendship" -msgstr "" - -#: mod/contacts.php:818 -msgid "is a fan of yours" -msgstr "" - -#: mod/contacts.php:822 -msgid "you are a fan of" -msgstr "" - -#: 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 "" - -#: mod/videos.php:389 -msgid "Recent Videos" -msgstr "" - -#: mod/videos.php:391 -msgid "Upload New Videos" -msgstr "" - -#: mod/common.php:45 -msgid "Common Friends" -msgstr "" - -#: mod/common.php:82 -msgid "No contacts in common." -msgstr "" - -#: mod/follow.php:26 -msgid "You already added this contact." -msgstr "" - -#: mod/follow.php:108 -msgid "Contact added" -msgstr "" - -#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 -msgid "Login" -msgstr "" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -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/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: mod/allfriends.php:37 -#, php-format -msgid "Friends of %s" -msgstr "" - -#: mod/allfriends.php:44 -msgid "No friends to display." -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/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:32 mod/profperm.php:104 view/theme/diabook/theme.php:124 -#: include/identity.php:530 include/identity.php:611 include/identity.php:641 -#: include/nav.php:77 -msgid "Profile" -msgstr "" - -#: mod/newmember.php:36 mod/profiles.php:696 mod/profile_photo.php:244 -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 "" - -#: 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 "" - -#: 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 "" - -#: 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 "" - -#: 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/search.php:25 mod/network.php:187 -msgid "Remove term" -msgstr "" - -#: mod/search.php:34 mod/network.php:196 include/features.php:42 -msgid "Saved Searches" -msgstr "" - -#: mod/search.php:107 include/text.php:996 include/nav.php:119 -msgid "Search" -msgstr "" - -#: mod/search.php:199 mod/community.php:62 mod/community.php:71 -msgid "No results." -msgstr "" - -#: mod/search.php:205 -#, php-format -msgid "Items tagged with: %s" -msgstr "" - -#: mod/search.php:207 -#, php-format -msgid "Search results for: %s" -msgstr "" - -#: mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "" - -#: mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "" - -#: mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "" - -#: mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "" - -#: mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" - -#: mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "" - -#: mod/invite.php:120 -#, php-format -msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many " -"other social networks." -msgstr "" - -#: mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "" - -#: mod/invite.php:123 -#, php-format -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "" - -#: mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other " -"public sites or invite members." -msgstr "" - -#: mod/invite.php:132 -msgid "Send invitations" -msgstr "" - -#: mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "" - -#: mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "" - -#: mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "" - -#: mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "" - -#: mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "" - -#: mod/settings.php:47 -msgid "Additional features" -msgstr "" - -#: mod/settings.php:53 -msgid "Display" -msgstr "" - -#: mod/settings.php:60 mod/settings.php:837 -msgid "Social Networks" -msgstr "" - -#: mod/settings.php:72 include/nav.php:179 -msgid "Delegations" -msgstr "" - -#: mod/settings.php:78 -msgid "Connected apps" -msgstr "" - -#: mod/settings.php:84 mod/uexport.php:85 -msgid "Export personal data" -msgstr "" - -#: mod/settings.php:90 -msgid "Remove account" -msgstr "" - -#: mod/settings.php:143 -msgid "Missing some important data!" -msgstr "" - -#: mod/settings.php:256 -msgid "Failed to connect with email account using the settings provided." -msgstr "" - -#: mod/settings.php:261 -msgid "Email settings updated." -msgstr "" - -#: 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 "" - -#: mod/settings.php:358 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" - -#: mod/settings.php:366 -msgid "Wrong password." -msgstr "" - -#: mod/settings.php:377 -msgid "Password changed." -msgstr "" - -#: mod/settings.php:379 -msgid "Password update failed. Please try again." -msgstr "" - -#: mod/settings.php:446 -msgid " Please use a shorter name." -msgstr "" - -#: mod/settings.php:448 -msgid " Name too short." -msgstr "" - -#: mod/settings.php:457 -msgid "Wrong Password" -msgstr "" - -#: mod/settings.php:462 -msgid " Not valid email." -msgstr "" - -#: mod/settings.php:468 -msgid " Cannot change to that email." -msgstr "" - -#: 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 "" - -#: mod/settings.php:631 mod/settings.php:657 mod/settings.php:693 -msgid "Add application" -msgstr "" - -#: mod/settings.php:635 mod/settings.php:661 -msgid "Consumer Key" -msgstr "" - -#: mod/settings.php:636 mod/settings.php:662 -msgid "Consumer Secret" -msgstr "" - -#: mod/settings.php:637 mod/settings.php:663 -msgid "Redirect" -msgstr "" - -#: mod/settings.php:638 mod/settings.php:664 -msgid "Icon url" -msgstr "" - -#: mod/settings.php:649 -msgid "You can't edit this application." -msgstr "" - -#: mod/settings.php:692 -msgid "Connected Apps" -msgstr "" - -#: mod/settings.php:696 -msgid "Client key starts with" -msgstr "" - -#: mod/settings.php:697 -msgid "No name" -msgstr "" - -#: mod/settings.php:698 -msgid "Remove authorization" -msgstr "" - -#: mod/settings.php:710 -msgid "No Plugin settings configured" -msgstr "" - -#: mod/settings.php:718 -msgid "Plugin Settings" -msgstr "" - -#: mod/settings.php:732 -msgid "Off" -msgstr "" - -#: mod/settings.php:732 -msgid "On" -msgstr "" - -#: 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:779 -msgid "Your legacy GNU Social account" -msgstr "" - -#: mod/settings.php:781 -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:784 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: mod/settings.php:793 mod/settings.php:794 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "" - -#: mod/settings.php:793 mod/settings.php:794 -msgid "enabled" -msgstr "" - -#: mod/settings.php:793 mod/settings.php:794 -msgid "disabled" -msgstr "" - -#: mod/settings.php:794 -msgid "GNU Social (OStatus)" -msgstr "" - -#: mod/settings.php:830 -msgid "Email access is disabled on this site." -msgstr "" - -#: mod/settings.php:842 -msgid "Email/Mailbox Setup" -msgstr "" - -#: mod/settings.php:843 -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:844 -msgid "Last successful email check:" -msgstr "" - -#: mod/settings.php:846 -msgid "IMAP server name:" -msgstr "" - -#: mod/settings.php:847 -msgid "IMAP port:" -msgstr "" - -#: mod/settings.php:848 -msgid "Security:" -msgstr "" - -#: mod/settings.php:848 mod/settings.php:853 -msgid "None" -msgstr "" - -#: mod/settings.php:849 -msgid "Email login name:" -msgstr "" - -#: mod/settings.php:850 -msgid "Email password:" -msgstr "" - -#: mod/settings.php:851 -msgid "Reply-to address:" -msgstr "" - -#: mod/settings.php:852 -msgid "Send public posts to all email contacts:" -msgstr "" - -#: mod/settings.php:853 -msgid "Action after import:" -msgstr "" - -#: mod/settings.php:853 -msgid "Mark as seen" -msgstr "" - -#: mod/settings.php:853 -msgid "Move to folder" -msgstr "" - -#: mod/settings.php:854 -msgid "Move to folder:" -msgstr "" - -#: mod/settings.php:935 -msgid "Display Settings" -msgstr "" - -#: mod/settings.php:941 mod/settings.php:957 -msgid "Display Theme:" -msgstr "" - -#: mod/settings.php:942 -msgid "Mobile Theme:" -msgstr "" - -#: mod/settings.php:943 -msgid "Update browser every xx seconds" -msgstr "" - -#: mod/settings.php:943 -msgid "Minimum of 10 seconds, no maximum" -msgstr "" - -#: mod/settings.php:944 -msgid "Number of items to display per page:" -msgstr "" - -#: mod/settings.php:944 mod/settings.php:945 -msgid "Maximum of 100 items" -msgstr "" - -#: mod/settings.php:945 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" - -#: mod/settings.php:946 -msgid "Don't show emoticons" -msgstr "" - -#: mod/settings.php:947 -msgid "Don't show notices" -msgstr "" - -#: mod/settings.php:948 -msgid "Infinite scroll" -msgstr "" - -#: mod/settings.php:949 -msgid "Automatic updates only at the top of the network page" -msgstr "" - -#: mod/settings.php:951 view/theme/diabook/config.php:150 -#: view/theme/vier/config.php:58 view/theme/dispy/config.php:72 -#: view/theme/duepuntozero/config.php:61 view/theme/quattro/config.php:66 -#: view/theme/cleanzero/config.php:82 -msgid "Theme settings" -msgstr "" - -#: mod/settings.php:1027 -msgid "User Types" -msgstr "" - -#: mod/settings.php:1028 -msgid "Community Types" -msgstr "" - -#: mod/settings.php:1029 -msgid "Normal Account Page" -msgstr "" - -#: mod/settings.php:1030 -msgid "This account is a normal personal profile" -msgstr "" - -#: mod/settings.php:1033 -msgid "Soapbox Page" -msgstr "" - -#: mod/settings.php:1034 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "" - -#: mod/settings.php:1037 -msgid "Community Forum/Celebrity Account" -msgstr "" - -#: mod/settings.php:1038 -msgid "Automatically approve all connection/friend requests as read-write fans" -msgstr "" - -#: mod/settings.php:1041 -msgid "Automatic Friend Page" -msgstr "" - -#: mod/settings.php:1042 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "" - -#: mod/settings.php:1045 -msgid "Private Forum [Experimental]" -msgstr "" - -#: mod/settings.php:1046 -msgid "Private forum - approved members only" -msgstr "" - -#: mod/settings.php:1058 -msgid "OpenID:" -msgstr "" - -#: mod/settings.php:1058 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "" - -#: mod/settings.php:1068 -msgid "Publish your default profile in your local site directory?" -msgstr "" - -#: mod/settings.php:1074 -msgid "Publish your default profile in the global social directory?" -msgstr "" - -#: mod/settings.php:1082 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "" - -#: mod/settings.php:1086 include/acl_selectors.php:330 -msgid "Hide your profile details from unknown viewers?" -msgstr "" - -#: mod/settings.php:1086 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "" - -#: mod/settings.php:1091 -msgid "Allow friends to post to your profile page?" -msgstr "" - -#: mod/settings.php:1097 -msgid "Allow friends to tag your posts?" -msgstr "" - -#: mod/settings.php:1103 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: mod/settings.php:1109 -msgid "Permit unknown people to send you private mail?" -msgstr "" - -#: mod/settings.php:1117 -msgid "Profile is not published." -msgstr "" - -#: mod/settings.php:1125 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "" - -#: mod/settings.php:1132 -msgid "Automatically expire posts after this many days:" -msgstr "" - -#: mod/settings.php:1132 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "" - -#: mod/settings.php:1133 -msgid "Advanced expiration settings" -msgstr "" - -#: mod/settings.php:1134 -msgid "Advanced Expiration" -msgstr "" - -#: mod/settings.php:1135 -msgid "Expire posts:" -msgstr "" - -#: mod/settings.php:1136 -msgid "Expire personal notes:" -msgstr "" - -#: mod/settings.php:1137 -msgid "Expire starred posts:" -msgstr "" - -#: mod/settings.php:1138 -msgid "Expire photos:" -msgstr "" - -#: mod/settings.php:1139 -msgid "Only expire posts by others:" -msgstr "" - -#: mod/settings.php:1165 -msgid "Account Settings" -msgstr "" - -#: mod/settings.php:1173 -msgid "Password Settings" -msgstr "" - -#: mod/settings.php:1175 -msgid "Leave password fields blank unless changing" -msgstr "" - -#: mod/settings.php:1176 -msgid "Current Password:" -msgstr "" - -#: mod/settings.php:1176 mod/settings.php:1177 -msgid "Your current password to confirm the changes" -msgstr "" - -#: mod/settings.php:1177 -msgid "Password:" -msgstr "" - -#: mod/settings.php:1181 -msgid "Basic Settings" -msgstr "" - -#: mod/settings.php:1182 include/identity.php:539 -msgid "Full Name:" -msgstr "" - -#: mod/settings.php:1183 -msgid "Email Address:" -msgstr "" - -#: mod/settings.php:1184 -msgid "Your Timezone:" -msgstr "" - -#: mod/settings.php:1185 -msgid "Default Post Location:" -msgstr "" - -#: mod/settings.php:1186 -msgid "Use Browser Location:" -msgstr "" - -#: mod/settings.php:1189 -msgid "Security and Privacy Settings" -msgstr "" - -#: mod/settings.php:1191 -msgid "Maximum Friend Requests/Day:" -msgstr "" - -#: mod/settings.php:1191 mod/settings.php:1221 -msgid "(to prevent spam abuse)" -msgstr "" - -#: mod/settings.php:1192 -msgid "Default Post Permissions" -msgstr "" - -#: mod/settings.php:1193 -msgid "(click to open/close)" -msgstr "" - -#: mod/settings.php:1204 -msgid "Default Private Post" -msgstr "" - -#: mod/settings.php:1205 -msgid "Default Public Post" -msgstr "" - -#: mod/settings.php:1209 -msgid "Default Permissions for New Posts" -msgstr "" - -#: mod/settings.php:1221 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: mod/settings.php:1224 -msgid "Notification Settings" -msgstr "" - -#: mod/settings.php:1225 -msgid "By default post a status message when:" -msgstr "" - -#: mod/settings.php:1226 -msgid "accepting a friend request" -msgstr "" - -#: mod/settings.php:1227 -msgid "joining a forum/community" -msgstr "" - -#: mod/settings.php:1228 -msgid "making an interesting profile change" -msgstr "" - -#: mod/settings.php:1229 -msgid "Send a notification email when:" -msgstr "" - -#: mod/settings.php:1230 -msgid "You receive an introduction" -msgstr "" - -#: mod/settings.php:1231 -msgid "Your introductions are confirmed" -msgstr "" - -#: mod/settings.php:1232 -msgid "Someone writes on your profile wall" -msgstr "" - -#: mod/settings.php:1233 -msgid "Someone writes a followup comment" -msgstr "" - -#: mod/settings.php:1234 -msgid "You receive a private message" -msgstr "" - -#: mod/settings.php:1235 -msgid "You receive a friend suggestion" -msgstr "" - -#: mod/settings.php:1236 -msgid "You are tagged in a post" -msgstr "" - -#: mod/settings.php:1237 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: mod/settings.php:1239 -msgid "Activate desktop notifications" -msgstr "" - -#: mod/settings.php:1239 -msgid "Show desktop popup on new notifications" -msgstr "" - -#: mod/settings.php:1241 -msgid "Text-only notification emails" -msgstr "" - -#: mod/settings.php:1243 -msgid "Send text only notification emails, without the html part" -msgstr "" - -#: mod/settings.php:1245 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: mod/settings.php:1246 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: mod/settings.php:1249 -msgid "Relocate" -msgstr "" - -#: mod/settings.php:1250 -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:1251 -msgid "Resend relocate message to contacts" -msgstr "" - -#: mod/display.php:505 -msgid "Item has been removed." -msgstr "" - -#: mod/dirfind.php:36 -#, php-format -msgid "People Search - %s" -msgstr "" - -#: mod/dirfind.php:125 mod/suggest.php:92 mod/match.php:70 -#: include/identity.php:188 include/contact_widgets.php:10 -msgid "Connect" -msgstr "" - -#: mod/dirfind.php:141 mod/match.php:77 -msgid "No matches" -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 -msgid "Likes" -msgstr "" - -#: mod/profiles.php:348 -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: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 "" - -#: 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 "" - -#: mod/profiles.php:577 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "" - -#: 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:682 -msgid "Edit Profile Details" -msgstr "" - -#: mod/profiles.php:684 -msgid "Change Profile Photo" -msgstr "" - -#: mod/profiles.php:685 -msgid "View this profile" -msgstr "" - -#: mod/profiles.php:686 -msgid "Create a new profile using these settings" -msgstr "" - -#: mod/profiles.php:687 -msgid "Clone this profile" -msgstr "" - -#: mod/profiles.php:688 -msgid "Delete this profile" -msgstr "" - -#: 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 "" - -#: mod/profiles.php:698 -msgid "Your Full Name:" -msgstr "" - -#: mod/profiles.php:699 -msgid "Title/Description:" -msgstr "" - -#: mod/profiles.php:700 -msgid "Your Gender:" -msgstr "" - -#: mod/profiles.php:701 -msgid "Birthday :" -msgstr "" - -#: mod/profiles.php:702 -msgid "Street Address:" -msgstr "" - -#: mod/profiles.php:703 -msgid "Locality/City:" -msgstr "" - -#: mod/profiles.php:704 -msgid "Postal/Zip Code:" -msgstr "" - -#: mod/profiles.php:705 -msgid "Country:" -msgstr "" - -#: mod/profiles.php:706 -msgid "Region/State:" -msgstr "" - -#: mod/profiles.php:707 -msgid " Marital Status:" -msgstr "" - -#: mod/profiles.php:708 -msgid "Who: (if applicable)" -msgstr "" - -#: mod/profiles.php:709 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "" - -#: mod/profiles.php:710 -msgid "Since [date]:" -msgstr "" - -#: mod/profiles.php:711 include/identity.php:570 -msgid "Sexual Preference:" -msgstr "" - -#: mod/profiles.php:712 -msgid "Homepage URL:" -msgstr "" - -#: mod/profiles.php:713 include/identity.php:574 -msgid "Hometown:" -msgstr "" - -#: mod/profiles.php:714 include/identity.php:578 -msgid "Political Views:" -msgstr "" - -#: mod/profiles.php:715 -msgid "Religious Views:" -msgstr "" - -#: mod/profiles.php:716 -msgid "Public Keywords:" -msgstr "" - -#: mod/profiles.php:717 -msgid "Private Keywords:" -msgstr "" - -#: mod/profiles.php:718 include/identity.php:586 -msgid "Likes:" -msgstr "" - -#: mod/profiles.php:719 include/identity.php:588 -msgid "Dislikes:" -msgstr "" - -#: mod/profiles.php:720 -msgid "Example: fishing photography software" -msgstr "" - -#: mod/profiles.php:721 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "" - -#: mod/profiles.php:722 -msgid "(Used for searching profiles, never shown to others)" -msgstr "" - -#: mod/profiles.php:723 -msgid "Tell us about yourself..." -msgstr "" - -#: mod/profiles.php:724 -msgid "Hobbies/Interests" -msgstr "" - -#: mod/profiles.php:725 -msgid "Contact information and Social Networks" -msgstr "" - -#: mod/profiles.php:726 -msgid "Musical interests" -msgstr "" - -#: mod/profiles.php:727 -msgid "Books, literature" -msgstr "" - -#: mod/profiles.php:728 -msgid "Television" -msgstr "" - -#: mod/profiles.php:729 -msgid "Film/dance/culture/entertainment" -msgstr "" - -#: mod/profiles.php:730 -msgid "Love/romance" -msgstr "" - -#: mod/profiles.php:731 -msgid "Work/employment" -msgstr "" - -#: mod/profiles.php:732 -msgid "School/education" -msgstr "" - -#: mod/profiles.php:737 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "" - -#: mod/profiles.php:747 mod/directory.php:129 -msgid "Age: " -msgstr "" - -#: mod/profiles.php:800 -msgid "Edit/Manage Profiles" -msgstr "" - -#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257 -msgid "Change profile photo" -msgstr "" - -#: mod/profiles.php:802 include/identity.php:232 -msgid "Create New Profile" -msgstr "" - -#: mod/profiles.php:813 include/identity.php:242 -msgid "Profile Image" -msgstr "" - -#: mod/profiles.php:815 include/identity.php:245 -msgid "visible to everybody" -msgstr "" - -#: mod/profiles.php:816 include/identity.php:246 -msgid "Edit visibility" -msgstr "" - -#: mod/share.php:38 -msgid "link" -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/ping.php:233 -msgid "{0} wants to be your friend" -msgstr "" - -#: mod/ping.php:248 -msgid "{0} sent you a message" -msgstr "" - -#: mod/ping.php:263 -msgid "{0} requested registration" -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/community.php:23 -msgid "Not available." -msgstr "" - -#: mod/community.php:32 view/theme/diabook/theme.php:129 include/nav.php:137 -#: include/nav.php:139 -msgid "Community" -msgstr "" - -#: mod/filer.php:30 include/conversation.php:1005 -#: include/conversation.php:1023 -msgid "Save to Folder:" -msgstr "" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "" - -#: 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 "" - -#: 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:222 -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/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "" - -#: mod/suggest.php:69 view/theme/diabook/theme.php:527 -#: include/contact_widgets.php:35 -msgid "Friend Suggestions" -msgstr "" - -#: 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 "" - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "" - -#: mod/repair_ostatus.php:14 -msgid "Resubsribing 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/dfrn_poll.php:103 mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -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/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 "" - -#: mod/delegate.php:141 -msgid "No entries." -msgstr "" - -#: mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "" - -#: mod/viewcontacts.php:78 include/text.php:917 -msgid "View Contacts" -msgstr "" - -#: mod/notes.php:44 include/identity.php:676 -msgid "Personal Notes" -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/directory.php:53 view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "" - -#: mod/directory.php:61 -msgid "Find on this site" -msgstr "" - -#: mod/directory.php:64 -msgid "Site Directory" -msgstr "" - -#: mod/directory.php:132 -msgid "Gender: " -msgstr "" - -#: mod/directory.php:156 include/identity.php:273 include/identity.php:561 -msgid "Status:" -msgstr "" - -#: mod/directory.php:158 include/identity.php:275 include/identity.php:572 -msgid "Homepage:" -msgstr "" - -#: mod/directory.php:205 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: mod/ostatus_subscribe.php:14 -msgid "Subsribing 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/localtime.php:12 include/event.php:13 include/bb2diaspora.php:148 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: mod/localtime.php:24 -msgid "Time Conversion" -msgstr "" - -#: mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "" - -#: mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "" - -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "" - -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "" - -#: mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "" - -#: mod/oexchange.php:25 -msgid "Post successful." -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:308 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "" - -#: 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 "" - -#: mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "" - -#: mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "" - -#: mod/profile_photo.php:245 -#: view/smarty3/compiled/7ed3c1755557256685d55b3a8e5cca927de090fb.file.filebrowser_plain.tpl.php:96 -#: view/smarty3/compiled/48b358673d34ee5cf1512cb114ef7f14c9f5b9d0.file.filebrowser_plain.tpl.php:96 -#: view/smarty3/compiled/be03ead94b64e658f07d62d8fbdc13a08b408e62.file.filebrowser_plain.tpl.php:103 -msgid "Upload" -msgstr "" - -#: mod/profile_photo.php:248 -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/install.php:119 msgid "Friendica Communications Server - Setup" msgstr "" @@ -5526,128 +3949,1152 @@ msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: mod/p.php:9 -msgid "Not Extended" -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:94 mod/group.php:178 include/group.php:273 -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/content.php:119 mod/network.php:532 -msgid "No such group" -msgstr "" - -#: mod/content.php:130 mod/network.php:549 -msgid "Group is empty" -msgstr "" - -#: mod/content.php:135 mod/network.php:560 +#: mod/wallmessage.php:42 mod/wallmessage.php:112 #, php-format -msgid "Group: %s" +msgid "Number of daily wall messages for %s exceeded. Message failed." msgstr "" -#: mod/content.php:499 include/conversation.php:689 -msgid "View in context" +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." msgstr "" -#: mod/regmod.php:55 -msgid "Account approved." +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." msgstr "" -#: mod/regmod.php:92 +#: mod/wallmessage.php:143 #, php-format -msgid "Registration revoked for %s" +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/regmod.php:104 -msgid "Please login." +#: mod/help.php:31 +msgid "Help:" msgstr "" -#: mod/match.php:18 +#: mod/help.php:36 include/nav.php:114 view/theme/vier/theme.php:259 +msgid "Help" +msgstr "" + +#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 +msgid "Not Found" +msgstr "" + +#: mod/help.php:45 index.php:272 +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 "" + +#: 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 "" + +#: mod/match.php:19 msgid "Profile Match" msgstr "" -#: mod/match.php:27 +#: mod/match.php:28 msgid "No keywords to match. Please add keywords to your default profile." msgstr "" -#: mod/match.php:69 +#: mod/match.php:70 msgid "is interested in:" msgstr "" -#: mod/item.php:115 -msgid "Unable to locate original post." +#: mod/share.php:38 +msgid "link" msgstr "" -#: mod/item.php:347 -msgid "Empty post discarded." +#: mod/community.php:23 +msgid "Not available." msgstr "" -#: mod/item.php:860 -msgid "System error. Post not saved." +#: mod/community.php:32 include/nav.php:137 include/nav.php:139 +#: view/theme/diabook/theme.php:129 +msgid "Community" msgstr "" -#: mod/item.php:989 +#: mod/community.php:62 mod/community.php:71 mod/search.php:218 +msgid "No results." +msgstr "" + +#: mod/settings.php:34 mod/photos.php:109 +msgid "everybody" +msgstr "" + +#: mod/settings.php:47 +msgid "Additional features" +msgstr "" + +#: mod/settings.php:53 +msgid "Display" +msgstr "" + +#: mod/settings.php:60 mod/settings.php:839 +msgid "Social Networks" +msgstr "" + +#: mod/settings.php:72 include/nav.php:181 +msgid "Delegations" +msgstr "" + +#: mod/settings.php:78 +msgid "Connected apps" +msgstr "" + +#: mod/settings.php:84 mod/uexport.php:85 +msgid "Export personal data" +msgstr "" + +#: mod/settings.php:90 +msgid "Remove account" +msgstr "" + +#: mod/settings.php:143 +msgid "Missing some important data!" +msgstr "" + +#: mod/settings.php:256 +msgid "Failed to connect with email account using the settings provided." +msgstr "" + +#: mod/settings.php:261 +msgid "Email settings updated." +msgstr "" + +#: mod/settings.php:276 +msgid "Features updated" +msgstr "" + +#: mod/settings.php:341 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: mod/settings.php:355 include/user.php:39 +msgid "Passwords do not match. Password unchanged." +msgstr "" + +#: mod/settings.php:360 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "" + +#: mod/settings.php:368 +msgid "Wrong password." +msgstr "" + +#: mod/settings.php:379 +msgid "Password changed." +msgstr "" + +#: mod/settings.php:381 +msgid "Password update failed. Please try again." +msgstr "" + +#: mod/settings.php:448 +msgid " Please use a shorter name." +msgstr "" + +#: mod/settings.php:450 +msgid " Name too short." +msgstr "" + +#: mod/settings.php:459 +msgid "Wrong Password" +msgstr "" + +#: mod/settings.php:464 +msgid " Not valid email." +msgstr "" + +#: mod/settings.php:470 +msgid " Cannot change to that email." +msgstr "" + +#: mod/settings.php:526 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "" + +#: mod/settings.php:530 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "" + +#: mod/settings.php:560 +msgid "Settings updated." +msgstr "" + +#: mod/settings.php:633 mod/settings.php:659 mod/settings.php:695 +msgid "Add application" +msgstr "" + +#: mod/settings.php:637 mod/settings.php:663 +msgid "Consumer Key" +msgstr "" + +#: mod/settings.php:638 mod/settings.php:664 +msgid "Consumer Secret" +msgstr "" + +#: mod/settings.php:639 mod/settings.php:665 +msgid "Redirect" +msgstr "" + +#: mod/settings.php:640 mod/settings.php:666 +msgid "Icon url" +msgstr "" + +#: mod/settings.php:651 +msgid "You can't edit this application." +msgstr "" + +#: mod/settings.php:694 +msgid "Connected Apps" +msgstr "" + +#: mod/settings.php:698 +msgid "Client key starts with" +msgstr "" + +#: mod/settings.php:699 +msgid "No name" +msgstr "" + +#: mod/settings.php:700 +msgid "Remove authorization" +msgstr "" + +#: mod/settings.php:712 +msgid "No Plugin settings configured" +msgstr "" + +#: mod/settings.php:720 +msgid "Plugin Settings" +msgstr "" + +#: mod/settings.php:734 +msgid "Off" +msgstr "" + +#: mod/settings.php:734 +msgid "On" +msgstr "" + +#: mod/settings.php:742 +msgid "Additional Features" +msgstr "" + +#: mod/settings.php:752 mod/settings.php:756 +msgid "General Social Media Settings" +msgstr "" + +#: mod/settings.php:762 +msgid "Disable intelligent shortening" +msgstr "" + +#: mod/settings.php:764 +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:770 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "" + +#: mod/settings.php:772 +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:781 +msgid "Your legacy GNU Social account" +msgstr "" + +#: mod/settings.php:783 +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:786 +msgid "Repair OStatus subscriptions" +msgstr "" + +#: mod/settings.php:795 mod/settings.php:796 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "" + +#: mod/settings.php:795 mod/dfrn_request.php:856 +#: include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "" + +#: mod/settings.php:795 mod/settings.php:796 +msgid "enabled" +msgstr "" + +#: mod/settings.php:795 mod/settings.php:796 +msgid "disabled" +msgstr "" + +#: mod/settings.php:796 +msgid "GNU Social (OStatus)" +msgstr "" + +#: mod/settings.php:832 +msgid "Email access is disabled on this site." +msgstr "" + +#: mod/settings.php:844 +msgid "Email/Mailbox Setup" +msgstr "" + +#: mod/settings.php:845 +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:846 +msgid "Last successful email check:" +msgstr "" + +#: mod/settings.php:848 +msgid "IMAP server name:" +msgstr "" + +#: mod/settings.php:849 +msgid "IMAP port:" +msgstr "" + +#: mod/settings.php:850 +msgid "Security:" +msgstr "" + +#: mod/settings.php:850 mod/settings.php:855 +msgid "None" +msgstr "" + +#: mod/settings.php:851 +msgid "Email login name:" +msgstr "" + +#: mod/settings.php:852 +msgid "Email password:" +msgstr "" + +#: mod/settings.php:853 +msgid "Reply-to address:" +msgstr "" + +#: mod/settings.php:854 +msgid "Send public posts to all email contacts:" +msgstr "" + +#: mod/settings.php:855 +msgid "Action after import:" +msgstr "" + +#: mod/settings.php:855 +msgid "Mark as seen" +msgstr "" + +#: mod/settings.php:855 +msgid "Move to folder" +msgstr "" + +#: mod/settings.php:856 +msgid "Move to folder:" +msgstr "" + +#: mod/settings.php:941 +msgid "Display Settings" +msgstr "" + +#: mod/settings.php:947 mod/settings.php:965 +msgid "Display Theme:" +msgstr "" + +#: mod/settings.php:948 +msgid "Mobile Theme:" +msgstr "" + +#: mod/settings.php:949 +msgid "Update browser every xx seconds" +msgstr "" + +#: mod/settings.php:949 +msgid "Minimum of 10 seconds, no maximum" +msgstr "" + +#: mod/settings.php:950 +msgid "Number of items to display per page:" +msgstr "" + +#: mod/settings.php:950 mod/settings.php:951 +msgid "Maximum of 100 items" +msgstr "" + +#: mod/settings.php:951 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: mod/settings.php:952 +msgid "Don't show emoticons" +msgstr "" + +#: mod/settings.php:953 +msgid "Calendar" +msgstr "" + +#: mod/settings.php:954 +msgid "Beginning of week:" +msgstr "" + +#: mod/settings.php:955 +msgid "Don't show notices" +msgstr "" + +#: mod/settings.php:956 +msgid "Infinite scroll" +msgstr "" + +#: mod/settings.php:957 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: mod/settings.php:959 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:1035 +msgid "User Types" +msgstr "" + +#: mod/settings.php:1036 +msgid "Community Types" +msgstr "" + +#: mod/settings.php:1037 +msgid "Normal Account Page" +msgstr "" + +#: mod/settings.php:1038 +msgid "This account is a normal personal profile" +msgstr "" + +#: mod/settings.php:1041 +msgid "Soapbox Page" +msgstr "" + +#: mod/settings.php:1042 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "" + +#: mod/settings.php:1045 +msgid "Community Forum/Celebrity Account" +msgstr "" + +#: mod/settings.php:1046 +msgid "Automatically approve all connection/friend requests as read-write fans" +msgstr "" + +#: mod/settings.php:1049 +msgid "Automatic Friend Page" +msgstr "" + +#: mod/settings.php:1050 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "" + +#: mod/settings.php:1053 +msgid "Private Forum [Experimental]" +msgstr "" + +#: mod/settings.php:1054 +msgid "Private forum - approved members only" +msgstr "" + +#: mod/settings.php:1066 +msgid "OpenID:" +msgstr "" + +#: mod/settings.php:1066 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "" + +#: mod/settings.php:1076 +msgid "Publish your default profile in your local site directory?" +msgstr "" + +#: mod/settings.php:1082 +msgid "Publish your default profile in the global social directory?" +msgstr "" + +#: mod/settings.php:1090 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "" + +#: mod/settings.php:1094 include/acl_selectors.php:330 +msgid "Hide your profile details from unknown viewers?" +msgstr "" + +#: mod/settings.php:1094 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "" + +#: mod/settings.php:1099 +msgid "Allow friends to post to your profile page?" +msgstr "" + +#: mod/settings.php:1105 +msgid "Allow friends to tag your posts?" +msgstr "" + +#: mod/settings.php:1111 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: mod/settings.php:1117 +msgid "Permit unknown people to send you private mail?" +msgstr "" + +#: mod/settings.php:1125 +msgid "Profile is not published." +msgstr "" + +#: mod/settings.php:1133 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "" + +#: mod/settings.php:1140 +msgid "Automatically expire posts after this many days:" +msgstr "" + +#: mod/settings.php:1140 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "" + +#: mod/settings.php:1141 +msgid "Advanced expiration settings" +msgstr "" + +#: mod/settings.php:1142 +msgid "Advanced Expiration" +msgstr "" + +#: mod/settings.php:1143 +msgid "Expire posts:" +msgstr "" + +#: mod/settings.php:1144 +msgid "Expire personal notes:" +msgstr "" + +#: mod/settings.php:1145 +msgid "Expire starred posts:" +msgstr "" + +#: mod/settings.php:1146 +msgid "Expire photos:" +msgstr "" + +#: mod/settings.php:1147 +msgid "Only expire posts by others:" +msgstr "" + +#: mod/settings.php:1173 +msgid "Account Settings" +msgstr "" + +#: mod/settings.php:1181 +msgid "Password Settings" +msgstr "" + +#: mod/settings.php:1182 mod/register.php:271 +msgid "New Password:" +msgstr "" + +#: mod/settings.php:1183 mod/register.php:272 +msgid "Confirm:" +msgstr "" + +#: mod/settings.php:1183 +msgid "Leave password fields blank unless changing" +msgstr "" + +#: mod/settings.php:1184 +msgid "Current Password:" +msgstr "" + +#: mod/settings.php:1184 mod/settings.php:1185 +msgid "Your current password to confirm the changes" +msgstr "" + +#: mod/settings.php:1185 +msgid "Password:" +msgstr "" + +#: mod/settings.php:1189 +msgid "Basic Settings" +msgstr "" + +#: mod/settings.php:1190 include/identity.php:539 +msgid "Full Name:" +msgstr "" + +#: mod/settings.php:1191 +msgid "Email Address:" +msgstr "" + +#: mod/settings.php:1192 +msgid "Your Timezone:" +msgstr "" + +#: mod/settings.php:1193 +msgid "Default Post Location:" +msgstr "" + +#: mod/settings.php:1194 +msgid "Use Browser Location:" +msgstr "" + +#: mod/settings.php:1197 +msgid "Security and Privacy Settings" +msgstr "" + +#: mod/settings.php:1199 +msgid "Maximum Friend Requests/Day:" +msgstr "" + +#: mod/settings.php:1199 mod/settings.php:1229 +msgid "(to prevent spam abuse)" +msgstr "" + +#: mod/settings.php:1200 +msgid "Default Post Permissions" +msgstr "" + +#: mod/settings.php:1201 +msgid "(click to open/close)" +msgstr "" + +#: mod/settings.php:1210 mod/photos.php:1191 mod/photos.php:1576 +msgid "Show to Groups" +msgstr "" + +#: mod/settings.php:1211 mod/photos.php:1192 mod/photos.php:1577 +msgid "Show to Contacts" +msgstr "" + +#: mod/settings.php:1212 +msgid "Default Private Post" +msgstr "" + +#: mod/settings.php:1213 +msgid "Default Public Post" +msgstr "" + +#: mod/settings.php:1217 +msgid "Default Permissions for New Posts" +msgstr "" + +#: mod/settings.php:1229 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: mod/settings.php:1232 +msgid "Notification Settings" +msgstr "" + +#: mod/settings.php:1233 +msgid "By default post a status message when:" +msgstr "" + +#: mod/settings.php:1234 +msgid "accepting a friend request" +msgstr "" + +#: mod/settings.php:1235 +msgid "joining a forum/community" +msgstr "" + +#: mod/settings.php:1236 +msgid "making an interesting profile change" +msgstr "" + +#: mod/settings.php:1237 +msgid "Send a notification email when:" +msgstr "" + +#: mod/settings.php:1238 +msgid "You receive an introduction" +msgstr "" + +#: mod/settings.php:1239 +msgid "Your introductions are confirmed" +msgstr "" + +#: mod/settings.php:1240 +msgid "Someone writes on your profile wall" +msgstr "" + +#: mod/settings.php:1241 +msgid "Someone writes a followup comment" +msgstr "" + +#: mod/settings.php:1242 +msgid "You receive a private message" +msgstr "" + +#: mod/settings.php:1243 +msgid "You receive a friend suggestion" +msgstr "" + +#: mod/settings.php:1244 +msgid "You are tagged in a post" +msgstr "" + +#: mod/settings.php:1245 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: mod/settings.php:1247 +msgid "Activate desktop notifications" +msgstr "" + +#: mod/settings.php:1247 +msgid "Show desktop popup on new notifications" +msgstr "" + +#: mod/settings.php:1249 +msgid "Text-only notification emails" +msgstr "" + +#: mod/settings.php:1251 +msgid "Send text only notification emails, without the html part" +msgstr "" + +#: mod/settings.php:1253 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: mod/settings.php:1254 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: mod/settings.php:1257 +msgid "Relocate" +msgstr "" + +#: mod/settings.php:1258 +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:1259 +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 "" + +#: 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 "" + +#: 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 "" + +#: mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "" + +#: mod/dfrn_request.php:507 include/follow.php:72 +msgid "Disallowed profile URL." +msgstr "" + +#: 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:674 mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "" + +#: mod/dfrn_request.php:686 +msgid "Hide this contact" +msgstr "" + +#: mod/dfrn_request.php:689 +#, php-format +msgid "Welcome home %s." +msgstr "" + +#: mod/dfrn_request.php:690 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "" + +#: mod/dfrn_request.php:819 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "" + +#: mod/dfrn_request.php:840 #, php-format msgid "" -"This message was sent to you by %s, a member of the Friendica social network." +"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/item.php:991 -#, php-format -msgid "You may visit them online at %s" +#: mod/dfrn_request.php:845 +msgid "Friend/Connection Request" msgstr "" -#: mod/item.php:992 +#: mod/dfrn_request.php:846 msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" msgstr "" -#: mod/item.php:996 +#: mod/dfrn_request.php:854 include/contact_selectors.php:76 +msgid "Friendica" +msgstr "" + +#: mod/dfrn_request.php:855 +msgid "StatusNet/Federated Social Web" +msgstr "" + +#: mod/dfrn_request.php:857 #, php-format -msgid "%s posted an update." +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search " +"bar." +msgstr "" + +#: 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:107 +msgid "Your registration can not be processed." +msgstr "" + +#: mod/register.php:150 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: 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 "" + +#: mod/register.php:216 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "" + +#: 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 "" + +#: mod/register.php:218 +msgid "Your OpenID (optional): " +msgstr "" + +#: mod/register.php:232 +msgid "Include your profile in member directory?" +msgstr "" + +#: mod/register.php:256 +msgid "Membership on this site is by invitation only." +msgstr "" + +#: mod/register.php:257 +msgid "Your invitation ID: " +msgstr "" + +#: mod/register.php:268 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "" + +#: mod/register.php:269 +msgid "Your Email Address: " +msgstr "" + +#: 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 "" + +#: mod/register.php:274 +msgid "Choose a nickname: " +msgstr "" + +#: mod/register.php:277 boot.php:1249 include/nav.php:109 +msgid "Register" +msgstr "" + +#: mod/register.php:283 mod/uimport.php:64 +msgid "Import" +msgstr "" + +#: 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 +msgid "Only logged in users are permitted to perform a search." +msgstr "" + +#: mod/search.php:115 +msgid "Too Many Requests" +msgstr "" + +#: mod/search.php:116 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: mod/search.php:126 include/text.php:996 include/nav.php:119 +msgid "Search" +msgstr "" + +#: mod/search.php:224 +#, php-format +msgid "Items tagged with: %s" +msgstr "" + +#: mod/search.php:226 +#, php-format +msgid "Search results for: %s" +msgstr "" + +#: mod/directory.php:53 view/theme/diabook/theme.php:525 +#: view/theme/vier/theme.php:177 +msgid "Global Directory" +msgstr "" + +#: mod/directory.php:61 +msgid "Find on this site" +msgstr "" + +#: mod/directory.php:64 +msgid "Site Directory" +msgstr "" + +#: mod/directory.php:129 mod/profiles.php:747 +msgid "Age: " +msgstr "" + +#: mod/directory.php:132 +msgid "Gender: " +msgstr "" + +#: mod/directory.php:156 include/identity.php:273 include/identity.php:561 +msgid "Status:" +msgstr "" + +#: mod/directory.php:158 include/identity.php:275 include/identity.php:572 +msgid "Homepage:" +msgstr "" + +#: mod/directory.php:205 +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:181 +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:45 +msgid "Common Friends" +msgstr "" + +#: mod/common.php:82 +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:226 @@ -5663,687 +5110,998 @@ msgstr "" msgid "Set your current mood and tell your friends" msgstr "" -#: mod/network.php:143 +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "" + +#: mod/suggest.php:69 include/contact_widgets.php:35 +#: view/theme/diabook/theme.php:527 view/theme/vier/theme.php:179 +msgid "Friend Suggestions" +msgstr "" + +#: 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 "" + +#: 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 +msgid "Likes" +msgstr "" + +#: mod/profiles.php:348 +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: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 "" + +#: mod/profiles.php:565 +msgid " and " +msgstr "" + +#: mod/profiles.php:573 +msgid "public profile" +msgstr "" + +#: mod/profiles.php:576 #, php-format -msgid "Search Results For: %s" +msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: mod/network.php:197 include/group.php:277 -msgid "add" -msgstr "" - -#: mod/network.php:358 -msgid "Commented Order" -msgstr "" - -#: mod/network.php:361 -msgid "Sort by Comment Date" -msgstr "" - -#: mod/network.php:365 -msgid "Posted Order" -msgstr "" - -#: mod/network.php:368 -msgid "Sort by Post Date" -msgstr "" - -#: mod/network.php:378 -msgid "Posts that mention or involve you" -msgstr "" - -#: mod/network.php:385 -msgid "New" -msgstr "" - -#: mod/network.php:388 -msgid "Activity Stream - by date" -msgstr "" - -#: mod/network.php:395 -msgid "Shared Links" -msgstr "" - -#: mod/network.php:398 -msgid "Interesting Links" -msgstr "" - -#: mod/network.php:405 -msgid "Starred" -msgstr "" - -#: mod/network.php:408 -msgid "Favourite Posts" -msgstr "" - -#: mod/network.php:466 +#: mod/profiles.php:577 #, 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." +msgid " - Visit %1$s's %2$s" +msgstr "" + +#: 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:682 +msgid "Edit Profile Details" +msgstr "" + +#: mod/profiles.php:684 +msgid "Change Profile Photo" +msgstr "" + +#: mod/profiles.php:685 +msgid "View this profile" +msgstr "" + +#: mod/profiles.php:686 +msgid "Create a new profile using these settings" +msgstr "" + +#: mod/profiles.php:687 +msgid "Clone this profile" +msgstr "" + +#: mod/profiles.php:688 +msgid "Delete this profile" +msgstr "" + +#: 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 "" + +#: mod/profiles.php:698 +msgid "Your Full Name:" +msgstr "" + +#: mod/profiles.php:699 +msgid "Title/Description:" +msgstr "" + +#: mod/profiles.php:700 +msgid "Your Gender:" +msgstr "" + +#: mod/profiles.php:701 +msgid "Birthday :" +msgstr "" + +#: mod/profiles.php:702 +msgid "Street Address:" +msgstr "" + +#: mod/profiles.php:703 +msgid "Locality/City:" +msgstr "" + +#: mod/profiles.php:704 +msgid "Postal/Zip Code:" +msgstr "" + +#: mod/profiles.php:705 +msgid "Country:" +msgstr "" + +#: mod/profiles.php:706 +msgid "Region/State:" +msgstr "" + +#: mod/profiles.php:707 +msgid " Marital Status:" +msgstr "" + +#: mod/profiles.php:708 +msgid "Who: (if applicable)" +msgstr "" + +#: mod/profiles.php:709 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "" + +#: mod/profiles.php:710 +msgid "Since [date]:" +msgstr "" + +#: mod/profiles.php:711 include/identity.php:570 +msgid "Sexual Preference:" +msgstr "" + +#: mod/profiles.php:712 +msgid "Homepage URL:" +msgstr "" + +#: mod/profiles.php:713 include/identity.php:574 +msgid "Hometown:" +msgstr "" + +#: mod/profiles.php:714 include/identity.php:578 +msgid "Political Views:" +msgstr "" + +#: mod/profiles.php:715 +msgid "Religious Views:" +msgstr "" + +#: mod/profiles.php:716 +msgid "Public Keywords:" +msgstr "" + +#: mod/profiles.php:717 +msgid "Private Keywords:" +msgstr "" + +#: mod/profiles.php:718 include/identity.php:586 +msgid "Likes:" +msgstr "" + +#: mod/profiles.php:719 include/identity.php:588 +msgid "Dislikes:" +msgstr "" + +#: mod/profiles.php:720 +msgid "Example: fishing photography software" +msgstr "" + +#: mod/profiles.php:721 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "" + +#: mod/profiles.php:722 +msgid "(Used for searching profiles, never shown to others)" +msgstr "" + +#: mod/profiles.php:723 +msgid "Tell us about yourself..." +msgstr "" + +#: mod/profiles.php:724 +msgid "Hobbies/Interests" +msgstr "" + +#: mod/profiles.php:725 +msgid "Contact information and Social Networks" +msgstr "" + +#: mod/profiles.php:726 +msgid "Musical interests" +msgstr "" + +#: mod/profiles.php:727 +msgid "Books, literature" +msgstr "" + +#: mod/profiles.php:728 +msgid "Television" +msgstr "" + +#: mod/profiles.php:729 +msgid "Film/dance/culture/entertainment" +msgstr "" + +#: mod/profiles.php:730 +msgid "Love/romance" +msgstr "" + +#: mod/profiles.php:731 +msgid "Work/employment" +msgstr "" + +#: mod/profiles.php:732 +msgid "School/education" +msgstr "" + +#: mod/profiles.php:737 +msgid "" +"This is your public profile.
    It may " +"be visible to anybody using the internet." +msgstr "" + +#: mod/profiles.php:800 +msgid "Edit/Manage Profiles" +msgstr "" + +#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257 +msgid "Change profile photo" +msgstr "" + +#: mod/profiles.php:802 include/identity.php:232 +msgid "Create New Profile" +msgstr "" + +#: mod/profiles.php:813 include/identity.php:242 +msgid "Profile Image" +msgstr "" + +#: mod/profiles.php:815 include/identity.php:245 +msgid "visible to everybody" +msgstr "" + +#: mod/profiles.php:816 include/identity.php:246 +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:1079 +msgid "upload photo" +msgstr "" + +#: mod/editpost.php:112 include/conversation.php:1080 +msgid "Attach file" +msgstr "" + +#: mod/editpost.php:113 include/conversation.php:1081 +msgid "attach file" +msgstr "" + +#: mod/editpost.php:115 include/conversation.php:1083 +msgid "web link" +msgstr "" + +#: mod/editpost.php:116 include/conversation.php:1084 +msgid "Insert video link" +msgstr "" + +#: mod/editpost.php:117 include/conversation.php:1085 +msgid "video link" +msgstr "" + +#: mod/editpost.php:118 include/conversation.php:1086 +msgid "Insert audio link" +msgstr "" + +#: mod/editpost.php:119 include/conversation.php:1087 +msgid "audio link" +msgstr "" + +#: mod/editpost.php:120 include/conversation.php:1088 +msgid "Set your location" +msgstr "" + +#: mod/editpost.php:121 include/conversation.php:1089 +msgid "set location" +msgstr "" + +#: mod/editpost.php:122 include/conversation.php:1090 +msgid "Clear browser location" +msgstr "" + +#: mod/editpost.php:123 include/conversation.php:1091 +msgid "clear location" +msgstr "" + +#: mod/editpost.php:125 include/conversation.php:1097 +msgid "Permission settings" +msgstr "" + +#: mod/editpost.php:133 include/acl_selectors.php:343 +msgid "CC: email addresses" +msgstr "" + +#: mod/editpost.php:134 include/conversation.php:1106 +msgid "Public post" +msgstr "" + +#: mod/editpost.php:137 include/conversation.php:1093 +msgid "Set title" +msgstr "" + +#: mod/editpost.php:139 include/conversation.php:1095 +msgid "Categories (comma-separated list)" +msgstr "" + +#: mod/editpost.php:140 include/acl_selectors.php:344 +msgid "Example: bob@example.com, mary@example.com" +msgstr "" + +#: mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "" + +#: 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 "" + +#: mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "" + +#: 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 "" + +#: mod/friendica.php:92 +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:677 +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 "" + +#: 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/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/repair_ostatus.php:14 +msgid "Resubsribing 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 "" + +#: mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "" + +#: mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "" + +#: mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "" + +#: mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." msgstr[0] "" msgstr[1] "" -#: mod/network.php:469 -msgid "Private messages to this group are at risk of public disclosure." +#: mod/invite.php:112 +msgid "You have no more invitations available" 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 "" - -#: mod/network.php:587 -msgid "Invalid contact." -msgstr "" - -#: mod/crepair.php:107 -msgid "Contact settings applied." -msgstr "" - -#: mod/crepair.php:109 -msgid "Contact update failed." -msgstr "" - -#: mod/crepair.php:140 -msgid "Repair Contact Settings" -msgstr "" - -#: 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 "" - -#: mod/crepair.php:143 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "" - -#: mod/crepair.php:149 -msgid "Return to contact editor" -msgstr "" - -#: 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:171 -msgid "Account Nickname" -msgstr "" - -#: mod/crepair.php:172 -msgid "@Tagname - overrides Name/Nickname" -msgstr "" - -#: mod/crepair.php:173 -msgid "Account URL" -msgstr "" - -#: mod/crepair.php:174 -msgid "Friend Request URL" -msgstr "" - -#: mod/crepair.php:175 -msgid "Friend Confirm URL" -msgstr "" - -#: mod/crepair.php:176 -msgid "Notification Endpoint URL" -msgstr "" - -#: mod/crepair.php:177 -msgid "Poll/Feed URL" -msgstr "" - -#: mod/crepair.php:178 -msgid "New photo from this URL" -msgstr "" - -#: 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 "" - -#: view/theme/diabook/theme.php:123 include/nav.php:76 include/nav.php:156 -msgid "Your posts and conversations" -msgstr "" - -#: view/theme/diabook/theme.php:124 include/nav.php:77 -msgid "Your profile page" -msgstr "" - -#: view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "" - -#: view/theme/diabook/theme.php:126 include/nav.php:78 -msgid "Your photos" -msgstr "" - -#: view/theme/diabook/theme.php:127 include/nav.php:80 -msgid "Your events" -msgstr "" - -#: view/theme/diabook/theme.php:128 include/nav.php:81 -msgid "Personal notes" -msgstr "" - -#: view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "" - -#: view/theme/diabook/theme.php:130 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:624 view/theme/diabook/config.php:158 -msgid "Community Pages" -msgstr "" - -#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626 -#: view/theme/diabook/config.php:160 -msgid "Community Profiles" -msgstr "" - -#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630 -#: view/theme/diabook/config.php:164 -msgid "Last users" -msgstr "" - -#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632 -#: view/theme/diabook/config.php:166 -msgid "Last likes" -msgstr "" - -#: view/theme/diabook/theme.php:463 include/text.php:2032 -#: include/conversation.php:118 include/conversation.php:245 -msgid "event" -msgstr "" - -#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631 -#: view/theme/diabook/config.php:165 -msgid "Last photos" -msgstr "" - -#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629 -#: view/theme/diabook/config.php:163 -msgid "Find Friends" -msgstr "" - -#: view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "" - -#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "" - -#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38 -msgid "Invite Friends" -msgstr "" - -#: 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:599 view/theme/diabook/theme.php:627 -#: view/theme/diabook/config.php:161 -msgid "Help or @NewHere ?" -msgstr "" - -#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628 -#: view/theme/diabook/config.php:162 -msgid "Connect Services" -msgstr "" - -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -#: include/acl_selectors.php:337 -msgid "don't show" -msgstr "" - -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -#: include/acl_selectors.php:336 -msgid "show" -msgstr "" - -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "" - -#: view/theme/diabook/config.php:151 view/theme/dispy/config.php:73 -#: view/theme/cleanzero/config.php:84 -msgid "Set font-size for posts and comments" -msgstr "" - -#: view/theme/diabook/config.php:152 view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -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/vier/config.php:59 -msgid "Set style" -msgstr "" - -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "" - -#: view/theme/duepuntozero/config.php:44 include/text.php:1768 -#: include/user.php:255 -msgid "default" -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 "" - -#: 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 view/theme/cleanzero/config.php:86 -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/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "" - -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "" - -#: view/smarty3/compiled/de93dd804a3e4e0c280f6a6ccb3ab9b0eaebd65d.file.blob.tpl.php:106 -msgid "Click here to download" -msgstr "" - -#: view/smarty3/compiled/e3e71db17e5b19827a9ae25070c4171ecb4fad17.file.project.tpl.php:149 -#: view/smarty3/compiled/681c121d981f553bdaa9e163d8a08e0bb4bd88ec.file.tree.tpl.php:121 -msgid "Create new pull request" -msgstr "" - -#: view/smarty3/compiled/919a59d5a78d842406e0afa69e5825d6feb5dc06.file.admin_plugins.tpl.php:42 -msgid "Reload active plugins" -msgstr "" - -#: view/smarty3/compiled/1708ab6fbb592af5399438bf991f7b474286b1b1.file.contact_drop_confirm.tpl.php:22 -msgid "Drop contact" -msgstr "" - -#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:32 -msgid "Public projects on this node" -msgstr "" - -#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:79 -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:68 +#: mod/invite.php:120 #, php-format msgid "" -"Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone." +"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 "" -#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:56 -msgid "Visibility" +#: mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." msgstr "" -#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:72 -#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:69 -msgid "Create" +#: 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 "" -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:107 -msgid "No pull requests to show" +#: mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other " +"public sites or invite members." msgstr "" -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:123 -msgid "opened by" +#: mod/invite.php:132 +msgid "Send invitations" msgstr "" -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:128 -msgid "closed" +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" msgstr "" -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:133 -msgid "merged" +#: 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 "" -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:31 -msgid "Projects" +#: mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" msgstr "" -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:32 -msgid "add new" +#: mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" msgstr "" -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:51 -msgid "delete" +#: 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 "" -#: view/smarty3/compiled/4bbe2f5d3d1015c250383e229b603c26c960f47c.file.commits.tpl.php:80 -#: view/smarty3/compiled/1cdeb5a00fc3621815c983a6f754af6d16ff85c9.file.commit.tpl.php:80 -#: view/smarty3/compiled/0427bde50f01fd26112193bc4daba7b58c19ca11.file.aside.tpl.php:51 -msgid "Clone this project:" +#: mod/photos.php:54 mod/photos.php:184 mod/photos.php:1111 mod/photos.php:1237 +#: mod/photos.php:1260 mod/photos.php:1819 mod/photos.php:1831 +#: view/theme/diabook/theme.php:499 +msgid "Contact Photos" msgstr "" -#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:38 -msgid "New pull request" +#: mod/photos.php:91 include/identity.php:652 +msgid "Photo Albums" msgstr "" -#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:63 -msgid "Can't show you the diff at the moment. Sorry" +#: mod/photos.php:92 mod/photos.php:1880 +msgid "Recent Photos" msgstr "" -#: boot.php:763 +#: mod/photos.php:95 mod/photos.php:1312 mod/photos.php:1882 +msgid "Upload New Photos" +msgstr "" + +#: mod/photos.php:173 +msgid "Contact information unavailable" +msgstr "" + +#: mod/photos.php:194 +msgid "Album not found." +msgstr "" + +#: mod/photos.php:224 mod/photos.php:236 mod/photos.php:1254 +msgid "Delete Album" +msgstr "" + +#: mod/photos.php:234 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "" + +#: mod/photos.php:314 mod/photos.php:325 mod/photos.php:1572 +msgid "Delete Photo" +msgstr "" + +#: mod/photos.php:323 +msgid "Do you really want to delete this photo?" +msgstr "" + +#: mod/photos.php:698 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "" + +#: mod/photos.php:698 +msgid "a photo" +msgstr "" + +#: mod/photos.php:811 +msgid "Image file is empty." +msgstr "" + +#: mod/photos.php:978 +msgid "No photos selected" +msgstr "" + +#: mod/photos.php:1139 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "" + +#: mod/photos.php:1174 +msgid "Upload Photos" +msgstr "" + +#: mod/photos.php:1178 mod/photos.php:1249 +msgid "New album name: " +msgstr "" + +#: mod/photos.php:1179 +msgid "or existing album name: " +msgstr "" + +#: mod/photos.php:1180 +msgid "Do not show a status post for this upload" +msgstr "" + +#: mod/photos.php:1182 mod/photos.php:1567 include/acl_selectors.php:346 +msgid "Permissions" +msgstr "" + +#: mod/photos.php:1193 +msgid "Private Photo" +msgstr "" + +#: mod/photos.php:1194 +msgid "Public Photo" +msgstr "" + +#: mod/photos.php:1262 +msgid "Edit Album" +msgstr "" + +#: mod/photos.php:1268 +msgid "Show Newest First" +msgstr "" + +#: mod/photos.php:1270 +msgid "Show Oldest First" +msgstr "" + +#: mod/photos.php:1298 mod/photos.php:1865 +msgid "View Photo" +msgstr "" + +#: mod/photos.php:1345 +msgid "Permission denied. Access to this item may be restricted." +msgstr "" + +#: mod/photos.php:1347 +msgid "Photo not available" +msgstr "" + +#: mod/photos.php:1403 +msgid "View photo" +msgstr "" + +#: mod/photos.php:1403 +msgid "Edit photo" +msgstr "" + +#: mod/photos.php:1404 +msgid "Use as profile photo" +msgstr "" + +#: mod/photos.php:1429 +msgid "View Full Size" +msgstr "" + +#: mod/photos.php:1515 +msgid "Tags: " +msgstr "" + +#: mod/photos.php:1518 +msgid "[Remove any tag]" +msgstr "" + +#: mod/photos.php:1558 +msgid "New album name" +msgstr "" + +#: mod/photos.php:1559 +msgid "Caption" +msgstr "" + +#: mod/photos.php:1560 +msgid "Add a Tag" +msgstr "" + +#: mod/photos.php:1560 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "" + +#: mod/photos.php:1561 +msgid "Do not rotate" +msgstr "" + +#: mod/photos.php:1562 +msgid "Rotate CW (right)" +msgstr "" + +#: mod/photos.php:1563 +msgid "Rotate CCW (left)" +msgstr "" + +#: mod/photos.php:1578 +msgid "Private photo" +msgstr "" + +#: mod/photos.php:1579 +msgid "Public photo" +msgstr "" + +#: mod/photos.php:1601 include/conversation.php:1077 +msgid "Share" +msgstr "" + +#: mod/photos.php:1795 +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 "" + +#: 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:764 msgid "Delete this item?" msgstr "" -#: boot.php:766 +#: boot.php:767 msgid "show fewer" msgstr "" -#: boot.php:1140 +#: boot.php:1141 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: boot.php:1247 +#: boot.php:1248 msgid "Create a New Account" msgstr "" -#: boot.php:1272 include/nav.php:73 +#: boot.php:1273 include/nav.php:73 msgid "Logout" msgstr "" -#: boot.php:1275 +#: boot.php:1276 msgid "Nickname or Email address: " msgstr "" -#: boot.php:1276 +#: boot.php:1277 msgid "Password: " msgstr "" -#: boot.php:1277 +#: boot.php:1278 msgid "Remember me" msgstr "" -#: boot.php:1280 +#: boot.php:1281 msgid "Or login using OpenID: " msgstr "" -#: boot.php:1286 +#: boot.php:1287 msgid "Forgot your password?" msgstr "" -#: boot.php:1289 +#: boot.php:1290 msgid "Website Terms of Service" msgstr "" -#: boot.php:1290 +#: boot.php:1291 msgid "terms of service" msgstr "" -#: boot.php:1292 +#: boot.php:1293 msgid "Website Privacy Policy" msgstr "" -#: boot.php:1293 +#: boot.php:1294 msgid "privacy policy" msgstr "" -#: include/features.php:23 -msgid "General Features" +#: object/Item.php:95 +msgid "This entry was edited" msgstr "" -#: include/features.php:25 -msgid "Multiple Profiles" +#: object/Item.php:209 +msgid "ignore thread" msgstr "" -#: include/features.php:25 -msgid "Ability to create multiple profiles" +#: object/Item.php:210 +msgid "unignore thread" msgstr "" -#: include/features.php:30 -msgid "Post Composition Features" +#: object/Item.php:211 +msgid "toggle ignore status" msgstr "" -#: include/features.php:31 -msgid "Richtext Editor" +#: object/Item.php:324 include/conversation.php:665 +msgid "Categories:" msgstr "" -#: include/features.php:31 -msgid "Enable richtext editor" +#: object/Item.php:325 include/conversation.php:666 +msgid "Filed under:" msgstr "" -#: include/features.php:32 -msgid "Post Preview" +#: object/Item.php:337 +msgid "via" msgstr "" -#: 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 +#: include/dbstructure.php:26 +#, php-format msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." +"\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/features.php:38 -msgid "Network Sidebar Widgets" +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" msgstr "" -#: include/features.php:39 -msgid "Search by Date" +#: include/dbstructure.php:152 +msgid "Errors encountered creating database tables." msgstr "" -#: include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: include/features.php:40 -msgid "Group Filter" -msgstr "" - -#: 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 "" - -#: include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "" - -#: include/features.php:59 -msgid "Post Categories" -msgstr "" - -#: include/features.php:59 -msgid "Add categories to your posts" -msgstr "" - -#: include/features.php:60 include/contact_widgets.php:104 -msgid "Saved Folders" -msgstr "" - -#: 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 "" - -#: 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" +#: include/dbstructure.php:210 +msgid "Errors encountered performing database changes." msgstr "" #: include/auth.php:38 @@ -6360,20 +6118,737 @@ msgstr "" msgid "The error message was:" msgstr "" -#: include/event.php:22 include/bb2diaspora.php:154 -msgid "Starts:" +#: include/contact_widgets.php:6 +msgid "Add New Contact" msgstr "" -#: include/event.php:32 include/bb2diaspora.php:162 -msgid "Finishes:" +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "" + +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "" + +#: include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "" + +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "" + +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "" + +#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 +#: view/theme/vier/theme.php:178 +msgid "Similar Interests" +msgstr "" + +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "" + +#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 +#: view/theme/vier/theme.php:180 +msgid "Invite Friends" +msgstr "" + +#: include/contact_widgets.php:71 +msgid "Networks" +msgstr "" + +#: include/contact_widgets.php:74 +msgid "All Networks" +msgstr "" + +#: include/contact_widgets.php:104 include/features.php:61 +msgid "Saved Folders" +msgstr "" + +#: include/contact_widgets.php:107 include/contact_widgets.php:139 +msgid "Everything" +msgstr "" + +#: include/contact_widgets.php:136 +msgid "Categories" +msgstr "" + +#: 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:26 +msgid "Photo Location" +msgstr "" + +#: include/features.php:26 +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:31 +msgid "Post Composition Features" +msgstr "" + +#: include/features.php:32 +msgid "Richtext Editor" +msgstr "" + +#: include/features.php:32 +msgid "Enable richtext editor" +msgstr "" + +#: include/features.php:33 +msgid "Post Preview" +msgstr "" + +#: include/features.php:33 +msgid "Allow previewing posts and comments before publishing them" +msgstr "" + +#: include/features.php:34 +msgid "Auto-mention Forums" +msgstr "" + +#: include/features.php:34 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "" + +#: include/features.php:39 +msgid "Network Sidebar Widgets" +msgstr "" + +#: include/features.php:40 +msgid "Search by Date" +msgstr "" + +#: include/features.php:40 +msgid "Ability to select posts by date ranges" +msgstr "" + +#: include/features.php:41 +msgid "Group Filter" +msgstr "" + +#: include/features.php:41 +msgid "Enable widget to display Network posts only from selected group" +msgstr "" + +#: include/features.php:42 +msgid "Network Filter" +msgstr "" + +#: include/features.php:42 +msgid "Enable widget to display Network posts only from selected network" +msgstr "" + +#: include/features.php:43 +msgid "Save search terms for re-use" +msgstr "" + +#: include/features.php:48 +msgid "Network Tabs" +msgstr "" + +#: include/features.php:49 +msgid "Network Personal Tab" +msgstr "" + +#: include/features.php:49 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "" + +#: include/features.php:50 +msgid "Network New Tab" +msgstr "" + +#: include/features.php:50 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "" + +#: include/features.php:51 +msgid "Network Shared Links Tab" +msgstr "" + +#: include/features.php:51 +msgid "Enable tab to display only Network posts with links in them" +msgstr "" + +#: include/features.php:56 +msgid "Post/Comment Tools" +msgstr "" + +#: include/features.php:57 +msgid "Multiple Deletion" +msgstr "" + +#: include/features.php:57 +msgid "Select and delete multiple posts/comments at once" +msgstr "" + +#: include/features.php:58 +msgid "Edit Sent Posts" +msgstr "" + +#: include/features.php:58 +msgid "Edit and correct posts and comments after sending" +msgstr "" + +#: include/features.php:59 +msgid "Tagging" +msgstr "" + +#: include/features.php:59 +msgid "Ability to tag existing posts" +msgstr "" + +#: include/features.php:60 +msgid "Post Categories" +msgstr "" + +#: include/features.php:60 +msgid "Add categories to your posts" +msgstr "" + +#: include/features.php:61 +msgid "Ability to file posts under folders" +msgstr "" + +#: include/features.php:62 +msgid "Dislike Posts" +msgstr "" + +#: include/features.php:62 +msgid "Ability to dislike posts/comments" +msgstr "" + +#: include/features.php:63 +msgid "Star Posts" +msgstr "" + +#: include/features.php:63 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: include/features.php:64 +msgid "Mute Post Notifications" +msgstr "" + +#: include/features.php:64 +msgid "Ability to mute notifications for a thread" +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 "" + +#: 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 "" + +#: 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 "" + +#: 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: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:275 +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:256 +msgid "never" +msgstr "" + +#: include/datetime.php:262 +msgid "less than a second ago" +msgstr "" + +#: include/datetime.php:272 +msgid "year" +msgstr "" + +#: include/datetime.php:272 +msgid "years" +msgstr "" + +#: include/datetime.php:273 +msgid "months" +msgstr "" + +#: include/datetime.php:274 +msgid "weeks" +msgstr "" + +#: include/datetime.php:275 +msgid "days" +msgstr "" + +#: include/datetime.php:276 +msgid "hour" +msgstr "" + +#: include/datetime.php:276 +msgid "hours" +msgstr "" + +#: include/datetime.php:277 +msgid "minute" +msgstr "" + +#: include/datetime.php:277 +msgid "minutes" +msgstr "" + +#: include/datetime.php:278 +msgid "second" +msgstr "" + +#: include/datetime.php:278 +msgid "seconds" +msgstr "" + +#: include/datetime.php:287 +#, php-format +msgid "%1$d %2$s ago" +msgstr "" + +#: include/datetime.php:459 include/items.php:2484 +#, php-format +msgid "%s's birthday" +msgstr "" + +#: include/datetime.php:460 include/items.php:2485 +#, php-format +msgid "Happy Birthday %s" +msgstr "" + +#: include/identity.php:38 +msgid "Requested account is not available." +msgstr "" + +#: include/identity.php:121 include/identity.php:255 include/identity.php:608 +msgid "Edit profile" +msgstr "" + +#: include/identity.php:220 +msgid "Message" +msgstr "" + +#: include/identity.php:226 include/nav.php:186 +msgid "Profiles" +msgstr "" + +#: include/identity.php:226 +msgid "Manage/edit profiles" +msgstr "" + +#: include/identity.php:342 +msgid "Network:" +msgstr "" + +#: include/identity.php:374 include/identity.php:460 +msgid "g A l F d" +msgstr "" + +#: include/identity.php:375 include/identity.php:461 +msgid "F d" +msgstr "" + +#: include/identity.php:420 include/identity.php:507 +msgid "[today]" +msgstr "" + +#: include/identity.php:432 +msgid "Birthday Reminders" +msgstr "" + +#: include/identity.php:433 +msgid "Birthdays this week:" +msgstr "" + +#: include/identity.php:494 +msgid "[No description]" +msgstr "" + +#: include/identity.php:518 +msgid "Event Reminders" +msgstr "" + +#: include/identity.php:519 +msgid "Events this week:" +msgstr "" + +#: include/identity.php:546 +msgid "j F, Y" +msgstr "" + +#: include/identity.php:547 +msgid "j F" +msgstr "" + +#: include/identity.php:554 +msgid "Birthday:" +msgstr "" + +#: include/identity.php:558 +msgid "Age:" +msgstr "" + +#: include/identity.php:567 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: include/identity.php:580 +msgid "Religion:" +msgstr "" + +#: include/identity.php:584 +msgid "Hobbies/Interests:" +msgstr "" + +#: include/identity.php:591 +msgid "Contact information and Social Networks:" +msgstr "" + +#: include/identity.php:593 +msgid "Musical interests:" +msgstr "" + +#: include/identity.php:595 +msgid "Books, literature:" +msgstr "" + +#: include/identity.php:597 +msgid "Television:" +msgstr "" + +#: include/identity.php:599 +msgid "Film/dance/culture/entertainment:" +msgstr "" + +#: include/identity.php:601 +msgid "Love/Romance:" +msgstr "" + +#: include/identity.php:603 +msgid "Work/employment:" +msgstr "" + +#: include/identity.php:605 +msgid "School/education:" +msgstr "" + +#: include/identity.php:633 include/nav.php:76 +msgid "Status" +msgstr "" + +#: include/identity.php:636 +msgid "Status Messages and Posts" +msgstr "" + +#: include/identity.php:644 +msgid "Profile Details" +msgstr "" + +#: include/identity.php:657 include/identity.php:660 include/nav.php:79 +msgid "Videos" +msgstr "" + +#: include/identity.php:672 include/nav.php:141 +msgid "Events and Calendar" +msgstr "" + +#: include/identity.php:680 +msgid "Only You Can See This" +msgstr "" + +#: include/acl_selectors.php:324 +msgid "Post to Email" +msgstr "" + +#: 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 "" + +#: include/acl_selectors.php:336 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:337 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103 +msgid "don't show" msgstr "" #: include/message.php:15 include/message.php:173 msgid "[no subject]" msgstr "" -#: include/Scrape.php:603 -msgid " on Last.fm" +#: include/Contact.php:119 +msgid "stopped following" +msgstr "" + +#: include/Contact.php:236 include/conversation.php:890 +msgid "View Status" +msgstr "" + +#: include/Contact.php:238 include/conversation.php:892 +msgid "View Photos" +msgstr "" + +#: include/Contact.php:239 include/Contact.php:264 include/conversation.php:893 +msgid "Network Posts" +msgstr "" + +#: include/Contact.php:240 include/Contact.php:264 include/conversation.php:894 +msgid "Edit Contact" +msgstr "" + +#: include/Contact.php:241 +msgid "Drop Contact" +msgstr "" + +#: include/Contact.php:242 include/Contact.php:264 include/conversation.php:895 +msgid "Send PM" +msgstr "" + +#: include/Contact.php:243 include/conversation.php:899 +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 "" + +#: include/conversation.php:118 include/conversation.php:245 +#: include/text.php:2029 view/theme/diabook/theme.php:463 +msgid "event" +msgstr "" + +#: 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 "" + +#: include/conversation.php:775 +msgid "Delete Selected Items" +msgstr "" + +#: include/conversation.php:889 +msgid "Follow Thread" +msgstr "" + +#: include/conversation.php:965 +#, php-format +msgid "%s likes this." +msgstr "" + +#: include/conversation.php:965 +#, php-format +msgid "%s doesn't like this." +msgstr "" + +#: include/conversation.php:970 +#, php-format +msgid "%2$d people like this" +msgstr "" + +#: include/conversation.php:973 +#, php-format +msgid "%2$d people don't like this" +msgstr "" + +#: include/conversation.php:987 +msgid "and" +msgstr "" + +#: include/conversation.php:993 +#, php-format +msgid ", and %d other people" +msgstr "" + +#: include/conversation.php:995 +#, php-format +msgid "%s like this." +msgstr "" + +#: include/conversation.php:995 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: include/conversation.php:1022 include/conversation.php:1040 +msgid "Visible to everybody" +msgstr "" + +#: include/conversation.php:1024 include/conversation.php:1042 +msgid "Please enter a video link/URL:" +msgstr "" + +#: include/conversation.php:1025 include/conversation.php:1043 +msgid "Please enter an audio link/URL:" +msgstr "" + +#: include/conversation.php:1026 include/conversation.php:1044 +msgid "Tag term:" +msgstr "" + +#: include/conversation.php:1028 include/conversation.php:1046 +msgid "Where are you right now?" +msgstr "" + +#: include/conversation.php:1029 +msgid "Delete item(s)?" +msgstr "" + +#: include/conversation.php:1098 +msgid "permissions" +msgstr "" + +#: include/conversation.php:1121 +msgid "Post to Groups" +msgstr "" + +#: include/conversation.php:1122 +msgid "Post to Contacts" +msgstr "" + +#: include/conversation.php:1123 +msgid "Private post" +msgstr "" + +#: include/network.php:968 +msgid "view full size" msgstr "" #: include/text.php:299 @@ -6559,114 +7034,340 @@ msgstr "" msgid "surprised" msgstr "" -#: include/text.php:1266 -msgid "Monday" -msgstr "" - -#: include/text.php:1266 -msgid "Tuesday" -msgstr "" - -#: include/text.php:1266 -msgid "Wednesday" -msgstr "" - -#: include/text.php:1266 -msgid "Thursday" -msgstr "" - -#: include/text.php:1266 -msgid "Friday" -msgstr "" - -#: include/text.php:1266 -msgid "Saturday" -msgstr "" - -#: include/text.php:1266 -msgid "Sunday" -msgstr "" - -#: include/text.php:1270 -msgid "January" -msgstr "" - -#: include/text.php:1270 -msgid "February" -msgstr "" - -#: include/text.php:1270 -msgid "March" -msgstr "" - -#: include/text.php:1270 -msgid "April" -msgstr "" - -#: include/text.php:1270 -msgid "May" -msgstr "" - -#: include/text.php:1270 -msgid "June" -msgstr "" - -#: include/text.php:1270 -msgid "July" -msgstr "" - -#: include/text.php:1270 -msgid "August" -msgstr "" - -#: include/text.php:1270 -msgid "September" -msgstr "" - -#: include/text.php:1270 -msgid "October" -msgstr "" - -#: include/text.php:1270 -msgid "November" -msgstr "" - -#: include/text.php:1270 -msgid "December" -msgstr "" - -#: include/text.php:1492 +#: include/text.php:1489 msgid "bytes" msgstr "" -#: include/text.php:1524 include/text.php:1536 +#: include/text.php:1521 include/text.php:1533 msgid "Click to open/close" msgstr "" -#: include/text.php:1710 +#: include/text.php:1707 msgid "View on separate page" msgstr "" -#: include/text.php:1711 +#: include/text.php:1708 msgid "view on separate page" msgstr "" -#: include/text.php:1780 +#: include/text.php:1765 include/user.php:255 +#: view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "" + +#: include/text.php:1777 msgid "Select an alternate language" msgstr "" -#: include/text.php:2036 +#: include/text.php:2033 msgid "activity" msgstr "" -#: include/text.php:2039 +#: include/text.php:2036 msgid "post" msgstr "" -#: include/text.php:2207 +#: include/text.php:2204 msgid "Item filed" msgstr "" +#: include/bbcode.php:474 include/bbcode.php:1132 include/bbcode.php:1133 +msgid "Image/photo" +msgstr "" + +#: include/bbcode.php:572 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: include/bbcode.php:606 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "" + +#: include/bbcode.php:1092 include/bbcode.php:1112 +msgid "$1 wrote:" +msgstr "" + +#: include/bbcode.php:1141 include/bbcode.php:1142 +msgid "Encrypted content" +msgstr "" + +#: include/notifier.php:840 include/delivery.php:456 +msgid "(no subject)" +msgstr "" + +#: include/notifier.php:850 include/delivery.php:467 include/enotify.php:33 +msgid "noreply" +msgstr "" + +#: include/dba_pdo.php:72 include/dba.php:56 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "" + +#: 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 "" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "" + +#: include/contact_selectors.php:91 +msgid "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 "" + +#: include/bb2diaspora.php:154 include/event.php:22 +msgid "Starts:" +msgstr "" + +#: include/bb2diaspora.php:162 include/event.php:32 +msgid "Finishes:" +msgstr "" + +#: include/plugin.php:458 include/plugin.php:460 +msgid "Click here to upgrade." +msgstr "" + +#: 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 "" + +#: include/nav.php:76 include/nav.php:158 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 "" + +#: include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "" + +#: include/nav.php:119 +msgid "Search site content" +msgstr "" + +#: include/nav.php:137 +msgid "Conversations on this site" +msgstr "" + +#: include/nav.php:139 +msgid "Conversations on the network" +msgstr "" + +#: include/nav.php:143 +msgid "Directory" +msgstr "" + +#: include/nav.php:143 +msgid "People directory" +msgstr "" + +#: include/nav.php:145 +msgid "Information" +msgstr "" + +#: include/nav.php:145 +msgid "Information about this friendica instance" +msgstr "" + +#: include/nav.php:155 +msgid "Conversations from your friends" +msgstr "" + +#: include/nav.php:156 +msgid "Network Reset" +msgstr "" + +#: include/nav.php:156 +msgid "Load Network page with no filters" +msgstr "" + +#: include/nav.php:163 +msgid "Friend Requests" +msgstr "" + +#: include/nav.php:167 +msgid "See all notifications" +msgstr "" + +#: include/nav.php:168 +msgid "Mark all system notifications seen" +msgstr "" + +#: include/nav.php:172 +msgid "Private mail" +msgstr "" + +#: include/nav.php:173 +msgid "Inbox" +msgstr "" + +#: include/nav.php:174 +msgid "Outbox" +msgstr "" + +#: include/nav.php:178 +msgid "Manage" +msgstr "" + +#: include/nav.php:178 +msgid "Manage other pages" +msgstr "" + +#: include/nav.php:183 +msgid "Account settings" +msgstr "" + +#: include/nav.php:186 +msgid "Manage/Edit Profiles" +msgstr "" + +#: include/nav.php:188 +msgid "Manage/edit friends and contacts" +msgstr "" + +#: include/nav.php:195 +msgid "Site setup and configuration" +msgstr "" + +#: include/nav.php:199 +msgid "Navigation" +msgstr "" + +#: include/nav.php:199 +msgid "Site map" +msgstr "" + #: include/api.php:321 include/api.php:332 include/api.php:441 #: include/api.php:1141 include/api.php:1143 msgid "User not found." @@ -6707,257 +7408,134 @@ msgstr "" msgid "DB error" msgstr "" -#: include/dba.php:56 include/dba_pdo.php:72 +#: 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 "" + +#: 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 "" + +#: 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 "" + +#: include/user.php:156 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "" + +#: include/user.php:172 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "" + +#: include/user.php:230 +msgid "An error occurred during registration. Please try again." +msgstr "" + +#: include/user.php:265 +msgid "An error occurred creating your default profile. Please try again." +msgstr "" + +#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42 +msgid "Friends" +msgstr "" + +#: include/user.php:385 #, php-format -msgid "Cannot locate DNS info for database server '%s'" +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/items.php:2445 include/datetime.php:459 +#: include/user.php:389 #, php-format -msgid "%s's birthday" +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/items.php:2446 include/datetime.php:460 -#, php-format -msgid "Happy Birthday %s" -msgstr "" - -#: include/items.php:4866 -msgid "Do you really want to delete this item?" -msgstr "" - -#: include/items.php:5141 -msgid "Archives" -msgstr "" - -#: include/delivery.php:456 include/notifier.php:834 -msgid "(no subject)" -msgstr "" - -#: include/delivery.php:467 include/notifier.php:844 include/enotify.php:33 -msgid "noreply" -msgstr "" - -#: include/diaspora.php:716 +#: include/diaspora.php:719 msgid "Sharing notification from Diaspora network" msgstr "" -#: include/diaspora.php:2567 +#: include/diaspora.php:2573 msgid "Attachments:" msgstr "" -#: include/identity.php:38 -msgid "Requested account is not available." +#: include/items.php:4905 +msgid "Do you really want to delete this item?" msgstr "" -#: include/identity.php:121 include/identity.php:255 include/identity.php:608 -msgid "Edit profile" -msgstr "" - -#: include/identity.php:220 -msgid "Message" -msgstr "" - -#: include/identity.php:226 include/nav.php:184 -msgid "Profiles" -msgstr "" - -#: include/identity.php:226 -msgid "Manage/edit profiles" -msgstr "" - -#: include/identity.php:342 -msgid "Network:" -msgstr "" - -#: include/identity.php:374 include/identity.php:460 -msgid "g A l F d" -msgstr "" - -#: include/identity.php:375 include/identity.php:461 -msgid "F d" -msgstr "" - -#: include/identity.php:420 include/identity.php:507 -msgid "[today]" -msgstr "" - -#: include/identity.php:432 -msgid "Birthday Reminders" -msgstr "" - -#: include/identity.php:433 -msgid "Birthdays this week:" -msgstr "" - -#: include/identity.php:494 -msgid "[No description]" -msgstr "" - -#: include/identity.php:518 -msgid "Event Reminders" -msgstr "" - -#: include/identity.php:519 -msgid "Events this week:" -msgstr "" - -#: include/identity.php:546 -msgid "j F, Y" -msgstr "" - -#: include/identity.php:547 -msgid "j F" -msgstr "" - -#: include/identity.php:554 -msgid "Birthday:" -msgstr "" - -#: include/identity.php:558 -msgid "Age:" -msgstr "" - -#: include/identity.php:567 -#, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: include/identity.php:580 -msgid "Religion:" -msgstr "" - -#: include/identity.php:584 -msgid "Hobbies/Interests:" -msgstr "" - -#: include/identity.php:591 -msgid "Contact information and Social Networks:" -msgstr "" - -#: include/identity.php:593 -msgid "Musical interests:" -msgstr "" - -#: include/identity.php:595 -msgid "Books, literature:" -msgstr "" - -#: include/identity.php:597 -msgid "Television:" -msgstr "" - -#: include/identity.php:599 -msgid "Film/dance/culture/entertainment:" -msgstr "" - -#: include/identity.php:601 -msgid "Love/Romance:" -msgstr "" - -#: include/identity.php:603 -msgid "Work/employment:" -msgstr "" - -#: include/identity.php:605 -msgid "School/education:" -msgstr "" - -#: include/identity.php:633 include/nav.php:76 -msgid "Status" -msgstr "" - -#: include/identity.php:636 -msgid "Status Messages and Posts" -msgstr "" - -#: include/identity.php:644 -msgid "Profile Details" -msgstr "" - -#: include/identity.php:657 include/identity.php:660 include/nav.php:79 -msgid "Videos" -msgstr "" - -#: include/identity.php:671 -msgid "Events and Calendar" -msgstr "" - -#: include/identity.php:679 -msgid "Only You Can See This" -msgstr "" - -#: include/follow.php:75 -msgid "Connect URL missing." -msgstr "" - -#: include/follow.php:102 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "" - -#: 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 "" - -#: include/follow.php:125 -msgid "An author or name was not found." -msgstr "" - -#: include/follow.php:127 -msgid "No browser URL could be matched to this address." -msgstr "" - -#: 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 "" - -#: include/follow.php:146 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "" - -#: include/follow.php:253 -msgid "Unable to retrieve contact information." -msgstr "" - -#: include/follow.php:306 -msgid "following" -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." +#: include/items.php:5180 +msgid "Archives" msgstr "" #: include/profile_selectors.php:6 @@ -7104,10 +7682,6 @@ msgstr "" msgid "Sex Addict" msgstr "" -#: include/profile_selectors.php:42 include/user.php:297 include/user.php:301 -msgid "Friends" -msgstr "" - #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "" @@ -7192,461 +7766,6 @@ msgstr "" msgid "Ask me" 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/plugin.php:458 include/plugin.php:460 -msgid "Click here to upgrade." -msgstr "" - -#: 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/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 "" - -#: include/conversation.php:775 -msgid "Delete Selected Items" -msgstr "" - -#: include/conversation.php:874 -msgid "Follow Thread" -msgstr "" - -#: include/conversation.php:875 include/Contact.php:233 -msgid "View Status" -msgstr "" - -#: include/conversation.php:876 include/Contact.php:234 -msgid "View Profile" -msgstr "" - -#: include/conversation.php:877 include/Contact.php:235 -msgid "View Photos" -msgstr "" - -#: include/conversation.php:878 include/Contact.php:236 -#: include/Contact.php:259 -msgid "Network Posts" -msgstr "" - -#: include/conversation.php:879 include/Contact.php:237 -#: include/Contact.php:259 -msgid "Edit Contact" -msgstr "" - -#: include/conversation.php:880 include/Contact.php:239 -#: include/Contact.php:259 -msgid "Send PM" -msgstr "" - -#: include/conversation.php:881 include/Contact.php:232 -msgid "Poke" -msgstr "" - -#: include/conversation.php:943 -#, php-format -msgid "%s likes this." -msgstr "" - -#: include/conversation.php:943 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: 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 "" - -#: include/conversation.php:971 -#, php-format -msgid ", and %d other people" -msgstr "" - -#: include/conversation.php:973 -#, php-format -msgid "%s like this." -msgstr "" - -#: include/conversation.php:973 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: include/conversation.php:1000 include/conversation.php:1018 -msgid "Visible to everybody" -msgstr "" - -#: include/conversation.php:1002 include/conversation.php:1020 -msgid "Please enter a video link/URL:" -msgstr "" - -#: include/conversation.php:1003 include/conversation.php:1021 -msgid "Please enter an audio link/URL:" -msgstr "" - -#: 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 "" - -#: include/conversation.php:1007 -msgid "Delete item(s)?" -msgstr "" - -#: include/conversation.php:1076 -msgid "permissions" -msgstr "" - -#: include/conversation.php:1099 -msgid "Post to Groups" -msgstr "" - -#: include/conversation.php:1100 -msgid "Post to Contacts" -msgstr "" - -#: include/conversation.php:1101 -msgid "Private post" -msgstr "" - -#: include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "" - -#: include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "" - -#: include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "" - -#: include/contact_widgets.php: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 -msgid "Connect/Follow" -msgstr "" - -#: include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "" - -#: include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "" - -#: include/contact_widgets.php:71 -msgid "Networks" -msgstr "" - -#: include/contact_widgets.php:74 -msgid "All Networks" -msgstr "" - -#: include/contact_widgets.php:107 include/contact_widgets.php:139 -msgid "Everything" -msgstr "" - -#: include/contact_widgets.php:136 -msgid "Categories" -msgstr "" - -#: include/nav.php:73 -msgid "End this session" -msgstr "" - -#: include/nav.php:79 -msgid "Your videos" -msgstr "" - -#: include/nav.php:81 -msgid "Your personal notes" -msgstr "" - -#: include/nav.php:92 -msgid "Sign in" -msgstr "" - -#: 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 "" - -#: include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "" - -#: include/nav.php:119 -msgid "Search site content" -msgstr "" - -#: include/nav.php:137 -msgid "Conversations on this site" -msgstr "" - -#: include/nav.php:139 -msgid "Conversations on the network" -msgstr "" - -#: include/nav.php:141 -msgid "Directory" -msgstr "" - -#: 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 "" - -#: 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 "" - -#: include/nav.php:165 -msgid "See all notifications" -msgstr "" - -#: include/nav.php:166 -msgid "Mark all system notifications seen" -msgstr "" - -#: include/nav.php:170 -msgid "Private mail" -msgstr "" - -#: include/nav.php:171 -msgid "Inbox" -msgstr "" - -#: include/nav.php:172 -msgid "Outbox" -msgstr "" - -#: include/nav.php:176 -msgid "Manage" -msgstr "" - -#: include/nav.php:176 -msgid "Manage other pages" -msgstr "" - -#: include/nav.php:181 -msgid "Account settings" -msgstr "" - -#: include/nav.php:184 -msgid "Manage/Edit Profiles" -msgstr "" - -#: include/nav.php:186 -msgid "Manage/edit friends and contacts" -msgstr "" - -#: include/nav.php:193 -msgid "Site setup and configuration" -msgstr "" - -#: include/nav.php:197 -msgid "Navigation" -msgstr "" - -#: include/nav.php:197 -msgid "Site map" -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:60 -msgid "Weekly" -msgstr "" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "" - -#: include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "" - -#: include/contact_selectors.php:103 -msgid "Redmatrix" -msgstr "" - #: include/enotify.php:18 msgid "Friendica Notification" msgstr "" @@ -7930,153 +8049,6 @@ msgstr "" msgid "Please visit %s to approve or reject the request." 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 "" - -#: 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 "" - -#: 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 "" - -#: include/user.php:156 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "" - -#: include/user.php:172 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "" - -#: include/user.php:230 -msgid "An error occurred during registration. Please try again." -msgstr "" - -#: include/user.php:265 -msgid "An error occurred creating your default profile. Please try again." -msgstr "" - -#: 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/acl_selectors.php:324 -msgid "Post to Email" -msgstr "" - -#: 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 "" - -#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 -msgid "Image/photo" -msgstr "" - -#: 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 "" - -#: include/bbcode.php:1121 include/bbcode.php:1122 -msgid "Encrypted content" -msgstr "" - #: include/oembed.php:220 msgid "Embedded content" msgstr "" @@ -8085,148 +8057,221 @@ msgstr "" msgid "Embedding disabled" 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." +#: include/uimport.php:94 +msgid "Error decoding account file" msgstr "" -#: include/group.php:207 -msgid "Default privacy group for new contacts" +#: include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" msgstr "" -#: include/group.php:226 -msgid "Everybody" +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" 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:275 -msgid "Contacts not in any group" -msgstr "" - -#: include/Contact.php:119 -msgid "stopped following" -msgstr "" - -#: include/Contact.php:238 -msgid "Drop Contact" -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:256 -msgid "never" -msgstr "" - -#: include/datetime.php:262 -msgid "less than a second ago" -msgstr "" - -#: include/datetime.php:272 -msgid "year" -msgstr "" - -#: include/datetime.php:272 -msgid "years" -msgstr "" - -#: include/datetime.php:273 -msgid "month" -msgstr "" - -#: include/datetime.php:273 -msgid "months" -msgstr "" - -#: include/datetime.php:274 -msgid "week" -msgstr "" - -#: include/datetime.php:274 -msgid "weeks" -msgstr "" - -#: include/datetime.php:275 -msgid "day" -msgstr "" - -#: include/datetime.php:275 -msgid "days" -msgstr "" - -#: include/datetime.php:276 -msgid "hour" -msgstr "" - -#: include/datetime.php:276 -msgid "hours" -msgstr "" - -#: include/datetime.php:277 -msgid "minute" -msgstr "" - -#: include/datetime.php:277 -msgid "minutes" -msgstr "" - -#: include/datetime.php:278 -msgid "second" -msgstr "" - -#: include/datetime.php:278 -msgid "seconds" -msgstr "" - -#: include/datetime.php:287 +#: include/uimport.php:120 include/uimport.php:131 #, php-format -msgid "%1$d %2$s ago" +msgid "User '%s' already exists on this server!" msgstr "" -#: include/network.php:959 -msgid "view full size" +#: include/uimport.php:153 +msgid "User creation error" msgstr "" -#: include/dbstructure.php:26 +#: include/uimport.php:173 +msgid "User profile creation error" +msgstr "" + +#: include/uimport.php:222 #, 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." +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/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" +#: index.php:441 +msgid "toggle mobile" msgstr "" -#: include/dbstructure.php:152 -msgid "Errors encountered creating database tables." +#: view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" msgstr "" -#: include/dbstructure.php:210 -msgid "Errors encountered performing database changes." +#: 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" +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 "" + +#: 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:69 +msgid "Posts font size" +msgstr "" + +#: 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 "" + +#: 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 view/theme/vier/theme.php:216 +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:128 +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:331 +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:175 +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:157 +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/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:176 +msgid "Local Directory" +msgstr "" + +#: view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "" + +#: view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "" + +#: view/theme/vier/config.php:64 +msgid "Comma separated list of helper forums" +msgstr "" + +#: view/theme/vier/config.php:110 +msgid "Set style" +msgstr "" + +#: view/theme/vier/theme.php:220 +msgid "External link to forum" +msgstr "" + +#: view/theme/vier/theme.php:252 +msgid "Quick Start" +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 "" From 0b36b09823396834379b622c225d023b90366323 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sun, 11 Oct 2015 13:07:19 +0200 Subject: [PATCH 086/443] don't send attendance activities to diaspora (unsupported) --- include/delivery.php | 13 +++++++++---- include/notifier.php | 13 +++++++++---- 2 files changed, 18 insertions(+), 8 deletions(-) diff --git a/include/delivery.php b/include/delivery.php index a913e13170..3b554370f5 100644 --- a/include/delivery.php +++ b/include/delivery.php @@ -520,11 +520,16 @@ function delivery_run(&$argv, &$argc){ if((! $contact['pubkey']) && (! $public_message)) break; - if($target_item['verb'] === ACTIVITY_DISLIKE) { - // unsupported - break; + $unsupported_activities = array(ACTIVITY_LIKE, ACTIVITY_DISLIKE, ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE); + + //don't transmit activities which are not supported by diaspora + foreach($unsupported_activities as $act) { + if(activity_match($target_item['verb'],$act)) { + break 2; + } } - elseif(($target_item['deleted']) && ($target_item['uri'] === $target_item['parent-uri'])) { + + if(($target_item['deleted']) && ($target_item['uri'] === $target_item['parent-uri'])) { // top-level retraction logger('delivery: diaspora retract: ' . $loc); diff --git a/include/notifier.php b/include/notifier.php index d4d254f1c9..4d97649c95 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -908,11 +908,16 @@ function notifier_run(&$argv, &$argc){ if(! $contact['pubkey']) break; - if($target_item['verb'] === ACTIVITY_DISLIKE) { - // unsupported - break; + $unsupported_activities = array(ACTIVITY_LIKE, ACTIVITY_DISLIKE, ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE); + + //don't transmit activities which are not supported by diaspora + foreach($unsupported_activities as $act) { + if(activity_match($target_item['verb'],$act)) { + break 2; + } } - elseif(($target_item['deleted']) && (($target_item['uri'] === $target_item['parent-uri']) || $followup)) { + + if(($target_item['deleted']) && (($target_item['uri'] === $target_item['parent-uri']) || $followup)) { // send both top-level retractions and relayable retractions for owner to relay diaspora_send_retraction($target_item,$owner,$contact); break; From 6f04c57ed389232afb36c4ce0ed1d089f30a2672 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sun, 11 Oct 2015 15:34:56 +0200 Subject: [PATCH 087/443] correct a little mistake (ACTIVITY_LIKE is supported) --- include/notifier.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/notifier.php b/include/notifier.php index 4d97649c95..0f9cc80464 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -908,7 +908,7 @@ function notifier_run(&$argv, &$argc){ if(! $contact['pubkey']) break; - $unsupported_activities = array(ACTIVITY_LIKE, ACTIVITY_DISLIKE, ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE); + $unsupported_activities = array(ACTIVITY_DISLIKE, ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE); //don't transmit activities which are not supported by diaspora foreach($unsupported_activities as $act) { From a539455d813d99c5737ed4fa2e868278978fbf8b Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sun, 11 Oct 2015 18:20:06 +0200 Subject: [PATCH 088/443] correct a little mistake (delivery.php was not commited) --- include/delivery.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/delivery.php b/include/delivery.php index 3b554370f5..659add2ad6 100644 --- a/include/delivery.php +++ b/include/delivery.php @@ -520,7 +520,7 @@ function delivery_run(&$argv, &$argc){ if((! $contact['pubkey']) && (! $public_message)) break; - $unsupported_activities = array(ACTIVITY_LIKE, ACTIVITY_DISLIKE, ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE); + $unsupported_activities = array(ACTIVITY_DISLIKE, ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE); //don't transmit activities which are not supported by diaspora foreach($unsupported_activities as $act) { From 5c2923869ac02e2bb39074640c37264504434912 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sun, 11 Oct 2015 20:00:54 +0200 Subject: [PATCH 089/443] this got lost by merge --- include/conversation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/conversation.php b/include/conversation.php index 7417dbf812..0907b5dce2 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -987,7 +987,7 @@ function builtin_activity_puller($item, &$conv_responses) { else $url = zrl($url); - $url = '' . $item['author-name'] . ''; + $url = '' . htmlentities($item['author-name']) . ''; if(! $item['thr-parent']) $item['thr-parent'] = $item['parent-uri']; From adba75600a9ad61262c05a3cce7ed6504ca82f1c Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 11 Oct 2015 23:36:23 +0200 Subject: [PATCH 090/443] Vier: Support for the new IFTTT addon. --- view/theme/vier/theme.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/view/theme/vier/theme.php b/view/theme/vier/theme.php index e1a75b9512..49d92b93b5 100644 --- a/view/theme/vier/theme.php +++ b/view/theme/vier/theme.php @@ -293,6 +293,9 @@ function vier_community_info() { if (nodeinfo_plugin_enabled("fbpost")) $r[] = array("photo" => "images/facebook.png", "name" => "Facebook"); + if (nodeinfo_plugin_enabled("ifttt")) + $r[] = array("photo" => "addon/ifttt/ifttt.png", "name" => "IFTTT"); + if (nodeinfo_plugin_enabled("statusnet")) $r[] = array("photo" => "images/gnusocial.png", "name" => "GNU Social"); From 32a21bb02bd2776f45ab721f57530ffc8ed33aa6 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 12 Oct 2015 15:15:39 +0200 Subject: [PATCH 091/443] regeneration of the messages.po file for attendance translation --- util/messages.po | 609 ++++++++++++++++++++++++++++------------------- 1 file changed, 365 insertions(+), 244 deletions(-) diff --git a/util/messages.po b/util/messages.po index ac852f66db..81e5b5f9ad 100644 --- a/util/messages.po +++ b/util/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: 3.4.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-11 10:35+0200\n" +"POT-Creation-Date: 2015-10-12 15:14+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -57,7 +57,7 @@ msgstr "" #: mod/profiles.php:615 mod/editpost.php:10 mod/api.php:26 mod/api.php:31 #: mod/notes.php:22 mod/poke.php:135 mod/repair_ostatus.php:9 mod/invite.php:15 #: mod/invite.php:101 mod/photos.php:163 mod/photos.php:1097 mod/regmod.php:110 -#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5075 index.php:382 +#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5087 index.php:382 msgid "Permission denied." msgstr "" @@ -96,16 +96,16 @@ msgstr "" #: mod/settings.php:1144 mod/settings.php:1145 mod/settings.php:1146 #: mod/settings.php:1147 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:4907 +#: include/items.php:4919 msgid "Yes" msgstr "" #: mod/contacts.php:444 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:98 #: mod/videos.php:123 mod/message.php:213 mod/fbrowser.php:89 #: mod/fbrowser.php:125 mod/settings.php:635 mod/settings.php:661 -#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:148 -#: mod/photos.php:239 mod/photos.php:328 include/conversation.php:1115 -#: include/items.php:4910 +#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:147 +#: mod/photos.php:239 mod/photos.php:328 include/conversation.php:1222 +#: include/items.php:4922 msgid "Cancel" msgstr "" @@ -241,7 +241,7 @@ msgstr "" #: 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:1129 #: mod/photos.php:1253 mod/photos.php:1571 mod/photos.php:1622 -#: mod/photos.php:1666 mod/photos.php:1754 object/Item.php:686 +#: mod/photos.php:1670 mod/photos.php:1758 object/Item.php:707 #: 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 @@ -307,7 +307,7 @@ msgid "Update now" msgstr "" #: mod/contacts.php:625 mod/dirfind.php:141 include/contact_widgets.php:32 -#: include/conversation.php:903 +#: include/conversation.php:924 msgid "Connect/Follow" msgstr "" @@ -433,7 +433,7 @@ msgstr "" #: mod/contacts.php:807 mod/group.php:171 mod/admin.php:1087 #: mod/content.php:440 mod/content.php:743 mod/settings.php:697 -#: mod/photos.php:1711 object/Item.php:131 include/conversation.php:613 +#: mod/photos.php:1715 object/Item.php:131 include/conversation.php:635 msgid "Delete" msgstr "" @@ -507,7 +507,7 @@ msgstr "" #: mod/display.php:82 mod/display.php:283 mod/display.php:500 #: mod/viewsrc.php:15 mod/admin.php:173 mod/admin.php:1132 mod/admin.php:1352 -#: mod/notice.php:15 include/items.php:4866 +#: mod/notice.php:15 include/items.php:4878 msgid "Item not found." msgstr "" @@ -741,7 +741,7 @@ msgstr "" #: mod/profile_photo.php:204 mod/profile_photo.php:296 #: mod/profile_photo.php:305 mod/photos.php:70 mod/photos.php:184 #: mod/photos.php:767 mod/photos.php:1237 mod/photos.php:1260 -#: mod/photos.php:1843 include/user.php:343 include/user.php:350 +#: mod/photos.php:1854 include/user.php:343 include/user.php:350 #: include/user.php:357 view/theme/diabook/theme.php:500 msgid "Profile Photos" msgstr "" @@ -815,16 +815,16 @@ msgstr "" msgid "Image upload failed." msgstr "" -#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 -#: include/conversation.php:126 include/conversation.php:253 +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 +#: include/conversation.php:130 include/conversation.php:266 #: include/text.php:2031 include/diaspora.php:2140 #: 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:248 include/conversation.php:257 +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 mod/like.php:346 +#: include/conversation.php:125 include/conversation.php:134 +#: include/conversation.php:261 include/conversation.php:270 #: include/diaspora.php:2140 view/theme/diabook/theme.php:466 #: view/theme/diabook/theme.php:475 msgid "status" @@ -879,7 +879,7 @@ msgstr "" msgid "failed" msgstr "" -#: mod/ostatus_subscribe.php:69 object/Item.php:214 +#: mod/ostatus_subscribe.php:69 object/Item.php:232 msgid "ignored" msgstr "" @@ -887,7 +887,7 @@ msgstr "" msgid "Keep this window open until done." msgstr "" -#: mod/filer.php:30 include/conversation.php:1027 include/conversation.php:1045 +#: mod/filer.php:30 include/conversation.php:1134 include/conversation.php:1152 msgid "Save to Folder:" msgstr "" @@ -895,7 +895,7 @@ msgstr "" msgid "- select -" msgstr "" -#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:61 include/text.php:997 +#: mod/filer.php:31 mod/editpost.php:108 mod/notes.php:61 include/text.php:997 msgid "Save" msgstr "" @@ -1097,7 +1097,7 @@ msgstr "" msgid "Unable to set contact photo." msgstr "" -#: mod/dfrn_confirm.php:487 include/conversation.php:172 +#: mod/dfrn_confirm.php:487 include/conversation.php:185 #: include/diaspora.php:636 #, php-format msgid "%1$s is now friends with %2$s" @@ -1139,7 +1139,7 @@ msgstr "" msgid "Unable to update your contact profile details on our system" msgstr "" -#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4289 +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4301 msgid "[Name Withheld]" msgstr "" @@ -1176,7 +1176,7 @@ msgstr "" msgid "View Video" msgstr "" -#: mod/videos.php:382 mod/photos.php:1871 +#: mod/videos.php:382 mod/photos.php:1882 msgid "View Album" msgstr "" @@ -1188,7 +1188,7 @@ msgstr "" msgid "Upload New Videos" msgstr "" -#: mod/tagger.php:95 include/conversation.php:265 +#: mod/tagger.php:95 include/conversation.php:278 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" @@ -1266,7 +1266,7 @@ msgid "" "Password reset failed." msgstr "" -#: mod/lostpass.php:109 boot.php:1288 +#: mod/lostpass.php:109 boot.php:1292 msgid "Password Reset" msgstr "" @@ -1342,17 +1342,37 @@ msgstr "" msgid "Reset" msgstr "" -#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2156 +#: mod/like.php:170 include/conversation.php:122 include/conversation.php:258 +#: include/text.php:2029 view/theme/diabook/theme.php:463 +msgid "event" +msgstr "" + +#: mod/like.php:187 include/conversation.php:141 include/diaspora.php:2156 #: view/theme/diabook/theme.php:480 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "" -#: mod/like.php:168 include/conversation.php:140 +#: mod/like.php:189 include/conversation.php:144 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "" +#: mod/like.php:191 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "" + +#: mod/like.php:193 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "" + +#: mod/like.php:195 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "" + #: mod/ping.php:233 msgid "{0} wants to be your friend" msgstr "" @@ -1653,7 +1673,7 @@ msgstr "" #: 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:1023 include/conversation.php:1041 +#: include/conversation.php:1130 include/conversation.php:1148 msgid "Please enter a link URL:" msgstr "" @@ -1675,19 +1695,19 @@ msgid "Your message:" msgstr "" #: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154 -#: mod/editpost.php:110 include/conversation.php:1078 +#: mod/editpost.php:109 include/conversation.php:1185 msgid "Upload photo" msgstr "" #: mod/message.php:334 mod/message.php:564 mod/wallmessage.php:155 -#: mod/editpost.php:114 include/conversation.php:1082 +#: mod/editpost.php:113 include/conversation.php:1189 msgid "Insert web link" msgstr "" #: 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:1602 object/Item.php:372 include/conversation.php:691 -#: include/conversation.php:1096 +#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:123 +#: mod/photos.php:1602 object/Item.php:393 include/conversation.php:713 +#: include/conversation.php:1203 msgid "Please wait" msgstr "" @@ -1843,7 +1863,7 @@ msgid "" "entries from this contact." msgstr "" -#: mod/bookmarklet.php:12 boot.php:1274 include/nav.php:92 +#: mod/bookmarklet.php:12 boot.php:1278 include/nav.php:92 msgid "Login" msgstr "" @@ -1865,8 +1885,8 @@ msgstr "" msgid "Connect" msgstr "" -#: mod/dirfind.php:140 include/Contact.php:237 include/conversation.php:891 -#: include/conversation.php:905 +#: mod/dirfind.php:140 include/Contact.php:237 include/conversation.php:912 +#: include/conversation.php:926 msgid "View Profile" msgstr "" @@ -3478,49 +3498,49 @@ msgstr "" msgid "Share this event" msgstr "" -#: mod/events.php:564 mod/content.php:721 mod/editpost.php:145 -#: mod/photos.php:1623 mod/photos.php:1667 mod/photos.php:1755 -#: object/Item.php:695 include/conversation.php:1111 +#: mod/events.php:564 mod/content.php:721 mod/editpost.php:144 +#: mod/photos.php:1623 mod/photos.php:1671 mod/photos.php:1759 +#: object/Item.php:716 include/conversation.php:1218 msgid "Preview" msgstr "" -#: mod/content.php:439 mod/content.php:742 mod/photos.php:1710 -#: object/Item.php:130 include/conversation.php:612 +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1714 +#: object/Item.php:130 include/conversation.php:634 msgid "Select" msgstr "" #: mod/content.php:473 mod/content.php:854 mod/content.php:855 -#: object/Item.php:334 object/Item.php:335 include/conversation.php:653 +#: object/Item.php:354 object/Item.php:355 include/conversation.php:675 #, php-format msgid "View %s's profile @ %s" msgstr "" -#: mod/content.php:483 mod/content.php:866 object/Item.php:348 -#: include/conversation.php:673 +#: mod/content.php:483 mod/content.php:866 object/Item.php:368 +#: include/conversation.php:695 #, php-format msgid "%s from %s" msgstr "" -#: mod/content.php:499 include/conversation.php:689 +#: mod/content.php:499 include/conversation.php:711 msgid "View in context" msgstr "" -#: mod/content.php:605 object/Item.php:395 +#: mod/content.php:605 object/Item.php:416 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: mod/content.php:607 object/Item.php:397 object/Item.php:410 +#: mod/content.php:607 object/Item.php:418 object/Item.php:431 #: include/text.php:2035 msgid "comment" msgid_plural "comments" msgstr[0] "" msgstr[1] "" -#: mod/content.php:608 boot.php:766 object/Item.php:398 -#: include/contact_widgets.php:205 include/items.php:5186 +#: mod/content.php:608 boot.php:770 object/Item.php:419 +#: include/contact_widgets.php:205 include/items.php:5198 msgid "show more" msgstr "" @@ -3528,69 +3548,69 @@ msgstr "" msgid "Private Message" msgstr "" -#: mod/content.php:686 mod/photos.php:1599 object/Item.php:232 +#: mod/content.php:686 mod/photos.php:1599 object/Item.php:250 msgid "I like this (toggle)" msgstr "" -#: mod/content.php:686 object/Item.php:232 +#: mod/content.php:686 object/Item.php:250 msgid "like" msgstr "" -#: mod/content.php:687 mod/photos.php:1600 object/Item.php:233 +#: mod/content.php:687 mod/photos.php:1600 object/Item.php:251 msgid "I don't like this (toggle)" msgstr "" -#: mod/content.php:687 object/Item.php:233 +#: mod/content.php:687 object/Item.php:251 msgid "dislike" msgstr "" -#: mod/content.php:689 object/Item.php:235 +#: mod/content.php:689 object/Item.php:253 msgid "Share this" msgstr "" -#: mod/content.php:689 object/Item.php:235 +#: mod/content.php:689 object/Item.php:253 msgid "share" msgstr "" -#: mod/content.php:709 mod/photos.php:1619 mod/photos.php:1663 -#: mod/photos.php:1751 object/Item.php:683 +#: mod/content.php:709 mod/photos.php:1619 mod/photos.php:1667 +#: mod/photos.php:1755 object/Item.php:704 msgid "This is you" msgstr "" -#: mod/content.php:711 mod/photos.php:1621 mod/photos.php:1665 -#: mod/photos.php:1753 boot.php:765 object/Item.php:369 object/Item.php:685 +#: mod/content.php:711 mod/photos.php:1621 mod/photos.php:1669 +#: mod/photos.php:1757 boot.php:769 object/Item.php:390 object/Item.php:706 msgid "Comment" msgstr "" -#: mod/content.php:713 object/Item.php:687 +#: mod/content.php:713 object/Item.php:708 msgid "Bold" msgstr "" -#: mod/content.php:714 object/Item.php:688 +#: mod/content.php:714 object/Item.php:709 msgid "Italic" msgstr "" -#: mod/content.php:715 object/Item.php:689 +#: mod/content.php:715 object/Item.php:710 msgid "Underline" msgstr "" -#: mod/content.php:716 object/Item.php:690 +#: mod/content.php:716 object/Item.php:711 msgid "Quote" msgstr "" -#: mod/content.php:717 object/Item.php:691 +#: mod/content.php:717 object/Item.php:712 msgid "Code" msgstr "" -#: mod/content.php:718 object/Item.php:692 +#: mod/content.php:718 object/Item.php:713 msgid "Image" msgstr "" -#: mod/content.php:719 object/Item.php:693 +#: mod/content.php:719 object/Item.php:714 msgid "Link" msgstr "" -#: mod/content.php:720 object/Item.php:694 +#: mod/content.php:720 object/Item.php:715 msgid "Video" msgstr "" @@ -3598,23 +3618,23 @@ msgstr "" msgid "Edit" msgstr "" -#: mod/content.php:755 object/Item.php:196 +#: mod/content.php:755 object/Item.php:214 msgid "add star" msgstr "" -#: mod/content.php:756 object/Item.php:197 +#: mod/content.php:756 object/Item.php:215 msgid "remove star" msgstr "" -#: mod/content.php:757 object/Item.php:198 +#: mod/content.php:757 object/Item.php:216 msgid "toggle star status" msgstr "" -#: mod/content.php:760 object/Item.php:201 +#: mod/content.php:760 object/Item.php:219 msgid "starred" msgstr "" -#: mod/content.php:761 object/Item.php:221 +#: mod/content.php:761 object/Item.php:239 msgid "add tag" msgstr "" @@ -3622,15 +3642,15 @@ msgstr "" msgid "save to folder" msgstr "" -#: mod/content.php:856 object/Item.php:336 +#: mod/content.php:856 object/Item.php:356 msgid "to" msgstr "" -#: mod/content.php:857 object/Item.php:338 +#: mod/content.php:857 object/Item.php:358 msgid "Wall-to-Wall" msgstr "" -#: mod/content.php:858 object/Item.php:339 +#: mod/content.php:858 object/Item.php:359 msgid "via Wall-To-Wall:" msgstr "" @@ -4958,7 +4978,7 @@ msgstr "" msgid "Choose a nickname: " msgstr "" -#: mod/register.php:277 boot.php:1249 include/nav.php:109 +#: mod/register.php:277 boot.php:1253 include/nav.php:109 msgid "Register" msgstr "" @@ -5097,7 +5117,7 @@ msgid "" "of your account (photos are not exported)" msgstr "" -#: mod/mood.php:62 include/conversation.php:226 +#: mod/mood.php:62 include/conversation.php:239 #, php-format msgid "%1$s is currently %2$s" msgstr "" @@ -5157,11 +5177,11 @@ msgstr "" msgid "Romantic Partner" msgstr "" -#: mod/profiles.php:344 +#: mod/profiles.php:344 mod/photos.php:1639 include/conversation.php:508 msgid "Likes" msgstr "" -#: mod/profiles.php:348 +#: mod/profiles.php:348 mod/photos.php:1639 include/conversation.php:508 msgid "Dislikes" msgstr "" @@ -5462,75 +5482,75 @@ msgstr "" msgid "Edit post" msgstr "" -#: mod/editpost.php:111 include/conversation.php:1079 +#: mod/editpost.php:110 include/conversation.php:1186 msgid "upload photo" msgstr "" -#: mod/editpost.php:112 include/conversation.php:1080 +#: mod/editpost.php:111 include/conversation.php:1187 msgid "Attach file" msgstr "" -#: mod/editpost.php:113 include/conversation.php:1081 +#: mod/editpost.php:112 include/conversation.php:1188 msgid "attach file" msgstr "" -#: mod/editpost.php:115 include/conversation.php:1083 +#: mod/editpost.php:114 include/conversation.php:1190 msgid "web link" msgstr "" -#: mod/editpost.php:116 include/conversation.php:1084 +#: mod/editpost.php:115 include/conversation.php:1191 msgid "Insert video link" msgstr "" -#: mod/editpost.php:117 include/conversation.php:1085 +#: mod/editpost.php:116 include/conversation.php:1192 msgid "video link" msgstr "" -#: mod/editpost.php:118 include/conversation.php:1086 +#: mod/editpost.php:117 include/conversation.php:1193 msgid "Insert audio link" msgstr "" -#: mod/editpost.php:119 include/conversation.php:1087 +#: mod/editpost.php:118 include/conversation.php:1194 msgid "audio link" msgstr "" -#: mod/editpost.php:120 include/conversation.php:1088 +#: mod/editpost.php:119 include/conversation.php:1195 msgid "Set your location" msgstr "" -#: mod/editpost.php:121 include/conversation.php:1089 +#: mod/editpost.php:120 include/conversation.php:1196 msgid "set location" msgstr "" -#: mod/editpost.php:122 include/conversation.php:1090 +#: mod/editpost.php:121 include/conversation.php:1197 msgid "Clear browser location" msgstr "" -#: mod/editpost.php:123 include/conversation.php:1091 +#: mod/editpost.php:122 include/conversation.php:1198 msgid "clear location" msgstr "" -#: mod/editpost.php:125 include/conversation.php:1097 +#: mod/editpost.php:124 include/conversation.php:1204 msgid "Permission settings" msgstr "" -#: mod/editpost.php:133 include/acl_selectors.php:343 +#: mod/editpost.php:132 include/acl_selectors.php:343 msgid "CC: email addresses" msgstr "" -#: mod/editpost.php:134 include/conversation.php:1106 +#: mod/editpost.php:133 include/conversation.php:1213 msgid "Public post" msgstr "" -#: mod/editpost.php:137 include/conversation.php:1093 +#: mod/editpost.php:136 include/conversation.php:1200 msgid "Set title" msgstr "" -#: mod/editpost.php:139 include/conversation.php:1095 +#: mod/editpost.php:138 include/conversation.php:1202 msgid "Categories (comma-separated list)" msgstr "" -#: mod/editpost.php:140 include/acl_selectors.php:344 +#: mod/editpost.php:139 include/acl_selectors.php:344 msgid "Example: bob@example.com, mary@example.com" msgstr "" @@ -5754,7 +5774,7 @@ msgid "" msgstr "" #: mod/photos.php:54 mod/photos.php:184 mod/photos.php:1111 mod/photos.php:1237 -#: mod/photos.php:1260 mod/photos.php:1819 mod/photos.php:1831 +#: mod/photos.php:1260 mod/photos.php:1830 mod/photos.php:1842 #: view/theme/diabook/theme.php:499 msgid "Contact Photos" msgstr "" @@ -5763,11 +5783,11 @@ msgstr "" msgid "Photo Albums" msgstr "" -#: mod/photos.php:92 mod/photos.php:1880 +#: mod/photos.php:92 mod/photos.php:1891 msgid "Recent Photos" msgstr "" -#: mod/photos.php:95 mod/photos.php:1312 mod/photos.php:1882 +#: mod/photos.php:95 mod/photos.php:1312 mod/photos.php:1893 msgid "Upload New Photos" msgstr "" @@ -5857,7 +5877,7 @@ msgstr "" msgid "Show Oldest First" msgstr "" -#: mod/photos.php:1298 mod/photos.php:1865 +#: mod/photos.php:1298 mod/photos.php:1876 msgid "View Photo" msgstr "" @@ -5929,11 +5949,26 @@ msgstr "" msgid "Public photo" msgstr "" -#: mod/photos.php:1601 include/conversation.php:1077 +#: mod/photos.php:1601 include/conversation.php:1184 msgid "Share" msgstr "" -#: mod/photos.php:1795 +#: mod/photos.php:1640 include/conversation.php:509 +#: include/conversation.php:1406 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: mod/photos.php:1640 include/conversation.php:509 +msgid "Not attending" +msgstr "" + +#: mod/photos.php:1640 include/conversation.php:509 +msgid "Might attend" +msgstr "" + +#: mod/photos.php:1805 msgid "Map" msgstr "" @@ -5993,60 +6028,60 @@ msgstr "" msgid "Item was not found." msgstr "" -#: boot.php:764 +#: boot.php:768 msgid "Delete this item?" msgstr "" -#: boot.php:767 +#: boot.php:771 msgid "show fewer" msgstr "" -#: boot.php:1141 +#: boot.php:1145 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: boot.php:1248 +#: boot.php:1252 msgid "Create a New Account" msgstr "" -#: boot.php:1273 include/nav.php:73 +#: boot.php:1277 include/nav.php:73 msgid "Logout" msgstr "" -#: boot.php:1276 +#: boot.php:1280 msgid "Nickname or Email address: " msgstr "" -#: boot.php:1277 +#: boot.php:1281 msgid "Password: " msgstr "" -#: boot.php:1278 +#: boot.php:1282 msgid "Remember me" msgstr "" -#: boot.php:1281 +#: boot.php:1285 msgid "Or login using OpenID: " msgstr "" -#: boot.php:1287 +#: boot.php:1291 msgid "Forgot your password?" msgstr "" -#: boot.php:1290 +#: boot.php:1294 msgid "Website Terms of Service" msgstr "" -#: boot.php:1291 +#: boot.php:1295 msgid "terms of service" msgstr "" -#: boot.php:1293 +#: boot.php:1297 msgid "Website Privacy Policy" msgstr "" -#: boot.php:1294 +#: boot.php:1298 msgid "privacy policy" msgstr "" @@ -6054,27 +6089,39 @@ msgstr "" msgid "This entry was edited" msgstr "" -#: object/Item.php:209 +#: object/Item.php:188 +msgid "I will attend" +msgstr "" + +#: object/Item.php:188 +msgid "I will not attend" +msgstr "" + +#: object/Item.php:188 +msgid "I might attend" +msgstr "" + +#: object/Item.php:227 msgid "ignore thread" msgstr "" -#: object/Item.php:210 +#: object/Item.php:228 msgid "unignore thread" msgstr "" -#: object/Item.php:211 +#: object/Item.php:229 msgid "toggle ignore status" msgstr "" -#: object/Item.php:324 include/conversation.php:665 +#: object/Item.php:342 include/conversation.php:687 msgid "Categories:" msgstr "" -#: object/Item.php:325 include/conversation.php:666 +#: object/Item.php:343 include/conversation.php:688 msgid "Filed under:" msgstr "" -#: object/Item.php:337 +#: object/Item.php:357 msgid "via" msgstr "" @@ -6691,19 +6738,19 @@ msgstr "" msgid "stopped following" msgstr "" -#: include/Contact.php:236 include/conversation.php:890 +#: include/Contact.php:236 include/conversation.php:911 msgid "View Status" msgstr "" -#: include/Contact.php:238 include/conversation.php:892 +#: include/Contact.php:238 include/conversation.php:913 msgid "View Photos" msgstr "" -#: include/Contact.php:239 include/Contact.php:264 include/conversation.php:893 +#: include/Contact.php:239 include/Contact.php:264 include/conversation.php:914 msgid "Network Posts" msgstr "" -#: include/Contact.php:240 include/Contact.php:264 include/conversation.php:894 +#: include/Contact.php:240 include/Contact.php:264 include/conversation.php:915 msgid "Edit Contact" msgstr "" @@ -6711,11 +6758,11 @@ msgstr "" msgid "Drop Contact" msgstr "" -#: include/Contact.php:242 include/Contact.php:264 include/conversation.php:895 +#: include/Contact.php:242 include/Contact.php:264 include/conversation.php:916 msgid "Send PM" msgstr "" -#: include/Contact.php:243 include/conversation.php:899 +#: include/Contact.php:243 include/conversation.php:920 msgid "Poke" msgstr "" @@ -6737,116 +6784,189 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "" -#: include/conversation.php:118 include/conversation.php:245 -#: include/text.php:2029 view/theme/diabook/theme.php:463 -msgid "event" +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" msgstr "" -#: include/conversation.php:206 +#: 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:290 +#: include/conversation.php:303 msgid "post/item" msgstr "" -#: include/conversation.php:291 +#: include/conversation.php:304 #, php-format msgid "%1$s marked %2$s's %3$s as favorite" msgstr "" -#: include/conversation.php:771 +#: include/conversation.php:792 msgid "remove" msgstr "" -#: include/conversation.php:775 +#: include/conversation.php:796 msgid "Delete Selected Items" msgstr "" -#: include/conversation.php:889 +#: include/conversation.php:910 msgid "Follow Thread" msgstr "" -#: include/conversation.php:965 -#, php-format -msgid "%s likes this." -msgstr "" - -#: include/conversation.php:965 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: include/conversation.php:970 -#, php-format -msgid "%2$d people like this" -msgstr "" - -#: include/conversation.php:973 -#, php-format -msgid "%2$d people don't like this" -msgstr "" - -#: include/conversation.php:987 +#: include/conversation.php:1036 msgid "and" msgstr "" -#: include/conversation.php:993 +#: include/conversation.php:1042 #, php-format msgid ", and %d other people" msgstr "" -#: include/conversation.php:995 +#: include/conversation.php:1052 #, php-format -msgid "%s like this." +msgid "%s likes this." msgstr "" -#: include/conversation.php:995 +#: include/conversation.php:1055 #, php-format -msgid "%s don't like this." +msgid "%s doesn't like this." msgstr "" -#: include/conversation.php:1022 include/conversation.php:1040 +#: include/conversation.php:1058 +#, php-format +msgid "%s attends." +msgstr "" + +#: include/conversation.php:1061 +#, php-format +msgid "%s doesn't attend." +msgstr "" + +#: include/conversation.php:1064 +#, php-format +msgid "%s attends maybe." +msgstr "" + +#: include/conversation.php:1073 +#, php-format +msgid "%2$d people like this" +msgstr "" + +#: include/conversation.php:1076 +#, php-format +msgid "%2$d people don't like this" +msgstr "" + +#: include/conversation.php:1079 +#, php-format +msgid "%2$d people attend" +msgstr "" + +#: include/conversation.php:1082 +#, php-format +msgid "%2$d people don't attend" +msgstr "" + +#: include/conversation.php:1085 +#, php-format +msgid "%2$d people anttend maybe" +msgstr "" + +#: include/conversation.php:1087 +#, php-format +msgid "%2$d people agree" +msgstr "" + +#: include/conversation.php:1090 +#, php-format +msgid "%2$d people don't agree" +msgstr "" + +#: include/conversation.php:1093 +#, php-format +msgid "%2$d people abstains" +msgstr "" + +#: include/conversation.php:1129 include/conversation.php:1147 msgid "Visible to everybody" msgstr "" -#: include/conversation.php:1024 include/conversation.php:1042 +#: include/conversation.php:1131 include/conversation.php:1149 msgid "Please enter a video link/URL:" msgstr "" -#: include/conversation.php:1025 include/conversation.php:1043 +#: include/conversation.php:1132 include/conversation.php:1150 msgid "Please enter an audio link/URL:" msgstr "" -#: include/conversation.php:1026 include/conversation.php:1044 +#: include/conversation.php:1133 include/conversation.php:1151 msgid "Tag term:" msgstr "" -#: include/conversation.php:1028 include/conversation.php:1046 +#: include/conversation.php:1135 include/conversation.php:1153 msgid "Where are you right now?" msgstr "" -#: include/conversation.php:1029 +#: include/conversation.php:1136 msgid "Delete item(s)?" msgstr "" -#: include/conversation.php:1098 +#: include/conversation.php:1205 msgid "permissions" msgstr "" -#: include/conversation.php:1121 +#: include/conversation.php:1228 msgid "Post to Groups" msgstr "" -#: include/conversation.php:1122 +#: include/conversation.php:1229 msgid "Post to Contacts" msgstr "" -#: include/conversation.php:1123 +#: include/conversation.php:1230 msgid "Private post" msgstr "" +#: include/conversation.php:1378 +msgid "View all" +msgstr "" + +#: include/conversation.php:1400 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1403 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1409 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1412 include/profile_selectors.php:6 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "" +msgstr[1] "" + #: include/network.php:968 msgid "view full size" msgstr "" @@ -7099,7 +7219,7 @@ msgstr "" msgid "(no subject)" msgstr "" -#: include/notifier.php:850 include/delivery.php:467 include/enotify.php:33 +#: include/notifier.php:850 include/delivery.php:467 include/enotify.php:37 msgid "noreply" msgstr "" @@ -7530,11 +7650,11 @@ msgstr "" msgid "Attachments:" msgstr "" -#: include/items.php:4905 +#: include/items.php:4917 msgid "Do you really want to delete this item?" msgstr "" -#: include/items.php:5180 +#: include/items.php:5192 msgid "Archives" msgstr "" @@ -7590,10 +7710,6 @@ msgstr "" msgid "Other" msgstr "" -#: include/profile_selectors.php:6 -msgid "Undecided" -msgstr "" - #: include/profile_selectors.php:23 msgid "Males" msgstr "" @@ -7774,242 +7890,247 @@ msgstr "" msgid "Thank You," msgstr "" -#: include/enotify.php:23 +#: include/enotify.php:24 #, php-format msgid "%s Administrator" msgstr "" -#: include/enotify.php:64 +#: include/enotify.php:26 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "" + +#: include/enotify.php:68 #, php-format msgid "%s " msgstr "" -#: include/enotify.php:78 +#: include/enotify.php:82 #, php-format msgid "[Friendica:Notify] New mail received at %s" msgstr "" -#: include/enotify.php:80 +#: include/enotify.php:84 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "" -#: include/enotify.php:81 +#: include/enotify.php:85 #, php-format msgid "%1$s sent you %2$s." msgstr "" -#: include/enotify.php:81 +#: include/enotify.php:85 msgid "a private message" msgstr "" -#: include/enotify.php:82 +#: include/enotify.php:86 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "" -#: include/enotify.php:134 +#: include/enotify.php:138 #, php-format msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgstr "" -#: include/enotify.php:141 +#: include/enotify.php:145 #, php-format msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgstr "" -#: include/enotify.php:149 +#: include/enotify.php:153 #, php-format msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgstr "" -#: include/enotify.php:159 +#: include/enotify.php:163 #, php-format msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" msgstr "" -#: include/enotify.php:160 +#: include/enotify.php:164 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "" -#: include/enotify.php:163 include/enotify.php:178 include/enotify.php:191 -#: include/enotify.php:204 include/enotify.php:222 include/enotify.php:235 +#: 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:170 +#: include/enotify.php:174 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" msgstr "" -#: include/enotify.php:172 +#: include/enotify.php:176 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "" -#: include/enotify.php:174 +#: include/enotify.php:178 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "" -#: include/enotify.php:185 +#: include/enotify.php:189 #, php-format msgid "[Friendica:Notify] %s tagged you" msgstr "" -#: include/enotify.php:186 +#: include/enotify.php:190 #, php-format msgid "%1$s tagged you at %2$s" msgstr "" -#: include/enotify.php:187 +#: include/enotify.php:191 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." msgstr "" -#: include/enotify.php:198 +#: include/enotify.php:202 #, php-format msgid "[Friendica:Notify] %s shared a new post" msgstr "" -#: include/enotify.php:199 +#: include/enotify.php:203 #, php-format msgid "%1$s shared a new post at %2$s" msgstr "" -#: include/enotify.php:200 +#: include/enotify.php:204 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." msgstr "" -#: include/enotify.php:212 +#: include/enotify.php:216 #, php-format msgid "[Friendica:Notify] %1$s poked you" msgstr "" -#: include/enotify.php:213 +#: include/enotify.php:217 #, php-format msgid "%1$s poked you at %2$s" msgstr "" -#: include/enotify.php:214 +#: include/enotify.php:218 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "" -#: include/enotify.php:229 +#: include/enotify.php:233 #, php-format msgid "[Friendica:Notify] %s tagged your post" msgstr "" -#: include/enotify.php:230 +#: include/enotify.php:234 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "" -#: include/enotify.php:231 +#: include/enotify.php:235 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "" -#: include/enotify.php:242 +#: include/enotify.php:246 msgid "[Friendica:Notify] Introduction received" msgstr "" -#: include/enotify.php:243 +#: include/enotify.php:247 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "" -#: include/enotify.php:244 +#: include/enotify.php:248 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "" -#: include/enotify.php:247 include/enotify.php:289 +#: include/enotify.php:251 include/enotify.php:293 #, php-format msgid "You may visit their profile at %s" msgstr "" -#: include/enotify.php:249 +#: include/enotify.php:253 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "" -#: include/enotify.php:257 +#: include/enotify.php:261 msgid "[Friendica:Notify] A new person is sharing with you" msgstr "" -#: include/enotify.php:258 include/enotify.php:259 +#: include/enotify.php:262 include/enotify.php:263 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "" -#: include/enotify.php:265 +#: include/enotify.php:269 msgid "[Friendica:Notify] You have a new follower" msgstr "" -#: include/enotify.php:266 include/enotify.php:267 +#: 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:280 +#: include/enotify.php:284 msgid "[Friendica:Notify] Friend suggestion received" msgstr "" -#: include/enotify.php:281 +#: include/enotify.php:285 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "" -#: include/enotify.php:282 +#: 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:287 +#: include/enotify.php:291 msgid "Name:" msgstr "" -#: include/enotify.php:288 +#: include/enotify.php:292 msgid "Photo:" msgstr "" -#: include/enotify.php:291 +#: include/enotify.php:295 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: include/enotify.php:299 include/enotify.php:312 +#: include/enotify.php:303 include/enotify.php:316 msgid "[Friendica:Notify] Connection accepted" msgstr "" -#: include/enotify.php:300 include/enotify.php:313 +#: 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:301 include/enotify.php:314 +#: 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:304 +#: include/enotify.php:308 msgid "" "You are now mutual friends and may exchange status updates, photos, and " "email\n" "\twithout restriction." msgstr "" -#: include/enotify.php:307 include/enotify.php:321 +#: 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/enotify.php:317 +#: include/enotify.php:321 #, php-format msgid "" "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " @@ -8018,33 +8139,33 @@ msgid "" "automatically." msgstr "" -#: include/enotify.php:319 +#: include/enotify.php:323 #, 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:332 +#: include/enotify.php:336 msgid "[Friendica System:Notify] registration request" msgstr "" -#: include/enotify.php:333 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "" - -#: include/enotify.php:334 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "" - #: include/enotify.php:337 #, php-format +msgid "You've received a registration request from '%1$s' at %2$s" +msgstr "" + +#: include/enotify.php:338 +#, php-format +msgid "You've received a [url=%1$s]registration request[/url] from %2$s." +msgstr "" + +#: include/enotify.php:341 +#, php-format msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" msgstr "" -#: include/enotify.php:340 +#: include/enotify.php:344 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "" @@ -8186,7 +8307,7 @@ 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:331 +#: view/theme/vier/theme.php:334 msgid "Connect Services" msgstr "" From 3debdf0a9173c867014278001e26b7e3ab717d9a Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 12 Oct 2015 15:34:18 +0200 Subject: [PATCH 092/443] attend functionality for quattro theme (part of #1953) --- view/theme/quattro/dark/style.css | 12 +++++++----- view/theme/quattro/green/style.css | 12 +++++++----- view/theme/quattro/lilac/style.css | 12 +++++++----- view/theme/quattro/quattro.less | 3 +++ view/theme/quattro/templates/wall_thread.tpl | 13 +++++++++++++ 5 files changed, 37 insertions(+), 15 deletions(-) diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index 89f3649abf..1eda67de13 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -544,7 +544,6 @@ header { margin: 0px; padding: 0px; /*width: 100%; height: 12px; */ - z-index: 110; color: #ffffff; } @@ -877,7 +876,6 @@ aside .posted-date-selector-months { overflow: auto; height: auto; /*.contact-block-div { width:60px; height: 60px; }*/ - } #contact-block .contact-block-h4 { float: left; @@ -959,7 +957,6 @@ aside .posted-date-selector-months { margin-bottom: 2em; /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ - } .widget h3 { padding: 0px; @@ -1126,6 +1123,13 @@ section { width: 20em; margin-top: 0.5em; } +.wall-item-container .wall-item-actions-events { + float: left; + margin-top: 0.5em; +} +.wall-item-container .wall-item-actions-events a { + margin-right: 3em; +} .wall-item-container .wall-item-actions-social { float: left; margin-top: 0.5em; @@ -1241,7 +1245,6 @@ section { height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ - } .comment-edit-preview .contact-photo-menu-button { top: 15px !important; @@ -2111,7 +2114,6 @@ ul.tabs li .active { min-height: 22px; padding-top: 6px; /* a { display: block;}*/ - } #photo-caption { display: block; diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index e49a0b16cb..71569971e5 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -544,7 +544,6 @@ header { margin: 0px; padding: 0px; /*width: 100%; height: 12px; */ - z-index: 110; color: #ffffff; } @@ -877,7 +876,6 @@ aside .posted-date-selector-months { overflow: auto; height: auto; /*.contact-block-div { width:60px; height: 60px; }*/ - } #contact-block .contact-block-h4 { float: left; @@ -959,7 +957,6 @@ aside .posted-date-selector-months { margin-bottom: 2em; /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ - } .widget h3 { padding: 0px; @@ -1126,6 +1123,13 @@ section { width: 20em; margin-top: 0.5em; } +.wall-item-container .wall-item-actions-events { + float: left; + margin-top: 0.5em; +} +.wall-item-container .wall-item-actions-events a { + margin-right: 3em; +} .wall-item-container .wall-item-actions-social { float: left; margin-top: 0.5em; @@ -1241,7 +1245,6 @@ section { height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ - } .comment-edit-preview .contact-photo-menu-button { top: 15px !important; @@ -2111,7 +2114,6 @@ ul.tabs li .active { min-height: 22px; padding-top: 6px; /* a { display: block;}*/ - } #photo-caption { display: block; diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index 5ea6b40c3b..55b81e5daf 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -544,7 +544,6 @@ header { margin: 0px; padding: 0px; /*width: 100%; height: 12px; */ - z-index: 110; color: #ffffff; } @@ -877,7 +876,6 @@ aside .posted-date-selector-months { overflow: auto; height: auto; /*.contact-block-div { width:60px; height: 60px; }*/ - } #contact-block .contact-block-h4 { float: left; @@ -959,7 +957,6 @@ aside .posted-date-selector-months { margin-bottom: 2em; /*.action .s10 { width: 10px; overflow: hidden; padding: 0px;} .action .s16 { width: 16px; overflow: hidden; padding: 0px;}*/ - } .widget h3 { padding: 0px; @@ -1126,6 +1123,13 @@ section { width: 20em; margin-top: 0.5em; } +.wall-item-container .wall-item-actions-events { + float: left; + margin-top: 0.5em; +} +.wall-item-container .wall-item-actions-events a { + margin-right: 3em; +} .wall-item-container .wall-item-actions-social { float: left; margin-top: 0.5em; @@ -1241,7 +1245,6 @@ section { height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ - } .comment-edit-preview .contact-photo-menu-button { top: 15px !important; @@ -2111,7 +2114,6 @@ ul.tabs li .active { min-height: 22px; padding-top: 6px; /* a { display: block;}*/ - } #photo-caption { display: block; diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index 368e26c3a2..3c9915576f 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -519,6 +519,9 @@ section { .wall-item-name { font-weight: bold; } .wall-item-actions-author { float: left; width: 20em; margin-top: 0.5em; } + .wall-item-actions-events { float: left; margin-top: 0.5em; + a { margin-right: 3em; } + } .wall-item-actions-social { float: left; margin-top: 0.5em; a { margin-right: 3em; } } diff --git a/view/theme/quattro/templates/wall_thread.tpl b/view/theme/quattro/templates/wall_thread.tpl index 64e3794ccb..54a4964693 100644 --- a/view/theme/quattro/templates/wall_thread.tpl +++ b/view/theme/quattro/templates/wall_thread.tpl @@ -114,6 +114,14 @@ {{$item.vote.share.1}} {{/if}} {{/if}} + {{if $item.isevent}} +
    + + {{/if}}
    @@ -136,6 +144,11 @@
    {{$item.dislike}}
    + {{if $item.responses}} + {{foreach $item.responses as $verb=>$response}} +
    {{$response.output}}
    + {{/foreach}} + {{/if}}
    {{if $item.threaded}}{{if $item.comment}}{{if $item.indent==comment}} From da8c81a12e65d8ba5386a9eb6e35b2ce04a84a35 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 12 Oct 2015 15:58:34 +0200 Subject: [PATCH 093/443] cleanup forgotten lines --- view/theme/quattro/templates/wall_thread.tpl | 2 -- 1 file changed, 2 deletions(-) diff --git a/view/theme/quattro/templates/wall_thread.tpl b/view/theme/quattro/templates/wall_thread.tpl index 54a4964693..a5baff6e40 100644 --- a/view/theme/quattro/templates/wall_thread.tpl +++ b/view/theme/quattro/templates/wall_thread.tpl @@ -142,8 +142,6 @@
    - -
    {{$item.dislike}}
    {{if $item.responses}} {{foreach $item.responses as $verb=>$response}}
    {{$response.output}}
    From 5839242792a9ee83659a25399962a3e94eecfe8a Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 12 Oct 2015 18:08:11 +0200 Subject: [PATCH 094/443] DE Update to the translation, thx Abrax --- view/de/messages.po | 11015 +++++++++++++++++++++--------------------- view/de/strings.php | 2073 ++++---- 2 files changed, 6577 insertions(+), 6511 deletions(-) diff --git a/view/de/messages.po b/view/de/messages.po index 3a7a5d53b4..1fce662f06 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -31,9 +31,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-22 09:58+0200\n" -"PO-Revision-Date: 2015-10-04 07:21+0000\n" -"Last-Translator: bavatar \n" +"POT-Creation-Date: 2015-10-11 10:35+0200\n" +"PO-Revision-Date: 2015-10-12 10:42+0000\n" +"Last-Translator: Abrax \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,270 +41,1186 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: object/Item.php:95 -msgid "This entry was edited" -msgstr "Dieser Beitrag wurde bearbeitet." - -#: object/Item.php:117 mod/photos.php:1379 mod/content.php:622 -msgid "Private Message" -msgstr "Private Nachricht" - -#: object/Item.php:121 mod/settings.php:694 mod/content.php:730 -msgid "Edit" -msgstr "Bearbeiten" - -#: object/Item.php:130 mod/photos.php:1672 mod/content.php:439 -#: mod/content.php:742 include/conversation.php:612 -msgid "Select" -msgstr "Auswählen" - -#: object/Item.php:131 mod/admin.php:1087 mod/photos.php:1673 -#: mod/contacts.php:801 mod/settings.php:695 mod/group.php:171 -#: mod/content.php:440 mod/content.php:743 include/conversation.php:613 -msgid "Delete" -msgstr "Löschen" - -#: object/Item.php:134 mod/content.php:765 -msgid "save to folder" -msgstr "In Ordner speichern" - -#: object/Item.php:196 mod/content.php:755 -msgid "add star" -msgstr "markieren" - -#: object/Item.php:197 mod/content.php:756 -msgid "remove star" -msgstr "Markierung entfernen" - -#: object/Item.php:198 mod/content.php:757 -msgid "toggle star status" -msgstr "Markierung umschalten" - -#: object/Item.php:201 mod/content.php:760 -msgid "starred" -msgstr "markiert" - -#: object/Item.php:209 -msgid "ignore thread" -msgstr "Thread ignorieren" - -#: object/Item.php:210 -msgid "unignore thread" -msgstr "Thread nicht mehr ignorieren" - -#: object/Item.php:211 -msgid "toggle ignore status" -msgstr "Ignoriert-Status ein-/ausschalten" - -#: object/Item.php:214 mod/ostatus_subscribe.php:69 -msgid "ignored" -msgstr "Ignoriert" - -#: object/Item.php:221 mod/content.php:761 -msgid "add tag" -msgstr "Tag hinzufügen" - -#: object/Item.php:232 mod/photos.php:1561 mod/content.php:686 -msgid "I like this (toggle)" -msgstr "Ich mag das (toggle)" - -#: object/Item.php:232 mod/content.php:686 -msgid "like" -msgstr "mag ich" - -#: object/Item.php:233 mod/photos.php:1562 mod/content.php:687 -msgid "I don't like this (toggle)" -msgstr "Ich mag das nicht (toggle)" - -#: object/Item.php:233 mod/content.php:687 -msgid "dislike" -msgstr "mag ich nicht" - -#: object/Item.php:235 mod/content.php:689 -msgid "Share this" -msgstr "Weitersagen" - -#: object/Item.php:235 mod/content.php:689 -msgid "share" -msgstr "Teilen" - -#: object/Item.php:318 include/conversation.php:665 -msgid "Categories:" -msgstr "Kategorien:" - -#: object/Item.php:319 include/conversation.php:666 -msgid "Filed under:" -msgstr "Abgelegt unter:" - -#: object/Item.php:328 object/Item.php:329 mod/content.php:473 -#: mod/content.php:854 mod/content.php:855 include/conversation.php:653 +#: mod/contacts.php:114 #, php-format -msgid "View %s's profile @ %s" -msgstr "Das Profil von %s auf %s betrachten." +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "%d Kontakt bearbeitet." +msgstr[1] "%d Kontakte bearbeitet" -#: object/Item.php:330 mod/content.php:856 -msgid "to" -msgstr "zu" +#: mod/contacts.php:145 mod/contacts.php:368 +msgid "Could not access contact record." +msgstr "Konnte nicht auf die Kontaktdaten zugreifen." -#: object/Item.php:331 -msgid "via" -msgstr "via" +#: mod/contacts.php:159 +msgid "Could not locate selected profile." +msgstr "Konnte das ausgewählte Profil nicht finden." -#: object/Item.php:332 mod/content.php:857 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" +#: mod/contacts.php:192 +msgid "Contact updated." +msgstr "Kontakt aktualisiert." -#: object/Item.php:333 mod/content.php:858 -msgid "via Wall-To-Wall:" -msgstr "via Wall-To-Wall:" +#: mod/contacts.php:194 mod/dfrn_request.php:576 +msgid "Failed to update contact record." +msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." -#: object/Item.php:342 mod/content.php:483 mod/content.php:866 -#: include/conversation.php:673 -#, php-format -msgid "%s from %s" -msgstr "%s von %s" - -#: object/Item.php:363 object/Item.php:679 mod/photos.php:1583 -#: mod/photos.php:1627 mod/photos.php:1715 mod/content.php:711 boot.php:764 -msgid "Comment" -msgstr "Kommentar" - -#: object/Item.php:366 mod/message.php:335 mod/message.php:566 -#: mod/editpost.php:124 mod/wallmessage.php:156 mod/photos.php:1564 -#: mod/content.php:501 mod/content.php:885 include/conversation.php:691 -#: include/conversation.php:1074 -msgid "Please wait" -msgstr "Bitte warten" - -#: object/Item.php:389 mod/content.php:605 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d Kommentar" -msgstr[1] "%d Kommentare" - -#: object/Item.php:391 object/Item.php:404 mod/content.php:607 -#: include/text.php:2038 -msgid "comment" -msgid_plural "comments" -msgstr[0] "Kommentar" -msgstr[1] "Kommentare" - -#: object/Item.php:392 mod/content.php:608 boot.php:765 include/items.php:5147 -#: include/contact_widgets.php:205 -msgid "show more" -msgstr "mehr anzeigen" - -#: object/Item.php:677 mod/photos.php:1581 mod/photos.php:1625 -#: mod/photos.php:1713 mod/content.php:709 -msgid "This is you" -msgstr "Das bist Du" - -#: object/Item.php:680 mod/fsuggest.php:107 mod/message.php:336 -#: mod/message.php:565 mod/events.php:511 mod/photos.php:1104 -#: mod/photos.php:1223 mod/photos.php:1533 mod/photos.php:1584 -#: mod/photos.php:1628 mod/photos.php:1716 mod/contacts.php:596 -#: mod/invite.php:140 mod/profiles.php:683 mod/manage.php:110 mod/poke.php:199 -#: mod/localtime.php:45 mod/install.php:250 mod/install.php:288 -#: mod/content.php:712 mod/mood.php:137 mod/crepair.php:191 -#: view/theme/diabook/theme.php:633 view/theme/diabook/config.php:148 -#: view/theme/vier/config.php:56 view/theme/dispy/config.php:70 -#: view/theme/duepuntozero/config.php:59 view/theme/quattro/config.php:64 -#: view/theme/cleanzero/config.php:80 -msgid "Submit" -msgstr "Senden" - -#: object/Item.php:681 mod/content.php:713 -msgid "Bold" -msgstr "Fett" - -#: object/Item.php:682 mod/content.php:714 -msgid "Italic" -msgstr "Kursiv" - -#: object/Item.php:683 mod/content.php:715 -msgid "Underline" -msgstr "Unterstrichen" - -#: object/Item.php:684 mod/content.php:716 -msgid "Quote" -msgstr "Zitat" - -#: object/Item.php:685 mod/content.php:717 -msgid "Code" -msgstr "Code" - -#: object/Item.php:686 mod/content.php:718 -msgid "Image" -msgstr "Bild" - -#: object/Item.php:687 mod/content.php:719 -msgid "Link" -msgstr "Link" - -#: object/Item.php:688 mod/content.php:720 -msgid "Video" -msgstr "Video" - -#: object/Item.php:689 mod/editpost.php:145 mod/events.php:509 -#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 -#: mod/content.php:721 include/conversation.php:1089 -msgid "Preview" -msgstr "Vorschau" - -#: index.php:225 mod/apps.php:7 -msgid "You must be logged in to use addons. " -msgstr "Sie müssen angemeldet sein um Addons benutzen zu können." - -#: index.php:269 mod/help.php:42 mod/p.php:16 mod/p.php:25 -msgid "Not Found" -msgstr "Nicht gefunden" - -#: index.php:272 mod/help.php:45 -msgid "Page not found." -msgstr "Seite nicht gefunden." - -#: index.php:381 mod/profperm.php:19 mod/group.php:72 -msgid "Permission denied" -msgstr "Zugriff verweigert" - -#: index.php:382 mod/fsuggest.php:78 mod/files.php:170 -#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 -#: mod/editpost.php:10 mod/dfrn_confirm.php:55 mod/events.php:164 -#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79 -#: mod/wallmessage.php:103 mod/nogroup.php:25 mod/wall_upload.php:70 -#: mod/wall_upload.php:71 mod/api.php:26 mod/api.php:31 mod/photos.php:156 -#: mod/photos.php:1072 mod/register.php:42 mod/attach.php:33 -#: mod/contacts.php:350 mod/follow.php:9 mod/follow.php:44 mod/follow.php:83 -#: mod/uimport.php:23 mod/allfriends.php:9 mod/invite.php:15 -#: mod/invite.php:101 mod/settings.php:20 mod/settings.php:116 -#: mod/settings.php:619 mod/display.php:508 mod/profiles.php:165 -#: mod/profiles.php:615 mod/wall_attach.php:60 mod/wall_attach.php:61 -#: mod/suggest.php:58 mod/repair_ostatus.php:9 mod/manage.php:96 -#: mod/delegate.php:12 mod/viewcontacts.php:24 mod/notes.php:20 -#: mod/poke.php:135 mod/ostatus_subscribe.php:9 mod/profile_photo.php:19 -#: mod/profile_photo.php:169 mod/profile_photo.php:180 -#: mod/profile_photo.php:193 mod/group.php:19 mod/regmod.php:110 -#: mod/item.php:170 mod/item.php:186 mod/mood.php:114 mod/network.php:4 -#: mod/crepair.php:120 include/items.php:5036 +#: mod/contacts.php:350 mod/manage.php:96 mod/display.php:496 +#: mod/profile_photo.php:19 mod/profile_photo.php:169 +#: mod/profile_photo.php:180 mod/profile_photo.php:193 +#: mod/ostatus_subscribe.php:9 mod/follow.php:10 mod/follow.php:54 +#: mod/follow.php:119 mod/item.php:169 mod/item.php:185 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:69 +#: mod/message.php:39 mod/message.php:175 mod/crepair.php:120 +#: mod/dirfind.php:9 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:621 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:22 mod/poke.php:135 mod/repair_ostatus.php:9 +#: mod/invite.php:15 mod/invite.php:101 mod/photos.php:163 mod/photos.php:1097 +#: mod/regmod.php:110 mod/uimport.php:23 mod/attach.php:33 +#: include/items.php:5075 index.php:382 msgid "Permission denied." msgstr "Zugriff verweigert." -#: index.php:441 -msgid "toggle mobile" -msgstr "auf/von Mobile Ansicht wechseln" +#: mod/contacts.php:389 +msgid "Contact has been blocked" +msgstr "Kontakt wurde blockiert" -#: mod/update_notes.php:37 mod/update_profile.php:41 -#: mod/update_community.php:18 mod/update_network.php:25 -#: mod/update_display.php:22 -msgid "[Embedded content - reload page to view]" -msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]" +#: mod/contacts.php:389 +msgid "Contact has been unblocked" +msgstr "Kontakt wurde wieder freigegeben" -#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/dfrn_confirm.php:120 +#: mod/contacts.php:400 +msgid "Contact has been ignored" +msgstr "Kontakt wurde ignoriert" + +#: mod/contacts.php:400 +msgid "Contact has been unignored" +msgstr "Kontakt wird nicht mehr ignoriert" + +#: mod/contacts.php:412 +msgid "Contact has been archived" +msgstr "Kontakt wurde archiviert" + +#: mod/contacts.php:412 +msgid "Contact has been unarchived" +msgstr "Kontakt wurde aus dem Archiv geholt" + +#: mod/contacts.php:439 mod/contacts.php:801 +msgid "Do you really want to delete this contact?" +msgstr "Möchtest Du wirklich diesen Kontakt löschen?" + +#: mod/contacts.php:441 mod/follow.php:87 mod/message.php:210 +#: mod/settings.php:1076 mod/settings.php:1082 mod/settings.php:1090 +#: mod/settings.php:1094 mod/settings.php:1099 mod/settings.php:1105 +#: mod/settings.php:1111 mod/settings.php:1117 mod/settings.php:1143 +#: mod/settings.php:1144 mod/settings.php:1145 mod/settings.php:1146 +#: mod/settings.php:1147 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:4907 +msgid "Yes" +msgstr "Ja" + +#: mod/contacts.php:444 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:98 +#: mod/videos.php:123 mod/message.php:213 mod/fbrowser.php:89 +#: mod/fbrowser.php:125 mod/settings.php:635 mod/settings.php:661 +#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:148 +#: mod/photos.php:239 mod/photos.php:328 include/conversation.php:1115 +#: include/items.php:4910 +msgid "Cancel" +msgstr "Abbrechen" + +#: mod/contacts.php:456 +msgid "Contact has been removed." +msgstr "Kontakt wurde entfernt." + +#: mod/contacts.php:494 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Du hast mit %s eine beidseitige Freundschaft" + +#: mod/contacts.php:498 +#, php-format +msgid "You are sharing with %s" +msgstr "Du teilst mit %s" + +#: mod/contacts.php:503 +#, php-format +msgid "%s is sharing with you" +msgstr "%s teilt mit Dir" + +#: mod/contacts.php:523 +msgid "Private communications are not available for this contact." +msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." + +#: mod/contacts.php:526 mod/admin.php:623 +msgid "Never" +msgstr "Niemals" + +#: mod/contacts.php:530 +msgid "(Update was successful)" +msgstr "(Aktualisierung war erfolgreich)" + +#: mod/contacts.php:530 +msgid "(Update was not successful)" +msgstr "(Aktualisierung war nicht erfolgreich)" + +#: mod/contacts.php:532 +msgid "Suggest friends" +msgstr "Kontakte vorschlagen" + +#: mod/contacts.php:536 +#, php-format +msgid "Network type: %s" +msgstr "Netzwerktyp: %s" + +#: mod/contacts.php:539 include/contact_widgets.php:200 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d gemeinsamer Kontakt" +msgstr[1] "%d gemeinsame Kontakte" + +#: mod/contacts.php:544 +msgid "View all contacts" +msgstr "Alle Kontakte anzeigen" + +#: mod/contacts.php:549 mod/contacts.php:628 mod/contacts.php:804 +#: mod/admin.php:1089 +msgid "Unblock" +msgstr "Entsperren" + +#: mod/contacts.php:549 mod/contacts.php:628 mod/contacts.php:804 +#: mod/admin.php:1088 +msgid "Block" +msgstr "Sperren" + +#: mod/contacts.php:552 +msgid "Toggle Blocked status" +msgstr "Geblockt-Status ein-/ausschalten" + +#: mod/contacts.php:556 mod/contacts.php:629 mod/contacts.php:805 +msgid "Unignore" +msgstr "Ignorieren aufheben" + +#: mod/contacts.php:556 mod/contacts.php:629 mod/contacts.php:805 +#: mod/notifications.php:54 mod/notifications.php:179 +#: mod/notifications.php:259 +msgid "Ignore" +msgstr "Ignorieren" + +#: mod/contacts.php:559 +msgid "Toggle Ignored status" +msgstr "Ignoriert-Status ein-/ausschalten" + +#: mod/contacts.php:564 mod/contacts.php:806 +msgid "Unarchive" +msgstr "Aus Archiv zurückholen" + +#: mod/contacts.php:564 mod/contacts.php:806 +msgid "Archive" +msgstr "Archivieren" + +#: mod/contacts.php:567 +msgid "Toggle Archive status" +msgstr "Archiviert-Status ein-/ausschalten" + +#: mod/contacts.php:571 +msgid "Repair" +msgstr "Reparieren" + +#: mod/contacts.php:574 +msgid "Advanced Contact Settings" +msgstr "Fortgeschrittene Kontakteinstellungen" + +#: mod/contacts.php:581 +msgid "Communications lost with this contact!" +msgstr "Verbindungen mit diesem Kontakt verloren!" + +#: mod/contacts.php:584 +msgid "Fetch further information for feeds" +msgstr "Weitere Informationen zu Feeds holen" + +#: mod/contacts.php:585 mod/admin.php:632 +msgid "Disabled" +msgstr "Deaktiviert" + +#: mod/contacts.php:585 +msgid "Fetch information" +msgstr "Beziehe Information" + +#: mod/contacts.php:585 +msgid "Fetch information and keywords" +msgstr "Beziehe Information und Schlüsselworte" + +#: mod/contacts.php:598 +msgid "Contact Editor" +msgstr "Kontakt Editor" + +#: mod/contacts.php:600 mod/manage.php:110 mod/fsuggest.php:107 +#: mod/message.php:336 mod/message.php:565 mod/crepair.php:191 +#: mod/events.php:566 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:1129 mod/photos.php:1253 mod/photos.php:1571 +#: mod/photos.php:1622 mod/photos.php:1666 mod/photos.php:1754 +#: object/Item.php:686 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 "Senden" + +#: mod/contacts.php:601 +msgid "Profile Visibility" +msgstr "Profil-Sichtbarkeit" + +#: mod/contacts.php:602 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft." + +#: mod/contacts.php:603 +msgid "Contact Information / Notes" +msgstr "Kontakt Informationen / Notizen" + +#: mod/contacts.php:604 +msgid "Edit contact notes" +msgstr "Notizen zum Kontakt bearbeiten" + +#: mod/contacts.php:609 mod/contacts.php:844 mod/viewcontacts.php:64 +#: mod/nogroup.php:40 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Besuche %ss Profil [%s]" + +#: mod/contacts.php:610 +msgid "Block/Unblock contact" +msgstr "Kontakt blockieren/freischalten" + +#: mod/contacts.php:611 +msgid "Ignore contact" +msgstr "Ignoriere den Kontakt" + +#: mod/contacts.php:612 +msgid "Repair URL settings" +msgstr "URL Einstellungen reparieren" + +#: mod/contacts.php:613 +msgid "View conversations" +msgstr "Unterhaltungen anzeigen" + +#: mod/contacts.php:615 +msgid "Delete contact" +msgstr "Lösche den Kontakt" + +#: mod/contacts.php:619 +msgid "Last update:" +msgstr "Letzte Aktualisierung: " + +#: mod/contacts.php:621 +msgid "Update public posts" +msgstr "Öffentliche Beiträge aktualisieren" + +#: mod/contacts.php:623 mod/admin.php:1590 +msgid "Update now" +msgstr "Jetzt aktualisieren" + +#: mod/contacts.php:625 mod/dirfind.php:141 include/contact_widgets.php:32 +#: include/conversation.php:903 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" + +#: mod/contacts.php:632 +msgid "Currently blocked" +msgstr "Derzeit geblockt" + +#: mod/contacts.php:633 +msgid "Currently ignored" +msgstr "Derzeit ignoriert" + +#: mod/contacts.php:634 +msgid "Currently archived" +msgstr "Momentan archiviert" + +#: mod/contacts.php:635 mod/notifications.php:172 mod/notifications.php:251 +msgid "Hide this contact from others" +msgstr "Verbirg diesen Kontakt vor andere" + +#: mod/contacts.php:635 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein" + +#: mod/contacts.php:636 +msgid "Notification for new posts" +msgstr "Benachrichtigung bei neuen Beiträgen" + +#: mod/contacts.php:636 +msgid "Send a notification of every new post of this contact" +msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt." + +#: mod/contacts.php:639 +msgid "Blacklisted keywords" +msgstr "Blacklistete Schlüsselworte " + +#: mod/contacts.php:639 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde" + +#: mod/contacts.php:646 mod/follow.php:103 mod/notifications.php:255 +msgid "Profile URL" +msgstr "Profil URL" + +#: mod/contacts.php:692 +msgid "Suggestions" +msgstr "Kontaktvorschläge" + +#: mod/contacts.php:695 +msgid "Suggest potential friends" +msgstr "Freunde vorschlagen" + +#: mod/contacts.php:699 mod/group.php:192 +msgid "All Contacts" +msgstr "Alle Kontakte" + +#: mod/contacts.php:702 +msgid "Show all contacts" +msgstr "Alle Kontakte anzeigen" + +#: mod/contacts.php:706 +msgid "Unblocked" +msgstr "Ungeblockt" + +#: mod/contacts.php:709 +msgid "Only show unblocked contacts" +msgstr "Nur nicht-blockierte Kontakte anzeigen" + +#: mod/contacts.php:714 +msgid "Blocked" +msgstr "Geblockt" + +#: mod/contacts.php:717 +msgid "Only show blocked contacts" +msgstr "Nur blockierte Kontakte anzeigen" + +#: mod/contacts.php:722 +msgid "Ignored" +msgstr "Ignoriert" + +#: mod/contacts.php:725 +msgid "Only show ignored contacts" +msgstr "Nur ignorierte Kontakte anzeigen" + +#: mod/contacts.php:730 +msgid "Archived" +msgstr "Archiviert" + +#: mod/contacts.php:733 +msgid "Only show archived contacts" +msgstr "Nur archivierte Kontakte anzeigen" + +#: mod/contacts.php:738 +msgid "Hidden" +msgstr "Verborgen" + +#: mod/contacts.php:741 +msgid "Only show hidden contacts" +msgstr "Nur verborgene Kontakte anzeigen" + +#: mod/contacts.php:792 include/text.php:1005 include/nav.php:124 +#: include/nav.php:188 view/theme/diabook/theme.php:125 +msgid "Contacts" +msgstr "Kontakte" + +#: mod/contacts.php:796 +msgid "Search your contacts" +msgstr "Suche in deinen Kontakten" + +#: mod/contacts.php:797 mod/directory.php:63 +msgid "Finding: " +msgstr "Funde: " + +#: mod/contacts.php:798 mod/directory.php:65 include/contact_widgets.php:34 +msgid "Find" +msgstr "Finde" + +#: mod/contacts.php:803 mod/settings.php:146 mod/settings.php:660 +msgid "Update" +msgstr "Aktualisierungen" + +#: mod/contacts.php:807 mod/group.php:171 mod/admin.php:1087 +#: mod/content.php:440 mod/content.php:743 mod/settings.php:697 +#: mod/photos.php:1711 object/Item.php:131 include/conversation.php:613 +msgid "Delete" +msgstr "Löschen" + +#: mod/contacts.php:820 +msgid "Mutual Friendship" +msgstr "Beidseitige Freundschaft" + +#: mod/contacts.php:824 +msgid "is a fan of yours" +msgstr "ist ein Fan von dir" + +#: mod/contacts.php:828 +msgid "you are a fan of" +msgstr "Du bist Fan von" + +#: mod/contacts.php:845 mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Kontakt bearbeiten" + +#: mod/hcard.php:10 +msgid "No profile" +msgstr "Kein Profil" + +#: mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Verwalte Identitäten und/oder Seiten" + +#: mod/manage.php:107 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast." + +#: mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Wähle eine Identität zum Verwalten aus: " + +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Beitrag erfolgreich veröffentlicht." + +#: mod/profperm.php:19 mod/group.php:72 index.php:381 +msgid "Permission denied" +msgstr "Zugriff verweigert" + +#: mod/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Bezeichner." + +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Editor für die Profil-Sichtbarkeit" + +#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:530 +#: include/identity.php:611 include/identity.php:641 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 "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" + +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Sichtbar für" + +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" + +#: mod/display.php:82 mod/display.php:283 mod/display.php:500 +#: mod/viewsrc.php:15 mod/admin.php:173 mod/admin.php:1132 mod/admin.php:1352 +#: mod/notice.php:15 include/items.php:4866 +msgid "Item not found." +msgstr "Beitrag nicht gefunden." + +#: mod/display.php:211 mod/videos.php:189 mod/viewcontacts.php:19 +#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:93 +#: mod/search.php:99 mod/directory.php:35 mod/photos.php:968 +msgid "Public access denied." +msgstr "Öffentlicher Zugriff verweigert." + +#: mod/display.php:331 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." + +#: mod/display.php:493 +msgid "Item has been removed." +msgstr "Eintrag wurde entfernt." + +#: mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Willkommen bei Friendica" + +#: mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Checkliste für neue Mitglieder" + +#: mod/newmember.php:12 +msgid "" +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page. A link to this page " +"will be visible from your home page for two weeks after your initial " +"registration and then will quietly disappear." +msgstr "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden." + +#: mod/newmember.php:14 +msgid "Getting Started" +msgstr "Einstieg" + +#: mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Friendica Rundgang" + +#: mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst." + +#: mod/newmember.php:22 mod/admin.php:1184 mod/admin.php:1412 +#: mod/settings.php:99 include/nav.php:183 view/theme/diabook/theme.php:544 +#: view/theme/diabook/theme.php:648 +msgid "Settings" +msgstr "Einstellungen" + +#: mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Gehe zu deinen Einstellungen" + +#: mod/newmember.php:26 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." +msgstr "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen." + +#: mod/newmember.php:28 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished" +" directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können." + +#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:696 +msgid "Upload Profile Photo" +msgstr "Profilbild hochladen" + +#: mod/newmember.php:36 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust." + +#: mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Editiere dein Profil" + +#: mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "Editiere Dein Standard Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils." + +#: mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Profil Schlüsselbegriffe" + +#: mod/newmember.php:40 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen." + +#: mod/newmember.php:44 +msgid "Connecting" +msgstr "Verbindungen knüpfen" + +#: mod/newmember.php:49 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 "Richte die Verbindung zu Facebook ein, wenn Du im Augenblick ein Facebook-Konto hast und (optional) Deine Facebook-Freunde und -Unterhaltungen importieren willst." + +#: mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "Wenn dies Dein privater Server ist, könnte die Installation des Facebook Connectors Deinen Umzug ins freie soziale Netz angenehmer gestalten." + +#: mod/newmember.php:56 +msgid "Importing Emails" +msgstr "Emails Importieren" + +#: mod/newmember.php:56 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willst." + +#: mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Gehe zu deiner Kontakt-Seite" + +#: mod/newmember.php:58 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein." + +#: mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz" + +#: mod/newmember.php:60 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst." + +#: mod/newmember.php:62 +msgid "Finding New People" +msgstr "Neue Leute kennenlernen" + +#: mod/newmember.php:62 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden." + +#: mod/newmember.php:66 include/group.php:270 +msgid "Groups" +msgstr "Gruppen" + +#: mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Gruppiere deine Kontakte" + +#: mod/newmember.php:70 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "Sobald Du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren." + +#: mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Warum sind meine Beiträge nicht öffentlich?" + +#: mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch." + +#: mod/newmember.php:78 +msgid "Getting Help" +msgstr "Hilfe bekommen" + +#: mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Zum Hilfe Abschnitt gehen" + +#: mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten." + +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." + +#: mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet." + +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 +msgid "Login failed." +msgstr "Anmeldung fehlgeschlagen." + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl." + +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php:204 mod/profile_photo.php:296 +#: mod/profile_photo.php:305 mod/photos.php:70 mod/photos.php:184 +#: mod/photos.php:767 mod/photos.php:1237 mod/photos.php:1260 +#: mod/photos.php:1843 include/user.php:343 include/user.php:350 +#: include/user.php:357 view/theme/diabook/theme.php:500 +msgid "Profile Photos" +msgstr "Profilbilder" + +#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 +#: mod/profile_photo.php:308 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Verkleinern der Bildgröße von [%s] scheiterte." + +#: mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird." + +#: mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Bild konnte nicht verarbeitet werden" + +#: mod/profile_photo.php:144 mod/wall_upload.php:137 mod/photos.php:803 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "Bildgröße überschreitet das Limit von %s" + +#: mod/profile_photo.php:153 mod/wall_upload.php:169 mod/photos.php:843 +msgid "Unable to process image." +msgstr "Konnte das Bild nicht bearbeiten." + +#: mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Datei hochladen:" + +#: mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Profil auswählen:" + +#: mod/profile_photo.php:245 +msgid "Upload" +msgstr "Hochladen" + +#: mod/profile_photo.php:248 +msgid "or" +msgstr "oder" + +#: mod/profile_photo.php:248 +msgid "skip this step" +msgstr "diesen Schritt überspringen" + +#: mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "wähle ein Foto aus deinen Fotoalben" + +#: mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Bild zurechtschneiden" + +#: mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann." + +#: mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Bearbeitung abgeschlossen" + +#: mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Bild erfolgreich hochgeladen." + +#: mod/profile_photo.php:301 mod/wall_upload.php:202 mod/photos.php:870 +msgid "Image upload failed." +msgstr "Hochladen des Bildes gescheitert." + +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 +#: include/conversation.php:126 include/conversation.php:253 +#: include/text.php:2031 include/diaspora.php:2140 +#: 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:248 include/conversation.php:257 +#: include/diaspora.php:2140 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 folgt %2$s %3$s" + +#: mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag entfernt" + +#: mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Gegenstands-Tag entfernen" + +#: mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Wähle ein Tag zum Entfernen aus: " + +#: mod/tagrm.php:93 mod/delegate.php:139 +msgid "Remove" +msgstr "Entfernen" + +#: mod/ostatus_subscribe.php:14 +msgid "Subsribing to OStatus contacts" +msgstr "OStatus Kontakten folgen" + +#: mod/ostatus_subscribe.php:25 +msgid "No contact provided." +msgstr "Keine Kontakte gefunden." + +#: mod/ostatus_subscribe.php:30 +msgid "Couldn't fetch information for contact." +msgstr "Konnte die Kontaktinformationen nicht einholen." + +#: mod/ostatus_subscribe.php:38 +msgid "Couldn't fetch friends for contact." +msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen." + +#: mod/ostatus_subscribe.php:51 mod/repair_ostatus.php:44 +msgid "Done" +msgstr "Erledigt" + +#: mod/ostatus_subscribe.php:65 +msgid "success" +msgstr "Erfolg" + +#: mod/ostatus_subscribe.php:67 +msgid "failed" +msgstr "Fehlgeschlagen" + +#: mod/ostatus_subscribe.php:69 object/Item.php:214 +msgid "ignored" +msgstr "Ignoriert" + +#: mod/ostatus_subscribe.php:73 mod/repair_ostatus.php:50 +msgid "Keep this window open until done." +msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist." + +#: mod/filer.php:30 include/conversation.php:1027 +#: include/conversation.php:1045 +msgid "Save to Folder:" +msgstr "In diesem Ordner speichern:" + +#: mod/filer.php:30 +msgid "- select -" +msgstr "- auswählen -" + +#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:61 include/text.php:997 +msgid "Save" +msgstr "Speichern" + +#: mod/follow.php:27 +msgid "You already added this contact." +msgstr "Du hast den Kontakt bereits hinzugefügt." + +#: mod/follow.php:35 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden." + +#: mod/follow.php:86 mod/dfrn_request.php:847 +msgid "Please answer the following:" +msgstr "Bitte beantworte folgendes:" + +#: mod/follow.php:87 mod/dfrn_request.php:848 +#, php-format +msgid "Does %s know you?" +msgstr "Kennt %s Dich?" + +#: mod/follow.php:87 mod/settings.php:1076 mod/settings.php:1082 +#: mod/settings.php:1090 mod/settings.php:1094 mod/settings.php:1099 +#: mod/settings.php:1105 mod/settings.php:1111 mod/settings.php:1117 +#: mod/settings.php:1143 mod/settings.php:1144 mod/settings.php:1145 +#: mod/settings.php:1146 mod/settings.php:1147 mod/dfrn_request.php:848 +#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662 +#: mod/api.php:106 +msgid "No" +msgstr "Nein" + +#: mod/follow.php:88 mod/dfrn_request.php:852 +msgid "Add a personal note:" +msgstr "Eine persönliche Notiz beifügen:" + +#: mod/follow.php:94 mod/dfrn_request.php:858 +msgid "Your Identity Address:" +msgstr "Adresse Deines Profils:" + +#: mod/follow.php:97 mod/dfrn_request.php:861 +msgid "Submit Request" +msgstr "Anfrage abschicken" + +#: mod/follow.php:107 mod/notifications.php:244 mod/events.php:558 +#: mod/directory.php:152 include/identity.php:268 include/bb2diaspora.php:170 +#: include/event.php:42 +msgid "Location:" +msgstr "Ort:" + +#: mod/follow.php:109 mod/notifications.php:246 mod/directory.php:160 +#: include/identity.php:277 include/identity.php:582 +msgid "About:" +msgstr "Über:" + +#: mod/follow.php:111 mod/notifications.php:248 include/identity.php:576 +msgid "Tags:" +msgstr "Tags" + +#: mod/follow.php:144 +msgid "Contact added" +msgstr "Kontakt hinzugefügt" + +#: mod/item.php:114 +msgid "Unable to locate original post." +msgstr "Konnte den Originalbeitrag nicht finden." + +#: mod/item.php:322 +msgid "Empty post discarded." +msgstr "Leerer Beitrag wurde verworfen." + +#: mod/item.php:461 mod/wall_upload.php:199 mod/wall_upload.php:213 +#: mod/wall_upload.php:220 include/Photo.php:954 include/Photo.php:969 +#: include/Photo.php:976 include/Photo.php:998 include/message.php:145 +msgid "Wall Photos" +msgstr "Pinnwand-Bilder" + +#: mod/item.php:835 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden." + +#: mod/item.php:964 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica." + +#: mod/item.php:966 +#, php-format +msgid "You may visit them online at %s" +msgstr "Du kannst sie online unter %s besuchen" + +#: mod/item.php:967 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest." + +#: mod/item.php:971 +#, php-format +msgid "%s posted an update." +msgstr "%s hat ein Update veröffentlicht." + +#: mod/group.php:29 +msgid "Group created." +msgstr "Gruppe erstellt." + +#: mod/group.php:35 +msgid "Could not create group." +msgstr "Konnte die Gruppe nicht erstellen." + +#: mod/group.php:47 mod/group.php:140 +msgid "Group not found." +msgstr "Gruppe nicht gefunden." + +#: mod/group.php:60 +msgid "Group name changed." +msgstr "Gruppenname geändert." + +#: mod/group.php:87 +msgid "Save Group" +msgstr "Gruppe speichern" + +#: mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Eine Gruppe von Kontakten/Freunden anlegen." + +#: mod/group.php:94 mod/group.php:178 include/group.php:273 +msgid "Group Name: " +msgstr "Gruppenname:" + +#: mod/group.php:113 +msgid "Group removed." +msgstr "Gruppe entfernt." + +#: mod/group.php:115 +msgid "Unable to remove group." +msgstr "Konnte die Gruppe nicht entfernen." + +#: mod/group.php:177 +msgid "Group Editor" +msgstr "Gruppeneditor" + +#: mod/group.php:190 +msgid "Members" +msgstr "Mitglieder" + +#: mod/apps.php:7 index.php:225 +msgid "You must be logged in to use addons. " +msgstr "Sie müssen angemeldet sein um Addons benutzen zu können." + +#: mod/apps.php:11 +msgid "Applications" +msgstr "Anwendungen" + +#: mod/apps.php:14 +msgid "No installed applications." +msgstr "Keine Applikationen installiert." + +#: mod/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 nicht gefunden." + +#: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 #: mod/crepair.php:134 msgid "Contact not found." msgstr "Kontakt nicht gefunden." +#: mod/dfrn_confirm.php:121 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde." + +#: mod/dfrn_confirm.php:240 +msgid "Response from remote site was not understood." +msgstr "Antwort der Gegenstelle unverständlich." + +#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "Unerwartete Antwort der Gegenstelle: " + +#: mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "Bestätigung erfolgreich abgeschlossen." + +#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 +msgid "Remote site reported: " +msgstr "Gegenstelle meldet: " + +#: mod/dfrn_confirm.php:277 +msgid "Temporary failure. Please wait and try again." +msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal." + +#: mod/dfrn_confirm.php:284 +msgid "Introduction failed or was revoked." +msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." + +#: mod/dfrn_confirm.php:430 +msgid "Unable to set contact photo." +msgstr "Konnte das Bild des Kontakts nicht speichern." + +#: mod/dfrn_confirm.php:487 include/conversation.php:172 +#: include/diaspora.php:636 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s ist nun mit %2$s befreundet" + +#: mod/dfrn_confirm.php:572 +#, php-format +msgid "No user record found for '%s' " +msgstr "Für '%s' wurde kein Nutzer gefunden" + +#: mod/dfrn_confirm.php:582 +msgid "Our site encryption key is apparently messed up." +msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung." + +#: mod/dfrn_confirm.php:593 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden." + +#: mod/dfrn_confirm.php:614 +msgid "Contact record was not found for you on our site." +msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden." + +#: mod/dfrn_confirm.php:628 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server." + +#: mod/dfrn_confirm.php:648 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal." + +#: mod/dfrn_confirm.php:659 +msgid "Unable to set your contact credentials on our system." +msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." + +#: mod/dfrn_confirm.php:726 +msgid "Unable to update your contact profile details on our system" +msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden" + +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4289 +msgid "[Name Withheld]" +msgstr "[Name unterdrückt]" + +#: mod/dfrn_confirm.php:798 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s ist %2$s beigetreten" + +#: mod/profile.php:21 include/identity.php:77 +msgid "Requested profile is not available." +msgstr "Das angefragte Profil ist nicht vorhanden." + +#: mod/profile.php:179 +msgid "Tips for New Members" +msgstr "Tipps für neue Nutzer" + +#: mod/videos.php:115 +msgid "Do you really want to delete this video?" +msgstr "Möchtest Du dieses Video wirklich löschen?" + +#: mod/videos.php:120 +msgid "Delete Video" +msgstr "Video Löschen" + +#: mod/videos.php:199 +msgid "No videos selected" +msgstr "Keine Videos ausgewählt" + +#: mod/videos.php:300 mod/photos.php:1079 +msgid "Access to this item is restricted." +msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." + +#: mod/videos.php:375 include/text.php:1457 +msgid "View Video" +msgstr "Video ansehen" + +#: mod/videos.php:382 mod/photos.php:1871 +msgid "View Album" +msgstr "Album betrachten" + +#: mod/videos.php:391 +msgid "Recent Videos" +msgstr "Neueste Videos" + +#: mod/videos.php:393 +msgid "Upload New Videos" +msgstr "Neues Video hochladen" + +#: 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 hat %2$ss %3$s mit %4$s getaggt" + #: mod/fsuggest.php:63 msgid "Friend suggestion sent." msgstr "Kontaktvorschlag gesendet." @@ -318,469 +1234,140 @@ msgstr "Kontakte vorschlagen" msgid "Suggest a friend for %s" msgstr "Schlage %s einen Kontakt vor" -#: mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." +#: 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 "Ungültige Anfrage" -#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung." +#: mod/lostpass.php:19 +msgid "No valid account found." +msgstr "Kein gültiges Konto gefunden." -#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden." +#: mod/lostpass.php:35 +msgid "Password reset request issued. Check your email." +msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail." -#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse." - -#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden" -msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden" - -#: mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Kontaktanfrage abgeschlossen." - -#: mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Nicht behebbarer Protokollfehler." - -#: mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profil nicht verfügbar." - -#: mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten." - -#: mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Maßnahmen zum Spamschutz wurden ergriffen." - -#: mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen." - -#: mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Ungültiger Locator" - -#: mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Ungültige E-Mail-Adresse." - -#: mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen." - -#: mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Konnte Deinen Namen an der angegebenen Stelle nicht finden." - -#: mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Du hast Dich hier bereits vorgestellt." - -#: mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Es scheint so, als ob Du bereits mit %s befreundet bist." - -#: mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Ungültige Profil-URL." - -#: mod/dfrn_request.php:507 include/follow.php:70 -msgid "Disallowed profile URL." -msgstr "Nicht erlaubte Profil-URL." - -#: mod/dfrn_request.php:576 mod/contacts.php:194 -msgid "Failed to update contact record." -msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." - -#: mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "Deine Kontaktanfrage wurde gesendet." - -#: mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen." - -#: mod/dfrn_request.php:660 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an." - -#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 -msgid "Confirm" -msgstr "Bestätigen" - -#: mod/dfrn_request.php:686 -msgid "Hide this contact" -msgstr "Verberge diesen Kontakt" - -#: mod/dfrn_request.php:689 -#, php-format -msgid "Welcome home %s." -msgstr "Willkommen zurück %s." - -#: mod/dfrn_request.php:690 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bitte bestätige Deine Kontaktanfrage bei %s." - -#: mod/dfrn_request.php:732 mod/dfrn_confirm.php:753 include/items.php:4250 -msgid "[Name Withheld]" -msgstr "[Name unterdrückt]" - -#: mod/dfrn_request.php:777 mod/photos.php:942 mod/videos.php:187 -#: mod/search.php:93 mod/search.php:98 mod/display.php:223 -#: mod/community.php:18 mod/viewcontacts.php:19 mod/directory.php:35 -msgid "Public access denied." -msgstr "Öffentlicher Zugriff verweigert." - -#: mod/dfrn_request.php:819 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:" - -#: mod/dfrn_request.php:840 +#: mod/lostpass.php:42 #, 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 "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten." +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast." -#: mod/dfrn_request.php:845 -msgid "Friend/Connection Request" -msgstr "Freundschafts-/Kontaktanfrage" - -#: mod/dfrn_request.php:846 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" - -#: mod/dfrn_request.php:847 mod/follow.php:58 -msgid "Please answer the following:" -msgstr "Bitte beantworte folgendes:" - -#: mod/dfrn_request.php:848 mod/follow.php:59 -#, php-format -msgid "Does %s know you?" -msgstr "Kennt %s Dich?" - -#: mod/dfrn_request.php:848 mod/api.php:106 mod/register.php:236 -#: mod/follow.php:59 mod/settings.php:1068 mod/settings.php:1074 -#: mod/settings.php:1082 mod/settings.php:1086 mod/settings.php:1091 -#: mod/settings.php:1097 mod/settings.php:1103 mod/settings.php:1109 -#: mod/settings.php:1135 mod/settings.php:1136 mod/settings.php:1137 -#: mod/settings.php:1138 mod/settings.php:1139 mod/profiles.php:658 -#: mod/profiles.php:662 -msgid "No" -msgstr "Nein" - -#: mod/dfrn_request.php:848 mod/message.php:210 mod/api.php:105 -#: mod/register.php:235 mod/contacts.php:441 mod/follow.php:59 -#: mod/settings.php:1068 mod/settings.php:1074 mod/settings.php:1082 -#: mod/settings.php:1086 mod/settings.php:1091 mod/settings.php:1097 -#: mod/settings.php:1103 mod/settings.php:1109 mod/settings.php:1135 -#: mod/settings.php:1136 mod/settings.php:1137 mod/settings.php:1138 -#: mod/settings.php:1139 mod/profiles.php:658 mod/profiles.php:661 -#: mod/suggest.php:29 include/items.php:4868 -msgid "Yes" -msgstr "Ja" - -#: mod/dfrn_request.php:852 mod/follow.php:60 -msgid "Add a personal note:" -msgstr "Eine persönliche Notiz beifügen:" - -#: 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 Social Web" - -#: mod/dfrn_request.php:856 mod/settings.php:793 -#: include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: mod/dfrn_request.php:857 +#: mod/lostpass.php:53 #, php-format msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste." +"\n" +"\t\tFollow this link to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s" -#: mod/dfrn_request.php:858 mod/follow.php:66 -msgid "Your Identity Address:" -msgstr "Adresse Deines Profils:" - -#: mod/dfrn_request.php:861 mod/follow.php:69 -msgid "Submit Request" -msgstr "Anfrage abschicken" - -#: mod/dfrn_request.php:862 mod/message.php:213 mod/editpost.php:148 -#: mod/fbrowser.php:89 mod/fbrowser.php:125 mod/photos.php:225 -#: mod/photos.php:314 mod/contacts.php:444 mod/videos.php:121 -#: mod/follow.php:70 mod/tagrm.php:11 mod/tagrm.php:94 mod/settings.php:633 -#: mod/settings.php:659 mod/suggest.php:32 include/items.php:4871 -#: include/conversation.php:1093 -msgid "Cancel" -msgstr "Abbrechen" - -#: mod/files.php:156 mod/videos.php:373 include/text.php:1460 -msgid "View Video" -msgstr "Video ansehen" - -#: mod/profile.php:21 include/identity.php:77 -msgid "Requested profile is not available." -msgstr "Das angefragte Profil ist nicht vorhanden." - -#: mod/profile.php:155 mod/display.php:343 -msgid "Access to this profile has been restricted." -msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." - -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Tipps für neue Nutzer" - -#: mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Invalid request identifier." - -#: mod/notifications.php:35 mod/notifications.php:175 -#: mod/notifications.php:234 -msgid "Discard" -msgstr "Verwerfen" - -#: mod/notifications.php:51 mod/notifications.php:174 -#: mod/notifications.php:233 mod/contacts.php:556 mod/contacts.php:623 -#: mod/contacts.php:799 -msgid "Ignore" -msgstr "Ignorieren" - -#: mod/notifications.php:78 -msgid "System" -msgstr "System" - -#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 -msgid "Network" -msgstr "Netzwerk" - -#: mod/notifications.php:90 mod/network.php:375 -msgid "Personal" -msgstr "Persönlich" - -#: mod/notifications.php:96 view/theme/diabook/theme.php:123 -#: include/nav.php:105 include/nav.php:156 -msgid "Home" -msgstr "Pinnwand" - -#: mod/notifications.php:102 include/nav.php:161 -msgid "Introductions" -msgstr "Kontaktanfragen" - -#: mod/notifications.php:127 -msgid "Show Ignored Requests" -msgstr "Zeige ignorierte Anfragen" - -#: mod/notifications.php:127 -msgid "Hide Ignored Requests" -msgstr "Verberge ignorierte Anfragen" - -#: mod/notifications.php:159 mod/notifications.php:209 -msgid "Notification type: " -msgstr "Benachrichtigungstyp: " - -#: mod/notifications.php:160 -msgid "Friend Suggestion" -msgstr "Kontaktvorschlag" - -#: mod/notifications.php:162 +#: mod/lostpass.php:72 #, php-format -msgid "suggested by %s" -msgstr "vorgeschlagen von %s" +msgid "Password reset requested at %s" +msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" -#: mod/notifications.php:167 mod/notifications.php:227 mod/contacts.php:629 -msgid "Hide this contact from others" -msgstr "Verbirg diesen Kontakt vor andere" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "Post a new friend activity" -msgstr "Neue-Kontakt Nachricht senden" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "if applicable" -msgstr "falls anwendbar" - -#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1085 -msgid "Approve" -msgstr "Genehmigen" - -#: mod/notifications.php:191 -msgid "Claims to be known to you: " -msgstr "Behauptet Dich zu kennen: " - -#: mod/notifications.php:191 -msgid "yes" -msgstr "ja" - -#: mod/notifications.php:191 -msgid "no" -msgstr "nein" - -#: mod/notifications.php:192 +#: mod/lostpass.php:92 msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " -"you allow to read but you do not want to read theirs. Approve as: " -msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." -#: mod/notifications.php:195 +#: mod/lostpass.php:109 boot.php:1288 +msgid "Password Reset" +msgstr "Passwort zurücksetzen" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Speichere oder kopiere Dein neues Passwort - und dann" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "hier klicken, um Dich anzumelden" + +#: mod/lostpass.php:114 msgid "" -"Shall your connection be bidirectional or not? \"Friend\" implies that you " -"allow to read and you subscribe to their posts. \"Sharer\" means that you " -"allow to read but you do not want to read theirs. Approve as: " -msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Du kannst das Passwort in den Einstellungen ändern, sobald Du Dich erfolgreich angemeldet hast." -#: mod/notifications.php:203 -msgid "Friend" -msgstr "Freund" - -#: mod/notifications.php:204 -msgid "Sharer" -msgstr "Teilenden" - -#: mod/notifications.php:204 -msgid "Fan/Admirer" -msgstr "Fan/Verehrer" - -#: mod/notifications.php:210 -msgid "Friend/Connect Request" -msgstr "Kontakt-/Freundschaftsanfrage" - -#: mod/notifications.php:210 -msgid "New Follower" -msgstr "Neuer Bewunderer" - -#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 -#: mod/directory.php:152 include/event.php:42 include/identity.php:268 -#: include/bb2diaspora.php:170 -msgid "Location:" -msgstr "Ort:" - -#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 -#: include/identity.php:582 -msgid "About:" -msgstr "Über:" - -#: mod/notifications.php:224 include/identity.php:576 -msgid "Tags:" -msgstr "Tags" - -#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 -#: include/identity.php:541 -msgid "Gender:" -msgstr "Geschlecht:" - -#: mod/notifications.php:240 -msgid "No introductions." -msgstr "Keine Kontaktanfragen." - -#: mod/notifications.php:243 include/nav.php:164 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: mod/notifications.php:281 mod/notifications.php:410 -#: mod/notifications.php:501 +#: mod/lostpass.php:125 #, php-format -msgid "%s liked %s's post" -msgstr "%s mag %ss Beitrag" +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" +msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)." -#: mod/notifications.php:291 mod/notifications.php:420 -#: mod/notifications.php:511 +#: mod/lostpass.php:131 #, php-format -msgid "%s disliked %s's post" -msgstr "%s mag %ss Beitrag nicht" +msgid "" +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t\t" +msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden." -#: mod/notifications.php:306 mod/notifications.php:435 -#: mod/notifications.php:526 +#: mod/lostpass.php:147 #, php-format -msgid "%s is now friends with %s" -msgstr "%s ist jetzt mit %s befreundet" +msgid "Your password has been changed at %s" +msgstr "Auf %s wurde Dein Passwort geändert" -#: mod/notifications.php:313 mod/notifications.php:442 -#, php-format -msgid "%s created a new post" -msgstr "%s hat einen neuen Beitrag erstellt" +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Hast Du Dein Passwort vergessen?" -#: mod/notifications.php:314 mod/notifications.php:443 -#: mod/notifications.php:536 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s hat %ss Beitrag kommentiert" +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet." -#: mod/notifications.php:329 -msgid "No more network notifications." -msgstr "Keine weiteren Netzwerk-Benachrichtigungen." +#: mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Spitzname oder E-Mail:" -#: mod/notifications.php:333 -msgid "Network Notifications" -msgstr "Netzwerk Benachrichtigungen" +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Zurücksetzen" -#: mod/notifications.php:359 mod/notify.php:72 -msgid "No more system notifications." -msgstr "Keine weiteren Systembenachrichtigungen." - -#: mod/notifications.php:363 mod/notify.php:76 -msgid "System Notifications" -msgstr "Systembenachrichtigungen" - -#: mod/notifications.php:458 -msgid "No more personal notifications." -msgstr "Keine weiteren persönlichen Benachrichtigungen" - -#: mod/notifications.php:462 -msgid "Personal Notifications" -msgstr "Persönliche Benachrichtigungen" - -#: mod/notifications.php:543 -msgid "No more home notifications." -msgstr "Keine weiteren Pinnwand-Benachrichtigungen" - -#: mod/notifications.php:547 -msgid "Home Notifications" -msgstr "Pinnwand Benachrichtigungen" - -#: mod/like.php:149 mod/tagger.php:62 mod/subthread.php:87 -#: view/theme/diabook/theme.php:471 include/text.php:2034 -#: include/diaspora.php:2134 include/conversation.php:126 -#: include/conversation.php:253 -msgid "photo" -msgstr "Foto" - -#: mod/like.php:149 mod/like.php:319 mod/tagger.php:62 mod/subthread.php:87 -#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 -#: include/diaspora.php:2134 include/conversation.php:121 -#: include/conversation.php:130 include/conversation.php:248 -#: include/conversation.php:257 -msgid "status" -msgstr "Status" - -#: mod/like.php:166 view/theme/diabook/theme.php:480 include/diaspora.php:2150 -#: include/conversation.php:137 +#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2156 +#: view/theme/diabook/theme.php:480 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s mag %2$ss %3$s" @@ -790,18 +1377,208 @@ msgstr "%1$s mag %2$ss %3$s" msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s mag %2$ss %3$s nicht" -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." +#: mod/ping.php:233 +msgid "{0} wants to be your friend" +msgstr "{0} möchte mit Dir in Kontakt treten" -#: mod/openid.php:53 +#: mod/ping.php:248 +msgid "{0} sent you a message" +msgstr "{0} schickte Dir eine Nachricht" + +#: mod/ping.php:263 +msgid "{0} requested registration" +msgstr "{0} möchte sich registrieren" + +#: mod/viewcontacts.php:41 +msgid "No contacts." +msgstr "Keine Kontakte." + +#: mod/viewcontacts.php:78 include/text.php:917 +msgid "View Contacts" +msgstr "Kontakte anzeigen" + +#: mod/notifications.php:29 +msgid "Invalid request identifier." +msgstr "Invalid request identifier." + +#: mod/notifications.php:38 mod/notifications.php:180 +#: mod/notifications.php:260 +msgid "Discard" +msgstr "Verwerfen" + +#: mod/notifications.php:81 +msgid "System" +msgstr "System" + +#: mod/notifications.php:87 mod/admin.php:205 include/nav.php:155 +msgid "Network" +msgstr "Netzwerk" + +#: mod/notifications.php:93 mod/network.php:375 +msgid "Personal" +msgstr "Persönlich" + +#: mod/notifications.php:99 include/nav.php:105 include/nav.php:158 +#: view/theme/diabook/theme.php:123 +msgid "Home" +msgstr "Pinnwand" + +#: mod/notifications.php:105 include/nav.php:163 +msgid "Introductions" +msgstr "Kontaktanfragen" + +#: mod/notifications.php:130 +msgid "Show Ignored Requests" +msgstr "Zeige ignorierte Anfragen" + +#: mod/notifications.php:130 +msgid "Hide Ignored Requests" +msgstr "Verberge ignorierte Anfragen" + +#: mod/notifications.php:164 mod/notifications.php:234 +msgid "Notification type: " +msgstr "Benachrichtigungstyp: " + +#: mod/notifications.php:165 +msgid "Friend Suggestion" +msgstr "Kontaktvorschlag" + +#: mod/notifications.php:167 +#, php-format +msgid "suggested by %s" +msgstr "vorgeschlagen von %s" + +#: mod/notifications.php:173 mod/notifications.php:252 +msgid "Post a new friend activity" +msgstr "Neue-Kontakt Nachricht senden" + +#: mod/notifications.php:173 mod/notifications.php:252 +msgid "if applicable" +msgstr "falls anwendbar" + +#: mod/notifications.php:176 mod/notifications.php:257 mod/admin.php:1085 +msgid "Approve" +msgstr "Genehmigen" + +#: mod/notifications.php:196 +msgid "Claims to be known to you: " +msgstr "Behauptet Dich zu kennen: " + +#: mod/notifications.php:196 +msgid "yes" +msgstr "ja" + +#: mod/notifications.php:196 +msgid "no" +msgstr "nein" + +#: mod/notifications.php:197 msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet." +"Shall your connection be bidirectional or not? \"Friend\" implies that you " +"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that " +"you allow to read but you do not want to read theirs. Approve as: " +msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr könnt gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", dass du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" -#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 -msgid "Login failed." -msgstr "Anmeldung fehlgeschlagen." +#: 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 "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:" + +#: mod/notifications.php:208 +msgid "Friend" +msgstr "Freund" + +#: mod/notifications.php:209 +msgid "Sharer" +msgstr "Teilenden" + +#: mod/notifications.php:209 +msgid "Fan/Admirer" +msgstr "Fan/Verehrer" + +#: mod/notifications.php:235 +msgid "Friend/Connect Request" +msgstr "Kontakt-/Freundschaftsanfrage" + +#: mod/notifications.php:235 +msgid "New Follower" +msgstr "Neuer Bewunderer" + +#: mod/notifications.php:250 mod/directory.php:154 include/identity.php:270 +#: include/identity.php:541 +msgid "Gender:" +msgstr "Geschlecht:" + +#: mod/notifications.php:266 +msgid "No introductions." +msgstr "Keine Kontaktanfragen." + +#: mod/notifications.php:269 include/nav.php:166 +msgid "Notifications" +msgstr "Benachrichtigungen" + +#: mod/notifications.php:307 mod/notifications.php:436 +#: mod/notifications.php:527 +#, php-format +msgid "%s liked %s's post" +msgstr "%s mag %ss Beitrag" + +#: mod/notifications.php:317 mod/notifications.php:446 +#: mod/notifications.php:537 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s mag %ss Beitrag nicht" + +#: mod/notifications.php:332 mod/notifications.php:461 +#: mod/notifications.php:552 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s ist jetzt mit %s befreundet" + +#: mod/notifications.php:339 mod/notifications.php:468 +#, php-format +msgid "%s created a new post" +msgstr "%s hat einen neuen Beitrag erstellt" + +#: mod/notifications.php:340 mod/notifications.php:469 +#: mod/notifications.php:562 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s hat %ss Beitrag kommentiert" + +#: mod/notifications.php:355 +msgid "No more network notifications." +msgstr "Keine weiteren Netzwerk-Benachrichtigungen." + +#: mod/notifications.php:359 +msgid "Network Notifications" +msgstr "Netzwerk Benachrichtigungen" + +#: mod/notifications.php:385 mod/notify.php:72 +msgid "No more system notifications." +msgstr "Keine weiteren Systembenachrichtigungen." + +#: mod/notifications.php:389 mod/notify.php:76 +msgid "System Notifications" +msgstr "Systembenachrichtigungen" + +#: mod/notifications.php:484 +msgid "No more personal notifications." +msgstr "Keine weiteren persönlichen Benachrichtigungen" + +#: mod/notifications.php:488 +msgid "Personal Notifications" +msgstr "Persönliche Benachrichtigungen" + +#: mod/notifications.php:569 +msgid "No more home notifications." +msgstr "Keine weiteren Pinnwand-Benachrichtigungen" + +#: mod/notifications.php:573 +msgid "Home Notifications" +msgstr "Pinnwand Benachrichtigungen" #: mod/babel.php:17 msgid "Source (bbcode) text:" @@ -851,6 +1628,291 @@ msgstr "Originaltext (Diaspora Format): " msgid "diaspora2bb: " msgstr "diaspora2bb: " +#: mod/navigation.php:20 include/nav.php:34 +msgid "Nothing new here" +msgstr "Keine Neuigkeiten" + +#: mod/navigation.php:24 include/nav.php:38 +msgid "Clear notifications" +msgstr "Bereinige Benachrichtigungen" + +#: mod/message.php:9 include/nav.php:175 +msgid "New Message" +msgstr "Neue Nachricht" + +#: mod/message.php:64 mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Kein Empfänger gewählt." + +#: mod/message.php:68 +msgid "Unable to locate contact information." +msgstr "Konnte die Kontaktinformationen nicht finden." + +#: mod/message.php:71 mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Nachricht konnte nicht gesendet werden." + +#: mod/message.php:74 mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Konnte Nachrichten nicht abrufen." + +#: mod/message.php:77 mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Nachricht gesendet." + +#: mod/message.php:183 include/nav.php:172 +msgid "Messages" +msgstr "Nachrichten" + +#: mod/message.php:208 +msgid "Do you really want to delete this message?" +msgstr "Möchtest Du wirklich diese Nachricht löschen?" + +#: mod/message.php:228 +msgid "Message deleted." +msgstr "Nachricht gelöscht." + +#: mod/message.php:259 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." + +#: 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:1023 include/conversation.php:1041 +msgid "Please enter a link URL:" +msgstr "Bitte gib die URL des Links ein:" + +#: mod/message.php:320 mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Private Nachricht senden" + +#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 +msgid "To:" +msgstr "An:" + +#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Betreff:" + +#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 +#: mod/invite.php:134 +msgid "Your message:" +msgstr "Deine Nachricht:" + +#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154 +#: mod/editpost.php:110 include/conversation.php:1078 +msgid "Upload photo" +msgstr "Foto hochladen" + +#: mod/message.php:334 mod/message.php:564 mod/wallmessage.php:155 +#: mod/editpost.php:114 include/conversation.php:1082 +msgid "Insert web link" +msgstr "Einen Link einfügen" + +#: 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:1602 object/Item.php:372 include/conversation.php:691 +#: include/conversation.php:1096 +msgid "Please wait" +msgstr "Bitte warten" + +#: mod/message.php:372 +msgid "No messages." +msgstr "Keine Nachrichten." + +#: mod/message.php:379 +#, php-format +msgid "Unknown sender - %s" +msgstr "'Unbekannter Absender - %s" + +#: mod/message.php:382 +#, php-format +msgid "You and %s" +msgstr "Du und %s" + +#: mod/message.php:385 +#, php-format +msgid "%s and You" +msgstr "%s und Du" + +#: mod/message.php:406 mod/message.php:547 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" + +#: mod/message.php:409 +msgid "D, d M Y - g:i A" +msgstr "D, d. M Y - g:i A" + +#: mod/message.php:412 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d Nachricht" +msgstr[1] "%d Nachrichten" + +#: mod/message.php:451 +msgid "Message not available." +msgstr "Nachricht nicht verfügbar." + +#: mod/message.php:521 +msgid "Delete message" +msgstr "Nachricht löschen" + +#: mod/message.php:549 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." + +#: mod/message.php:553 +msgid "Send Reply" +msgstr "Antwort senden" + +#: mod/update_display.php:22 mod/update_community.php:18 +#: mod/update_notes.php:37 mod/update_profile.php:41 mod/update_network.php:25 +msgid "[Embedded content - reload page to view]" +msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]" + +#: mod/crepair.php:107 +msgid "Contact settings applied." +msgstr "Einstellungen zum Kontakt angewandt." + +#: mod/crepair.php:109 +msgid "Contact update failed." +msgstr "Konnte den Kontakt nicht aktualisieren." + +#: mod/crepair.php:140 +msgid "Repair Contact Settings" +msgstr "Kontakteinstellungen reparieren" + +#: 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 "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." + +#: mod/crepair.php:143 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst." + +#: mod/crepair.php:149 +msgid "Return to contact editor" +msgstr "Zurück zum Kontakteditor" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "No mirroring" +msgstr "Kein Spiegeln" + +#: mod/crepair.php:160 +msgid "Mirror as forwarded posting" +msgstr "Spiegeln als weitergeleitete Beiträge" + +#: mod/crepair.php:160 mod/crepair.php:162 +msgid "Mirror as my own posting" +msgstr "Spiegeln als meine eigenen Beiträge" + +#: mod/crepair.php:169 +msgid "Refetch contact data" +msgstr "Kontaktdaten neu laden" + +#: mod/crepair.php:170 mod/admin.php:1083 mod/admin.php:1095 +#: mod/admin.php:1096 mod/admin.php:1109 mod/settings.php:636 +#: mod/settings.php:662 +msgid "Name" +msgstr "Name" + +#: mod/crepair.php:171 +msgid "Account Nickname" +msgstr "Konto-Spitzname" + +#: mod/crepair.php:172 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname - überschreibt Name/Spitzname" + +#: mod/crepair.php:173 +msgid "Account URL" +msgstr "Konto-URL" + +#: mod/crepair.php:174 +msgid "Friend Request URL" +msgstr "URL für Freundschaftsanfragen" + +#: mod/crepair.php:175 +msgid "Friend Confirm URL" +msgstr "URL für Bestätigungen von Freundschaftsanfragen" + +#: mod/crepair.php:176 +msgid "Notification Endpoint URL" +msgstr "URL-Endpunkt für Benachrichtigungen" + +#: mod/crepair.php:177 +msgid "Poll/Feed URL" +msgstr "Pull/Feed-URL" + +#: mod/crepair.php:178 +msgid "New photo from this URL" +msgstr "Neues Foto von dieser URL" + +#: mod/crepair.php:179 +msgid "Remote Self" +msgstr "Entfernte Konten" + +#: mod/crepair.php:181 +msgid "Mirror postings from this contact" +msgstr "Spiegle Beiträge dieses Kontakts" + +#: mod/crepair.php:181 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden." + +#: mod/bookmarklet.php:12 boot.php:1274 include/nav.php:92 +msgid "Login" +msgstr "Anmeldung" + +#: mod/bookmarklet.php:41 +msgid "The post was created" +msgstr "Der Beitrag wurde angelegt" + +#: mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Zugriff verweigert." + +#: mod/dirfind.php:42 +#, php-format +msgid "People Search - %s" +msgstr "Personensuche - %s" + +#: mod/dirfind.php:139 mod/match.php:71 mod/suggest.php:92 +#: include/contact_widgets.php:10 include/identity.php:188 +msgid "Connect" +msgstr "Verbinden" + +#: mod/dirfind.php:140 include/Contact.php:237 include/conversation.php:891 +#: include/conversation.php:905 +msgid "View Profile" +msgstr "Profil anschauen" + +#: mod/dirfind.php:159 mod/match.php:78 +msgid "No matches" +msgstr "Keine Übereinstimmungen" + +#: mod/fbrowser.php:32 include/identity.php:649 include/nav.php:78 +#: view/theme/diabook/theme.php:126 +msgid "Photos" +msgstr "Bilder" + +#: mod/fbrowser.php:122 +msgid "Files" +msgstr "Dateien" + +#: mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Kontakte, die keiner Gruppe zugewiesen sind" + #: mod/admin.php:57 msgid "Theme settings updated." msgstr "Themeneinstellungen aktualisiert." @@ -891,7 +1953,7 @@ msgstr "Adresse untersuchen" msgid "check webfinger" msgstr "Webfinger überprüfen" -#: mod/admin.php:131 include/nav.php:193 +#: mod/admin.php:131 include/nav.php:195 msgid "Admin" msgstr "Administration" @@ -907,12 +1969,6 @@ msgstr "Diagnose" msgid "User registrations waiting for confirmation" msgstr "Nutzeranmeldungen die auf Bestätigung warten" -#: mod/admin.php:173 mod/admin.php:1132 mod/admin.php:1352 mod/notice.php:15 -#: mod/display.php:82 mod/display.php:295 mod/display.php:512 -#: mod/viewsrc.php:15 include/items.php:4827 -msgid "Item not found." -msgstr "Beitrag nicht gefunden." - #: mod/admin.php:199 mod/admin.php:249 mod/admin.php:686 mod/admin.php:1077 #: mod/admin.php:1181 mod/admin.php:1241 mod/admin.php:1409 mod/admin.php:1443 #: mod/admin.php:1530 @@ -1006,7 +2062,7 @@ msgstr "RINO2 benötigt die PHP Extension mcrypt." msgid "Site settings updated." msgstr "Seiteneinstellungen aktualisiert." -#: mod/admin.php:599 mod/settings.php:885 +#: mod/admin.php:599 mod/settings.php:887 msgid "No special theme for mobile devices" msgstr "Kein spezielles Theme für mobile Geräte verwenden." @@ -1022,10 +2078,6 @@ msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite" msgid "Global community page" msgstr "Globale Gemeinschaftsseite" -#: mod/admin.php:623 mod/contacts.php:526 -msgid "Never" -msgstr "Niemals" - #: mod/admin.php:624 msgid "At post arrival" msgstr "Beim Empfang von Nachrichten" @@ -1046,10 +2098,6 @@ msgstr "Zweimal täglich" msgid "Daily" msgstr "Täglich" -#: mod/admin.php:632 mod/contacts.php:585 -msgid "Disabled" -msgstr "Deaktiviert" - #: mod/admin.php:634 msgid "Users, Global Contacts" msgstr "Nutzer, globale Kontakte" @@ -1103,8 +2151,8 @@ msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)" #: mod/admin.php:688 mod/admin.php:1243 mod/admin.php:1445 mod/admin.php:1532 -#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:786 -#: mod/settings.php:855 mod/settings.php:937 mod/settings.php:1167 +#: mod/settings.php:634 mod/settings.php:744 mod/settings.php:788 +#: mod/settings.php:857 mod/settings.php:943 mod/settings.php:1175 msgid "Save Settings" msgstr "Einstellungen speichern" @@ -1938,11 +2986,6 @@ msgstr "Nutzer wartet auf permanente Löschung" msgid "Request date" msgstr "Anfragedatum" -#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1109 -#: mod/settings.php:634 mod/settings.php:660 mod/crepair.php:170 -msgid "Name" -msgstr "Name" - #: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1111 #: include/contact_selectors.php:79 include/contact_selectors.php:86 msgid "Email" @@ -1956,16 +2999,6 @@ msgstr "Keine Neuanmeldungen." msgid "Deny" msgstr "Verwehren" -#: mod/admin.php:1088 mod/contacts.php:549 mod/contacts.php:622 -#: mod/contacts.php:798 -msgid "Block" -msgstr "Sperren" - -#: mod/admin.php:1089 mod/contacts.php:549 mod/contacts.php:622 -#: mod/contacts.php:798 -msgid "Unblock" -msgstr "Entsperren" - #: mod/admin.php:1090 msgid "Site admin" msgstr "Seitenadministrator" @@ -2048,12 +3081,6 @@ msgstr "Einschalten" msgid "Toggle" msgstr "Umschalten" -#: mod/admin.php:1184 mod/admin.php:1412 mod/newmember.php:22 -#: mod/settings.php:99 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:648 include/nav.php:181 -msgid "Settings" -msgstr "Einstellungen" - #: mod/admin.php:1191 mod/admin.php:1421 msgid "Author: " msgstr "Autor:" @@ -2104,10 +3131,6 @@ msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installat msgid "Log level" msgstr "Protokoll-Level" -#: mod/admin.php:1590 mod/contacts.php:619 -msgid "Update now" -msgstr "Jetzt aktualisieren" - #: mod/admin.php:1591 include/acl_selectors.php:347 msgid "Close" msgstr "Schließen" @@ -2128,300 +3151,113 @@ msgstr "FTP Nutzername" msgid "FTP Password" msgstr "FTP Passwort" -#: mod/message.php:9 include/nav.php:173 -msgid "New Message" -msgstr "Neue Nachricht" - -#: mod/message.php:64 mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Kein Empfänger gewählt." - -#: mod/message.php:68 -msgid "Unable to locate contact information." -msgstr "Konnte die Kontaktinformationen nicht finden." - -#: mod/message.php:71 mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Nachricht konnte nicht gesendet werden." - -#: mod/message.php:74 mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Konnte Nachrichten nicht abrufen." - -#: mod/message.php:77 mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Nachricht gesendet." - -#: mod/message.php:183 include/nav.php:170 -msgid "Messages" -msgstr "Nachrichten" - -#: mod/message.php:208 -msgid "Do you really want to delete this message?" -msgstr "Möchtest Du wirklich diese Nachricht löschen?" - -#: mod/message.php:228 -msgid "Message deleted." -msgstr "Nachricht gelöscht." - -#: mod/message.php:259 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." - -#: 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 "Bitte gib die URL des Links ein:" - -#: mod/message.php:320 mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Private Nachricht senden" - -#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 -msgid "To:" -msgstr "An:" - -#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Betreff:" - -#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 -#: mod/invite.php:134 -msgid "Your message:" -msgstr "Deine Nachricht:" - -#: mod/message.php:333 mod/message.php:563 mod/editpost.php:110 -#: mod/wallmessage.php:154 include/conversation.php:1056 -msgid "Upload photo" -msgstr "Foto hochladen" - -#: mod/message.php:334 mod/message.php:564 mod/editpost.php:114 -#: mod/wallmessage.php:155 include/conversation.php:1060 -msgid "Insert web link" -msgstr "Einen Link einfügen" - -#: mod/message.php:372 -msgid "No messages." -msgstr "Keine Nachrichten." - -#: mod/message.php:379 +#: mod/network.php:143 #, php-format -msgid "Unknown sender - %s" -msgstr "'Unbekannter Absender - %s" +msgid "Search Results For: %s" +msgstr "Suchergebnisse für: %s" -#: mod/message.php:382 +#: mod/network.php:187 mod/search.php:25 +msgid "Remove term" +msgstr "Begriff entfernen" + +#: mod/network.php:196 mod/search.php:34 include/features.php:43 +msgid "Saved Searches" +msgstr "Gespeicherte Suchen" + +#: mod/network.php:197 include/group.php:277 +msgid "add" +msgstr "hinzufügen" + +#: mod/network.php:358 +msgid "Commented Order" +msgstr "Neueste Kommentare" + +#: mod/network.php:361 +msgid "Sort by Comment Date" +msgstr "Nach Kommentardatum sortieren" + +#: mod/network.php:365 +msgid "Posted Order" +msgstr "Neueste Beiträge" + +#: mod/network.php:368 +msgid "Sort by Post Date" +msgstr "Nach Beitragsdatum sortieren" + +#: mod/network.php:378 +msgid "Posts that mention or involve you" +msgstr "Beiträge, in denen es um Dich geht" + +#: mod/network.php:385 +msgid "New" +msgstr "Neue" + +#: mod/network.php:388 +msgid "Activity Stream - by date" +msgstr "Aktivitäten-Stream - nach Datum" + +#: mod/network.php:395 +msgid "Shared Links" +msgstr "Geteilte Links" + +#: mod/network.php:398 +msgid "Interesting Links" +msgstr "Interessante Links" + +#: mod/network.php:405 +msgid "Starred" +msgstr "Markierte" + +#: mod/network.php:408 +msgid "Favourite Posts" +msgstr "Favorisierte Beiträge" + +#: mod/network.php:466 #, php-format -msgid "You and %s" -msgstr "Du und %s" +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] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk." +msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken." -#: mod/message.php:385 +#: mod/network.php:469 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten." + +#: mod/network.php:532 mod/content.php:119 +msgid "No such group" +msgstr "Es gibt keine solche Gruppe" + +#: mod/network.php:549 mod/content.php:130 +msgid "Group is empty" +msgstr "Gruppe ist leer" + +#: mod/network.php:560 mod/content.php:135 #, php-format -msgid "%s and You" -msgstr "%s und Du" +msgid "Group: %s" +msgstr "Gruppe: %s" -#: mod/message.php:406 mod/message.php:547 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" - -#: mod/message.php:409 -msgid "D, d M Y - g:i A" -msgstr "D, d. M Y - g:i A" - -#: mod/message.php:412 +#: mod/network.php:578 #, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d Nachricht" -msgstr[1] "%d Nachrichten" +msgid "Contact: %s" +msgstr "Kontakt: %s" -#: mod/message.php:451 -msgid "Message not available." -msgstr "Nachricht nicht verfügbar." +#: mod/network.php:582 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen." -#: mod/message.php:521 -msgid "Delete message" -msgstr "Nachricht löschen" +#: mod/network.php:587 +msgid "Invalid contact." +msgstr "Ungültiger Kontakt." -#: mod/message.php:549 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." - -#: mod/message.php:553 -msgid "Send Reply" -msgstr "Antwort senden" - -#: mod/editpost.php:17 mod/editpost.php:27 -msgid "Item not found" -msgstr "Beitrag nicht gefunden" - -#: mod/editpost.php:40 -msgid "Edit post" -msgstr "Beitrag bearbeiten" - -#: mod/editpost.php:109 mod/filer.php:31 mod/notes.php:59 include/text.php:997 -msgid "Save" -msgstr "Speichern" - -#: mod/editpost.php:111 include/conversation.php:1057 -msgid "upload photo" -msgstr "Bild hochladen" - -#: mod/editpost.php:112 include/conversation.php:1058 -msgid "Attach file" -msgstr "Datei anhängen" - -#: mod/editpost.php:113 include/conversation.php:1059 -msgid "attach file" -msgstr "Datei anhängen" - -#: mod/editpost.php:115 include/conversation.php:1061 -msgid "web link" -msgstr "Weblink" - -#: mod/editpost.php:116 include/conversation.php:1062 -msgid "Insert video link" -msgstr "Video-Adresse einfügen" - -#: mod/editpost.php:117 include/conversation.php:1063 -msgid "video link" -msgstr "Video-Link" - -#: mod/editpost.php:118 include/conversation.php:1064 -msgid "Insert audio link" -msgstr "Audio-Adresse einfügen" - -#: mod/editpost.php:119 include/conversation.php:1065 -msgid "audio link" -msgstr "Audio-Link" - -#: mod/editpost.php:120 include/conversation.php:1066 -msgid "Set your location" -msgstr "Deinen Standort festlegen" - -#: mod/editpost.php:121 include/conversation.php:1067 -msgid "set location" -msgstr "Ort setzen" - -#: mod/editpost.php:122 include/conversation.php:1068 -msgid "Clear browser location" -msgstr "Browser-Standort leeren" - -#: mod/editpost.php:123 include/conversation.php:1069 -msgid "clear location" -msgstr "Ort löschen" - -#: mod/editpost.php:125 include/conversation.php:1075 -msgid "Permission settings" -msgstr "Berechtigungseinstellungen" - -#: mod/editpost.php:133 include/acl_selectors.php:343 -msgid "CC: email addresses" -msgstr "Cc: E-Mail-Addressen" - -#: mod/editpost.php:134 include/conversation.php:1084 -msgid "Public post" -msgstr "Öffentlicher Beitrag" - -#: mod/editpost.php:137 include/conversation.php:1071 -msgid "Set title" -msgstr "Titel setzen" - -#: mod/editpost.php:139 include/conversation.php:1073 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (kommasepariert)" - -#: mod/editpost.php:140 include/acl_selectors.php:344 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Z.B.: bob@example.com, mary@example.com" - -#: 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 nicht gefunden." - -#: mod/dfrn_confirm.php:121 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde." - -#: mod/dfrn_confirm.php:240 -msgid "Response from remote site was not understood." -msgstr "Antwort der Gegenstelle unverständlich." - -#: mod/dfrn_confirm.php:249 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Unerwartete Antwort der Gegenstelle: " - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "Bestätigung erfolgreich abgeschlossen." - -#: mod/dfrn_confirm.php:265 mod/dfrn_confirm.php:279 mod/dfrn_confirm.php:286 -msgid "Remote site reported: " -msgstr "Gegenstelle meldet: " - -#: mod/dfrn_confirm.php:277 -msgid "Temporary failure. Please wait and try again." -msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal." - -#: mod/dfrn_confirm.php:284 -msgid "Introduction failed or was revoked." -msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." - -#: mod/dfrn_confirm.php:430 -msgid "Unable to set contact photo." -msgstr "Konnte das Bild des Kontakts nicht speichern." - -#: mod/dfrn_confirm.php:487 include/diaspora.php:633 -#: include/conversation.php:172 +#: mod/allfriends.php:37 #, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s ist nun mit %2$s befreundet" +msgid "Friends of %s" +msgstr "Freunde von %s" -#: mod/dfrn_confirm.php:572 -#, php-format -msgid "No user record found for '%s' " -msgstr "Für '%s' wurde kein Nutzer gefunden" - -#: mod/dfrn_confirm.php:582 -msgid "Our site encryption key is apparently messed up." -msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung." - -#: mod/dfrn_confirm.php:593 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden." - -#: mod/dfrn_confirm.php:614 -msgid "Contact record was not found for you on our site." -msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden." - -#: mod/dfrn_confirm.php:628 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server." - -#: mod/dfrn_confirm.php:648 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal." - -#: mod/dfrn_confirm.php:659 -msgid "Unable to set your contact credentials on our system." -msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden." - -#: mod/dfrn_confirm.php:726 -msgid "Unable to update your contact profile details on our system" -msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden" - -#: mod/dfrn_confirm.php:798 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s ist %2$s beigetreten" +#: mod/allfriends.php:44 +msgid "No friends to display." +msgstr "Keine Freunde zum Anzeigen." #: mod/events.php:71 mod/events.php:73 msgid "Event can not end before it has started." @@ -2431,166 +3267,394 @@ msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt." msgid "Event title and start time are required." msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." -#: mod/events.php:317 +#: mod/events.php:196 +msgid "Sun" +msgstr "So" + +#: mod/events.php:197 +msgid "Mon" +msgstr "Mo" + +#: mod/events.php:198 +msgid "Tue" +msgstr "Di" + +#: mod/events.php:199 +msgid "Wed" +msgstr "Mi" + +#: mod/events.php:200 +msgid "Thu" +msgstr "Do" + +#: mod/events.php:201 +msgid "Fri" +msgstr "Fr" + +#: mod/events.php:202 +msgid "Sat" +msgstr "Sa" + +#: mod/events.php:203 mod/settings.php:922 include/text.php:1266 +msgid "Sunday" +msgstr "Sonntag" + +#: mod/events.php:204 mod/settings.php:922 include/text.php:1266 +msgid "Monday" +msgstr "Montag" + +#: mod/events.php:205 include/text.php:1266 +msgid "Tuesday" +msgstr "Dienstag" + +#: mod/events.php:206 include/text.php:1266 +msgid "Wednesday" +msgstr "Mittwoch" + +#: mod/events.php:207 include/text.php:1266 +msgid "Thursday" +msgstr "Donnerstag" + +#: mod/events.php:208 include/text.php:1266 +msgid "Friday" +msgstr "Freitag" + +#: mod/events.php:209 include/text.php:1266 +msgid "Saturday" +msgstr "Samstag" + +#: mod/events.php:210 +msgid "Jan" +msgstr "Jan" + +#: mod/events.php:211 +msgid "Feb" +msgstr "Feb" + +#: mod/events.php:212 +msgid "Mar" +msgstr "März" + +#: mod/events.php:213 +msgid "Apr" +msgstr "Apr" + +#: mod/events.php:214 mod/events.php:226 include/text.php:1270 +msgid "May" +msgstr "Mai" + +#: mod/events.php:215 +msgid "Jun" +msgstr "Jun" + +#: mod/events.php:216 +msgid "Jul" +msgstr "Juli" + +#: mod/events.php:217 +msgid "Aug" +msgstr "Aug" + +#: mod/events.php:218 +msgid "Sept" +msgstr "Sep" + +#: mod/events.php:219 +msgid "Oct" +msgstr "Okt" + +#: mod/events.php:220 +msgid "Nov" +msgstr "Nov" + +#: mod/events.php:221 +msgid "Dec" +msgstr "Dez" + +#: mod/events.php:222 include/text.php:1270 +msgid "January" +msgstr "Januar" + +#: mod/events.php:223 include/text.php:1270 +msgid "February" +msgstr "Februar" + +#: mod/events.php:224 include/text.php:1270 +msgid "March" +msgstr "März" + +#: mod/events.php:225 include/text.php:1270 +msgid "April" +msgstr "April" + +#: mod/events.php:227 include/text.php:1270 +msgid "June" +msgstr "Juni" + +#: mod/events.php:228 include/text.php:1270 +msgid "July" +msgstr "Juli" + +#: mod/events.php:229 include/text.php:1270 +msgid "August" +msgstr "August" + +#: mod/events.php:230 include/text.php:1270 +msgid "September" +msgstr "September" + +#: mod/events.php:231 include/text.php:1270 +msgid "October" +msgstr "Oktober" + +#: mod/events.php:232 include/text.php:1270 +msgid "November" +msgstr "November" + +#: mod/events.php:233 include/text.php:1270 +msgid "December" +msgstr "Dezember" + +#: mod/events.php:234 +msgid "today" +msgstr "Heute" + +#: mod/events.php:235 include/datetime.php:273 +msgid "month" +msgstr "Monat" + +#: mod/events.php:236 include/datetime.php:274 +msgid "week" +msgstr "Woche" + +#: mod/events.php:237 include/datetime.php:275 +msgid "day" +msgstr "Tag" + +#: mod/events.php:372 msgid "l, F j" msgstr "l, F j" -#: mod/events.php:339 +#: mod/events.php:394 msgid "Edit event" msgstr "Veranstaltung bearbeiten" -#: mod/events.php:361 include/text.php:1716 include/text.php:1723 +#: mod/events.php:416 include/text.php:1713 include/text.php:1720 msgid "link to source" msgstr "Link zum Originalbeitrag" -#: mod/events.php:396 view/theme/diabook/theme.php:127 -#: include/identity.php:668 include/nav.php:80 +#: mod/events.php:451 include/identity.php:669 include/nav.php:80 +#: include/nav.php:141 view/theme/diabook/theme.php:127 msgid "Events" msgstr "Veranstaltungen" -#: mod/events.php:397 +#: mod/events.php:452 msgid "Create New Event" msgstr "Neue Veranstaltung erstellen" -#: mod/events.php:398 +#: mod/events.php:453 msgid "Previous" msgstr "Vorherige" -#: mod/events.php:399 mod/install.php:209 +#: mod/events.php:454 mod/install.php:209 msgid "Next" msgstr "Nächste" -#: mod/events.php:491 +#: mod/events.php:546 msgid "Event details" msgstr "Veranstaltungsdetails" -#: mod/events.php:492 +#: mod/events.php:547 msgid "Starting date and Title are required." msgstr "Anfangszeitpunkt und Titel werden benötigt" -#: mod/events.php:493 +#: mod/events.php:548 msgid "Event Starts:" msgstr "Veranstaltungsbeginn:" -#: mod/events.php:493 mod/events.php:505 +#: mod/events.php:548 mod/events.php:560 msgid "Required" msgstr "Benötigt" -#: mod/events.php:495 +#: mod/events.php:550 msgid "Finish date/time is not known or not relevant" msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" -#: mod/events.php:497 +#: mod/events.php:552 msgid "Event Finishes:" msgstr "Veranstaltungsende:" -#: mod/events.php:499 +#: mod/events.php:554 msgid "Adjust for viewer timezone" msgstr "An Zeitzone des Betrachters anpassen" -#: mod/events.php:501 +#: mod/events.php:556 msgid "Description:" msgstr "Beschreibung" -#: mod/events.php:505 +#: mod/events.php:560 msgid "Title:" msgstr "Titel:" -#: mod/events.php:507 +#: mod/events.php:562 msgid "Share this event" msgstr "Veranstaltung teilen" -#: mod/fbrowser.php:32 view/theme/diabook/theme.php:126 -#: include/identity.php:649 include/nav.php:78 -msgid "Photos" -msgstr "Bilder" +#: mod/events.php:564 mod/content.php:721 mod/editpost.php:145 +#: mod/photos.php:1623 mod/photos.php:1667 mod/photos.php:1755 +#: object/Item.php:695 include/conversation.php:1111 +msgid "Preview" +msgstr "Vorschau" -#: mod/fbrowser.php:122 -msgid "Files" -msgstr "Dateien" +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1710 +#: object/Item.php:130 include/conversation.php:612 +msgid "Select" +msgstr "Auswählen" -#: mod/home.php:35 +#: mod/content.php:473 mod/content.php:854 mod/content.php:855 +#: object/Item.php:334 object/Item.php:335 include/conversation.php:653 #, php-format -msgid "Welcome to %s" -msgstr "Willkommen zu %s" +msgid "View %s's profile @ %s" +msgstr "Das Profil von %s auf %s betrachten." -#: mod/lockview.php:31 mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." - -#: mod/lockview.php:48 -msgid "Visible to:" -msgstr "Sichtbar für:" - -#: mod/wallmessage.php:42 mod/wallmessage.php:112 +#: mod/content.php:483 mod/content.php:866 object/Item.php:348 +#: include/conversation.php:673 #, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen." +msgid "%s from %s" +msgstr "%s von %s" -#: mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Konnte Deinen Heimatort nicht bestimmen." +#: mod/content.php:499 include/conversation.php:689 +msgid "View in context" +msgstr "Im Zusammenhang betrachten" -#: mod/wallmessage.php:86 mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Kein Empfänger." - -#: mod/wallmessage.php:143 +#: mod/content.php:605 object/Item.php:395 #, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern." +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d Kommentar" +msgstr[1] "%d Kommentare" -#: mod/nogroup.php:40 mod/contacts.php:605 mod/contacts.php:838 -#: mod/viewcontacts.php:64 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Besuche %ss Profil [%s]" +#: mod/content.php:607 object/Item.php:397 object/Item.php:410 +#: include/text.php:2035 +msgid "comment" +msgid_plural "comments" +msgstr[0] "Kommentar" +msgstr[1] "Kommentare" -#: mod/nogroup.php:41 mod/contacts.php:839 -msgid "Edit contact" -msgstr "Kontakt bearbeiten" +#: mod/content.php:608 boot.php:766 object/Item.php:398 +#: include/contact_widgets.php:205 include/items.php:5186 +msgid "show more" +msgstr "mehr anzeigen" -#: mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Kontakte, die keiner Gruppe zugewiesen sind" +#: mod/content.php:622 mod/photos.php:1410 object/Item.php:117 +msgid "Private Message" +msgstr "Private Nachricht" -#: mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Dies ist Friendica, Version" +#: mod/content.php:686 mod/photos.php:1599 object/Item.php:232 +msgid "I like this (toggle)" +msgstr "Ich mag das (toggle)" -#: mod/friendica.php:60 -msgid "running at web location" -msgstr "die unter folgender Webadresse zu finden ist" +#: mod/content.php:686 object/Item.php:232 +msgid "like" +msgstr "mag ich" -#: mod/friendica.php:62 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren." +#: mod/content.php:687 mod/photos.php:1600 object/Item.php:233 +msgid "I don't like this (toggle)" +msgstr "Ich mag das nicht (toggle)" -#: mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" +#: mod/content.php:687 object/Item.php:233 +msgid "dislike" +msgstr "mag ich nicht" -#: mod/friendica.php:64 -msgid "the bugtracker at github" -msgstr "dem Bugtracker auf github" +#: mod/content.php:689 object/Item.php:235 +msgid "Share this" +msgstr "Weitersagen" -#: mod/friendica.php:65 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com" +#: mod/content.php:689 object/Item.php:235 +msgid "share" +msgstr "Teilen" -#: mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Erweiterungen/Apps" +#: mod/content.php:709 mod/photos.php:1619 mod/photos.php:1663 +#: mod/photos.php:1751 object/Item.php:683 +msgid "This is you" +msgstr "Das bist Du" -#: mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Keine Plugins/Erweiterungen/Apps installiert" +#: mod/content.php:711 mod/photos.php:1621 mod/photos.php:1665 +#: mod/photos.php:1753 boot.php:765 object/Item.php:369 object/Item.php:685 +msgid "Comment" +msgstr "Kommentar" + +#: mod/content.php:713 object/Item.php:687 +msgid "Bold" +msgstr "Fett" + +#: mod/content.php:714 object/Item.php:688 +msgid "Italic" +msgstr "Kursiv" + +#: mod/content.php:715 object/Item.php:689 +msgid "Underline" +msgstr "Unterstrichen" + +#: mod/content.php:716 object/Item.php:690 +msgid "Quote" +msgstr "Zitat" + +#: mod/content.php:717 object/Item.php:691 +msgid "Code" +msgstr "Code" + +#: mod/content.php:718 object/Item.php:692 +msgid "Image" +msgstr "Bild" + +#: mod/content.php:719 object/Item.php:693 +msgid "Link" +msgstr "Link" + +#: mod/content.php:720 object/Item.php:694 +msgid "Video" +msgstr "Video" + +#: mod/content.php:730 mod/settings.php:696 object/Item.php:121 +msgid "Edit" +msgstr "Bearbeiten" + +#: mod/content.php:755 object/Item.php:196 +msgid "add star" +msgstr "markieren" + +#: mod/content.php:756 object/Item.php:197 +msgid "remove star" +msgstr "Markierung entfernen" + +#: mod/content.php:757 object/Item.php:198 +msgid "toggle star status" +msgstr "Markierung umschalten" + +#: mod/content.php:760 object/Item.php:201 +msgid "starred" +msgstr "markiert" + +#: mod/content.php:761 object/Item.php:221 +msgid "add tag" +msgstr "Tag hinzufügen" + +#: mod/content.php:765 object/Item.php:134 +msgid "save to folder" +msgstr "In Ordner speichern" + +#: mod/content.php:856 object/Item.php:336 +msgid "to" +msgstr "zu" + +#: mod/content.php:857 object/Item.php:338 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" + +#: mod/content.php:858 object/Item.php:339 +msgid "via Wall-To-Wall:" +msgstr "via Wall-To-Wall:" #: mod/removeme.php:46 mod/removeme.php:49 msgid "Remove My Account" @@ -2606,2643 +3670,6 @@ msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wie msgid "Please enter your password for verification:" msgstr "Bitte gib Dein Passwort zur Verifikation ein:" -#: mod/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 "Ungültige Anfrage" - -#: mod/wall_upload.php:137 mod/photos.php:789 mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "Bildgröße überschreitet das Limit von %s" - -#: mod/wall_upload.php:169 mod/photos.php:829 mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Konnte das Bild nicht bearbeiten." - -#: mod/wall_upload.php:199 mod/wall_upload.php:213 mod/wall_upload.php:220 -#: mod/item.php:486 include/message.php:145 include/Photo.php:951 -#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995 -msgid "Wall Photos" -msgstr "Pinnwand-Bilder" - -#: mod/wall_upload.php:202 mod/photos.php:856 mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Hochladen des Bildes gescheitert." - -#: mod/api.php:76 mod/api.php:102 -msgid "Authorize application connection" -msgstr "Verbindung der Applikation autorisieren" - -#: mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:" - -#: mod/api.php:89 -msgid "Please login to continue." -msgstr "Bitte melde Dich an um fortzufahren." - -#: mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?" - -#: mod/tagger.php:95 include/conversation.php:265 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt" - -#: mod/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 "Kontaktbilder" - -#: mod/photos.php:84 include/identity.php:652 -msgid "Photo Albums" -msgstr "Fotoalben" - -#: mod/photos.php:85 mod/photos.php:1836 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 -msgid "Upload New Photos" -msgstr "Neue Fotos hochladen" - -#: mod/photos.php:102 mod/settings.php:34 -msgid "everybody" -msgstr "jeder" - -#: mod/photos.php:166 -msgid "Contact information unavailable" -msgstr "Kontaktinformationen nicht verfügbar" - -#: mod/photos.php:177 mod/photos.php:753 mod/photos.php:1207 -#: mod/photos.php:1230 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 -#: view/theme/diabook/theme.php:500 include/user.php:343 include/user.php:350 -#: include/user.php:357 -msgid "Profile Photos" -msgstr "Profilbilder" - -#: mod/photos.php:187 -msgid "Album not found." -msgstr "Album nicht gefunden." - -#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 -msgid "Delete Album" -msgstr "Album löschen" - -#: mod/photos.php:220 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?" - -#: mod/photos.php:300 mod/photos.php:311 mod/photos.php:1534 -msgid "Delete Photo" -msgstr "Foto löschen" - -#: mod/photos.php:309 -msgid "Do you really want to delete this photo?" -msgstr "Möchtest Du wirklich dieses Foto löschen?" - -#: mod/photos.php:684 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s wurde von %3$s in %2$s getaggt" - -#: mod/photos.php:684 -msgid "a photo" -msgstr "einem Foto" - -#: mod/photos.php:797 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." - -#: mod/photos.php:952 -msgid "No photos selected" -msgstr "Keine Bilder ausgewählt" - -#: mod/photos.php:1053 mod/videos.php:298 -msgid "Access to this item is restricted." -msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." - -#: mod/photos.php:1114 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers." - -#: mod/photos.php:1149 -msgid "Upload Photos" -msgstr "Bilder hochladen" - -#: mod/photos.php:1153 mod/photos.php:1219 -msgid "New album name: " -msgstr "Name des neuen Albums: " - -#: mod/photos.php:1154 -msgid "or existing album name: " -msgstr "oder existierender Albumname: " - -#: mod/photos.php:1155 -msgid "Do not show a status post for this upload" -msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" - -#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 -msgid "Permissions" -msgstr "Berechtigungen" - -#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1202 -msgid "Show to Groups" -msgstr "Zeige den Gruppen" - -#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1203 -msgid "Show to Contacts" -msgstr "Zeige den Kontakten" - -#: mod/photos.php:1168 -msgid "Private Photo" -msgstr "Privates Foto" - -#: mod/photos.php:1169 -msgid "Public Photo" -msgstr "Öffentliches Foto" - -#: mod/photos.php:1232 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: mod/photos.php:1238 -msgid "Show Newest First" -msgstr "Zeige neueste zuerst" - -#: mod/photos.php:1240 -msgid "Show Oldest First" -msgstr "Zeige älteste zuerst" - -#: mod/photos.php:1268 mod/photos.php:1821 -msgid "View Photo" -msgstr "Foto betrachten" - -#: mod/photos.php:1314 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." - -#: mod/photos.php:1316 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: mod/photos.php:1372 -msgid "View photo" -msgstr "Fotos ansehen" - -#: mod/photos.php:1372 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: mod/photos.php:1373 -msgid "Use as profile photo" -msgstr "Als Profilbild verwenden" - -#: mod/photos.php:1398 -msgid "View Full Size" -msgstr "Betrachte Originalgröße" - -#: mod/photos.php:1477 -msgid "Tags: " -msgstr "Tags: " - -#: mod/photos.php:1480 -msgid "[Remove any tag]" -msgstr "[Tag entfernen]" - -#: mod/photos.php:1520 -msgid "New album name" -msgstr "Name des neuen Albums" - -#: mod/photos.php:1521 -msgid "Caption" -msgstr "Bildunterschrift" - -#: mod/photos.php:1522 -msgid "Add a Tag" -msgstr "Tag hinzufügen" - -#: mod/photos.php:1522 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1523 -msgid "Do not rotate" -msgstr "Nicht rotieren" - -#: mod/photos.php:1524 -msgid "Rotate CW (right)" -msgstr "Drehen US (rechts)" - -#: mod/photos.php:1525 -msgid "Rotate CCW (left)" -msgstr "Drehen EUS (links)" - -#: mod/photos.php:1540 -msgid "Private photo" -msgstr "Privates Foto" - -#: mod/photos.php:1541 -msgid "Public photo" -msgstr "Öffentliches Foto" - -#: mod/photos.php:1563 include/conversation.php:1055 -msgid "Share" -msgstr "Teilen" - -#: mod/photos.php:1827 mod/videos.php:380 -msgid "View Album" -msgstr "Album betrachten" - -#: mod/hcard.php:10 -msgid "No profile" -msgstr "Kein Profil" - -#: mod/register.php:92 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." - -#: mod/register.php: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 "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern." - -#: mod/register.php:107 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." - -#: mod/register.php:150 -msgid "Your registration is pending approval by the site owner." -msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." - -#: 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 "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal." - -#: mod/register.php:216 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst." - -#: mod/register.php:217 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus." - -#: mod/register.php:218 -msgid "Your OpenID (optional): " -msgstr "Deine OpenID (optional): " - -#: mod/register.php:232 -msgid "Include your profile in member directory?" -msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?" - -#: mod/register.php:256 -msgid "Membership on this site is by invitation only." -msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." - -#: mod/register.php:257 -msgid "Your invitation ID: " -msgstr "ID Deiner Einladung: " - -#: mod/register.php:268 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Vollständiger Name (z.B. Max Mustermann): " - -#: mod/register.php:269 -msgid "Your Email Address: " -msgstr "Deine E-Mail-Adresse: " - -#: mod/register.php:271 mod/settings.php:1174 -msgid "New Password:" -msgstr "Neues Passwort:" - -#: mod/register.php:271 -msgid "Leave empty for an auto generated password." -msgstr "Leer lassen um das Passwort automatisch zu generieren." - -#: mod/register.php:272 mod/settings.php:1175 -msgid "Confirm:" -msgstr "Bestätigen:" - -#: 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 "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@$sitename' sein." - -#: mod/register.php:274 -msgid "Choose a nickname: " -msgstr "Spitznamen wählen: " - -#: mod/register.php:277 boot.php:1248 include/nav.php:109 -msgid "Register" -msgstr "Registrieren" - -#: 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 "Importiere Dein Profil auf diese Friendica Instanz" - -#: mod/lostpass.php:19 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." - -#: mod/lostpass.php:35 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail." - -#: mod/lostpass.php:42 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast." - -#: mod/lostpass.php:53 -#, php-format -msgid "" -"\n" -"\t\tFollow this link to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s" - -#: mod/lostpass.php:72 -#, php-format -msgid "Password reset requested at %s" -msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" - -#: mod/lostpass.php:92 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." - -#: mod/lostpass.php:109 boot.php:1287 -msgid "Password Reset" -msgstr "Passwort zurücksetzen" - -#: mod/lostpass.php:110 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." - -#: mod/lostpass.php:111 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" - -#: mod/lostpass.php:112 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere Dein neues Passwort - und dann" - -#: mod/lostpass.php:113 -msgid "click here to login" -msgstr "hier klicken, um Dich anzumelden" - -#: mod/lostpass.php:114 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Du kannst das Passwort in den Einstellungen ändern, sobald Du Dich erfolgreich angemeldet hast." - -#: mod/lostpass.php:125 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\t\tsomething that you will remember).\n" -"\t\t\t" -msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)." - -#: mod/lostpass.php:131 -#, php-format -msgid "" -"\n" -"\t\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\t\tSite Location:\t%1$s\n" -"\t\t\t\tLogin Name:\t%2$s\n" -"\t\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t\t" -msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden." - -#: mod/lostpass.php:147 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Auf %s wurde Dein Passwort geändert" - -#: mod/lostpass.php:159 -msgid "Forgot your Password?" -msgstr "Hast Du Dein Passwort vergessen?" - -#: mod/lostpass.php:160 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet." - -#: mod/lostpass.php:161 -msgid "Nickname or Email: " -msgstr "Spitzname oder E-Mail:" - -#: mod/lostpass.php:162 -msgid "Reset" -msgstr "Zurücksetzen" - -#: mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "System zur Wartung abgeschaltet" - -#: mod/attach.php:8 -msgid "Item not available." -msgstr "Beitrag nicht verfügbar." - -#: mod/attach.php:20 -msgid "Item was not found." -msgstr "Beitrag konnte nicht gefunden werden." - -#: mod/apps.php:11 -msgid "Applications" -msgstr "Anwendungen" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Keine Applikationen installiert." - -#: mod/help.php:31 -msgid "Help:" -msgstr "Hilfe:" - -#: mod/help.php:36 include/nav.php:114 -msgid "Help" -msgstr "Hilfe" - -#: mod/contacts.php:114 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "%d Kontakt bearbeitet." -msgstr[1] "%d Kontakte bearbeitet" - -#: mod/contacts.php:145 mod/contacts.php:368 -msgid "Could not access contact record." -msgstr "Konnte nicht auf die Kontaktdaten zugreifen." - -#: mod/contacts.php:159 -msgid "Could not locate selected profile." -msgstr "Konnte das ausgewählte Profil nicht finden." - -#: mod/contacts.php:192 -msgid "Contact updated." -msgstr "Kontakt aktualisiert." - -#: mod/contacts.php:389 -msgid "Contact has been blocked" -msgstr "Kontakt wurde blockiert" - -#: mod/contacts.php:389 -msgid "Contact has been unblocked" -msgstr "Kontakt wurde wieder freigegeben" - -#: mod/contacts.php:400 -msgid "Contact has been ignored" -msgstr "Kontakt wurde ignoriert" - -#: mod/contacts.php:400 -msgid "Contact has been unignored" -msgstr "Kontakt wird nicht mehr ignoriert" - -#: mod/contacts.php:412 -msgid "Contact has been archived" -msgstr "Kontakt wurde archiviert" - -#: mod/contacts.php:412 -msgid "Contact has been unarchived" -msgstr "Kontakt wurde aus dem Archiv geholt" - -#: mod/contacts.php:439 mod/contacts.php:795 -msgid "Do you really want to delete this contact?" -msgstr "Möchtest Du wirklich diesen Kontakt löschen?" - -#: mod/contacts.php:456 -msgid "Contact has been removed." -msgstr "Kontakt wurde entfernt." - -#: mod/contacts.php:494 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Du hast mit %s eine beidseitige Freundschaft" - -#: mod/contacts.php:498 -#, php-format -msgid "You are sharing with %s" -msgstr "Du teilst mit %s" - -#: mod/contacts.php:503 -#, php-format -msgid "%s is sharing with you" -msgstr "%s teilt mit Dir" - -#: mod/contacts.php:523 -msgid "Private communications are not available for this contact." -msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." - -#: mod/contacts.php:530 -msgid "(Update was successful)" -msgstr "(Aktualisierung war erfolgreich)" - -#: mod/contacts.php:530 -msgid "(Update was not successful)" -msgstr "(Aktualisierung war nicht erfolgreich)" - -#: mod/contacts.php:532 -msgid "Suggest friends" -msgstr "Kontakte vorschlagen" - -#: mod/contacts.php:536 -#, php-format -msgid "Network type: %s" -msgstr "Netzwerktyp: %s" - -#: mod/contacts.php:539 include/contact_widgets.php:200 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d gemeinsamer Kontakt" -msgstr[1] "%d gemeinsame Kontakte" - -#: mod/contacts.php:544 -msgid "View all contacts" -msgstr "Alle Kontakte anzeigen" - -#: mod/contacts.php:552 -msgid "Toggle Blocked status" -msgstr "Geblockt-Status ein-/ausschalten" - -#: mod/contacts.php:556 mod/contacts.php:623 mod/contacts.php:799 -msgid "Unignore" -msgstr "Ignorieren aufheben" - -#: mod/contacts.php:559 -msgid "Toggle Ignored status" -msgstr "Ignoriert-Status ein-/ausschalten" - -#: mod/contacts.php:564 mod/contacts.php:800 -msgid "Unarchive" -msgstr "Aus Archiv zurückholen" - -#: mod/contacts.php:564 mod/contacts.php:800 -msgid "Archive" -msgstr "Archivieren" - -#: mod/contacts.php:567 -msgid "Toggle Archive status" -msgstr "Archiviert-Status ein-/ausschalten" - -#: mod/contacts.php:571 -msgid "Repair" -msgstr "Reparieren" - -#: mod/contacts.php:574 -msgid "Advanced Contact Settings" -msgstr "Fortgeschrittene Kontakteinstellungen" - -#: mod/contacts.php:581 -msgid "Communications lost with this contact!" -msgstr "Verbindungen mit diesem Kontakt verloren!" - -#: mod/contacts.php:584 -msgid "Fetch further information for feeds" -msgstr "Weitere Informationen zu Feeds holen" - -#: mod/contacts.php:585 -msgid "Fetch information" -msgstr "Beziehe Information" - -#: mod/contacts.php:585 -msgid "Fetch information and keywords" -msgstr "Beziehe Information und Schlüsselworte" - -#: mod/contacts.php:594 -msgid "Contact Editor" -msgstr "Kontakt Editor" - -#: mod/contacts.php:597 -msgid "Profile Visibility" -msgstr "Profil-Sichtbarkeit" - -#: mod/contacts.php:598 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft." - -#: mod/contacts.php:599 -msgid "Contact Information / Notes" -msgstr "Kontakt Informationen / Notizen" - -#: mod/contacts.php:600 -msgid "Edit contact notes" -msgstr "Notizen zum Kontakt bearbeiten" - -#: mod/contacts.php:606 -msgid "Block/Unblock contact" -msgstr "Kontakt blockieren/freischalten" - -#: mod/contacts.php:607 -msgid "Ignore contact" -msgstr "Ignoriere den Kontakt" - -#: mod/contacts.php:608 -msgid "Repair URL settings" -msgstr "URL Einstellungen reparieren" - -#: mod/contacts.php:609 -msgid "View conversations" -msgstr "Unterhaltungen anzeigen" - -#: mod/contacts.php:611 -msgid "Delete contact" -msgstr "Lösche den Kontakt" - -#: mod/contacts.php:615 -msgid "Last update:" -msgstr "Letzte Aktualisierung: " - -#: mod/contacts.php:617 -msgid "Update public posts" -msgstr "Öffentliche Beiträge aktualisieren" - -#: mod/contacts.php:626 -msgid "Currently blocked" -msgstr "Derzeit geblockt" - -#: mod/contacts.php:627 -msgid "Currently ignored" -msgstr "Derzeit ignoriert" - -#: mod/contacts.php:628 -msgid "Currently archived" -msgstr "Momentan archiviert" - -#: mod/contacts.php:629 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein" - -#: mod/contacts.php:630 -msgid "Notification for new posts" -msgstr "Benachrichtigung bei neuen Beiträgen" - -#: mod/contacts.php:630 -msgid "Send a notification of every new post of this contact" -msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt." - -#: mod/contacts.php:633 -msgid "Blacklisted keywords" -msgstr "Blacklistete Schlüsselworte " - -#: mod/contacts.php:633 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde" - -#: mod/contacts.php:640 -msgid "Profile URL" -msgstr "Profil URL" - -#: mod/contacts.php:686 -msgid "Suggestions" -msgstr "Kontaktvorschläge" - -#: mod/contacts.php:689 -msgid "Suggest potential friends" -msgstr "Freunde vorschlagen" - -#: mod/contacts.php:693 mod/group.php:192 -msgid "All Contacts" -msgstr "Alle Kontakte" - -#: mod/contacts.php:696 -msgid "Show all contacts" -msgstr "Alle Kontakte anzeigen" - -#: mod/contacts.php:700 -msgid "Unblocked" -msgstr "Ungeblockt" - -#: mod/contacts.php:703 -msgid "Only show unblocked contacts" -msgstr "Nur nicht-blockierte Kontakte anzeigen" - -#: mod/contacts.php:708 -msgid "Blocked" -msgstr "Geblockt" - -#: mod/contacts.php:711 -msgid "Only show blocked contacts" -msgstr "Nur blockierte Kontakte anzeigen" - -#: mod/contacts.php:716 -msgid "Ignored" -msgstr "Ignoriert" - -#: mod/contacts.php:719 -msgid "Only show ignored contacts" -msgstr "Nur ignorierte Kontakte anzeigen" - -#: mod/contacts.php:724 -msgid "Archived" -msgstr "Archiviert" - -#: mod/contacts.php:727 -msgid "Only show archived contacts" -msgstr "Nur archivierte Kontakte anzeigen" - -#: mod/contacts.php:732 -msgid "Hidden" -msgstr "Verborgen" - -#: mod/contacts.php:735 -msgid "Only show hidden contacts" -msgstr "Nur verborgene Kontakte anzeigen" - -#: mod/contacts.php:786 view/theme/diabook/theme.php:125 include/text.php:1005 -#: include/nav.php:124 include/nav.php:186 -msgid "Contacts" -msgstr "Kontakte" - -#: mod/contacts.php:790 -msgid "Search your contacts" -msgstr "Suche in deinen Kontakten" - -#: mod/contacts.php:791 mod/directory.php:63 -msgid "Finding: " -msgstr "Funde: " - -#: mod/contacts.php:792 mod/directory.php:65 include/contact_widgets.php:34 -msgid "Find" -msgstr "Finde" - -#: mod/contacts.php:797 mod/settings.php:146 mod/settings.php:658 -msgid "Update" -msgstr "Aktualisierungen" - -#: mod/contacts.php:814 -msgid "Mutual Friendship" -msgstr "Beidseitige Freundschaft" - -#: mod/contacts.php:818 -msgid "is a fan of yours" -msgstr "ist ein Fan von dir" - -#: mod/contacts.php:822 -msgid "you are a fan of" -msgstr "Du bist Fan von" - -#: mod/videos.php:113 -msgid "Do you really want to delete this video?" -msgstr "Möchtest Du dieses Video wirklich löschen?" - -#: mod/videos.php:118 -msgid "Delete Video" -msgstr "Video Löschen" - -#: mod/videos.php:197 -msgid "No videos selected" -msgstr "Keine Videos ausgewählt" - -#: mod/videos.php:389 -msgid "Recent Videos" -msgstr "Neueste Videos" - -#: mod/videos.php:391 -msgid "Upload New Videos" -msgstr "Neues Video hochladen" - -#: mod/common.php:45 -msgid "Common Friends" -msgstr "Gemeinsame Freunde" - -#: mod/common.php:82 -msgid "No contacts in common." -msgstr "Keine gemeinsamen Kontakte." - -#: mod/follow.php:26 -msgid "You already added this contact." -msgstr "Du hast den Kontakt bereits hinzugefügt." - -#: mod/follow.php:108 -msgid "Contact added" -msgstr "Kontakt hinzugefügt" - -#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 -msgid "Login" -msgstr "Anmeldung" - -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "Der Beitrag wurde angelegt" - -#: mod/uimport.php:66 -msgid "Move account" -msgstr "Account umziehen" - -#: mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "Du kannst einen Account von einem anderen Friendica Server importieren." - -#: mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist." - -#: mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren" - -#: mod/uimport.php:70 -msgid "Account file" -msgstr "Account Datei" - -#: mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"" - -#: mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s folgt %2$s %3$s" - -#: mod/allfriends.php:37 -#, php-format -msgid "Friends of %s" -msgstr "Freunde von %s" - -#: mod/allfriends.php:44 -msgid "No friends to display." -msgstr "Keine Freunde zum Anzeigen." - -#: mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag entfernt" - -#: mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Gegenstands-Tag entfernen" - -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Wähle ein Tag zum Entfernen aus: " - -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "Entfernen" - -#: mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Willkommen bei Friendica" - -#: mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Checkliste für neue Mitglieder" - -#: mod/newmember.php:12 -msgid "" -"We would like to offer some tips and links to help make your experience " -"enjoyable. Click any item to visit the relevant page. A link to this page " -"will be visible from your home page for two weeks after your initial " -"registration and then will quietly disappear." -msgstr "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden." - -#: mod/newmember.php:14 -msgid "Getting Started" -msgstr "Einstieg" - -#: mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Friendica Rundgang" - -#: mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst." - -#: mod/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Gehe zu deinen Einstellungen" - -#: mod/newmember.php:26 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This looks just like an email address - and " -"will be useful in making friends on the free social web." -msgstr "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen." - -#: mod/newmember.php:28 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished" -" directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können." - -#: mod/newmember.php:32 mod/profperm.php:104 view/theme/diabook/theme.php:124 -#: include/identity.php:530 include/identity.php:611 include/identity.php:641 -#: include/nav.php:77 -msgid "Profile" -msgstr "Profil" - -#: mod/newmember.php:36 mod/profiles.php:696 mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "Profilbild hochladen" - -#: mod/newmember.php:36 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make" -" friends than people who do not." -msgstr "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust." - -#: mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Editiere dein Profil" - -#: mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "Editiere Dein Standard Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils." - -#: mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Profil Schlüsselbegriffe" - -#: mod/newmember.php:40 -msgid "" -"Set some public keywords for your default profile which describe your " -"interests. We may be able to find other people with similar interests and " -"suggest friendships." -msgstr "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen." - -#: mod/newmember.php:44 -msgid "Connecting" -msgstr "Verbindungen knüpfen" - -#: mod/newmember.php:49 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 "Richte die Verbindung zu Facebook ein, wenn Du im Augenblick ein Facebook-Konto hast und (optional) Deine Facebook-Freunde und -Unterhaltungen importieren willst." - -#: mod/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "Wenn dies Dein privater Server ist, könnte die Installation des Facebook Connectors Deinen Umzug ins freie soziale Netz angenehmer gestalten." - -#: mod/newmember.php:56 -msgid "Importing Emails" -msgstr "Emails Importieren" - -#: mod/newmember.php:56 -msgid "" -"Enter your email access information on your Connector Settings page if you " -"wish to import and interact with friends or mailing lists from your email " -"INBOX" -msgstr "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willst." - -#: mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Gehe zu deiner Kontakt-Seite" - -#: mod/newmember.php:58 -msgid "" -"Your Contacts page is your gateway to managing friendships and connecting " -"with friends on other networks. Typically you enter their address or site " -"URL in the Add New Contact dialog." -msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein." - -#: mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz" - -#: mod/newmember.php:60 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst." - -#: mod/newmember.php:62 -msgid "Finding New People" -msgstr "Neue Leute kennenlernen" - -#: mod/newmember.php:62 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand" -" new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden." - -#: mod/newmember.php:66 include/group.php:270 -msgid "Groups" -msgstr "Gruppen" - -#: mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Gruppiere deine Kontakte" - -#: mod/newmember.php:70 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with" -" each group privately on your Network page." -msgstr "Sobald Du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren." - -#: mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Warum sind meine Beiträge nicht öffentlich?" - -#: mod/newmember.php:73 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch." - -#: mod/newmember.php:78 -msgid "Getting Help" -msgstr "Hilfe bekommen" - -#: mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Zum Hilfe Abschnitt gehen" - -#: mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten." - -#: mod/search.php:25 mod/network.php:187 -msgid "Remove term" -msgstr "Begriff entfernen" - -#: mod/search.php:34 mod/network.php:196 include/features.php:42 -msgid "Saved Searches" -msgstr "Gespeicherte Suchen" - -#: mod/search.php:107 include/text.php:996 include/nav.php:119 -msgid "Search" -msgstr "Suche" - -#: mod/search.php:199 mod/community.php:62 mod/community.php:71 -msgid "No results." -msgstr "Keine Ergebnisse." - -#: mod/search.php:205 -#, php-format -msgid "Items tagged with: %s" -msgstr "Beiträge markiert mit: %s" - -#: mod/search.php:207 -#, php-format -msgid "Search results for: %s" -msgstr "Suchergebnisse für: %s" - -#: mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limit für Einladungen erreicht." - -#: mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Keine gültige Email Adresse." - -#: mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein" - -#: mod/invite.php:84 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite." - -#: mod/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Zustellung der Nachricht fehlgeschlagen." - -#: mod/invite.php:93 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d Nachricht gesendet." -msgstr[1] "%d Nachrichten gesendet." - -#: mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren Einladungen" - -#: mod/invite.php:120 -#, php-format -msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many" -" other social networks." -msgstr "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke." - -#: mod/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website." - -#: mod/invite.php:123 -#, php-format -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst." - -#: mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen." - -#: mod/invite.php:132 -msgid "Send invitations" -msgstr "Einladungen senden" - -#: mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "E-Mail-Adressen eingeben, eine pro Zeile:" - -#: mod/invite.php:135 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen." - -#: mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Du benötigst den folgenden Einladungscode: $invite_code" - -#: mod/invite.php:137 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:" - -#: mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" -msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com" - -#: mod/settings.php:47 -msgid "Additional features" -msgstr "Zusätzliche Features" - -#: mod/settings.php:53 -msgid "Display" -msgstr "Anzeige" - -#: mod/settings.php:60 mod/settings.php:837 -msgid "Social Networks" -msgstr "Soziale Netzwerke" - -#: mod/settings.php:72 include/nav.php:179 -msgid "Delegations" -msgstr "Delegationen" - -#: mod/settings.php:78 -msgid "Connected apps" -msgstr "Verbundene Programme" - -#: mod/settings.php:84 mod/uexport.php:85 -msgid "Export personal data" -msgstr "Persönliche Daten exportieren" - -#: mod/settings.php:90 -msgid "Remove account" -msgstr "Konto löschen" - -#: mod/settings.php:143 -msgid "Missing some important data!" -msgstr "Wichtige Daten fehlen!" - -#: mod/settings.php:256 -msgid "Failed to connect with email account using the settings provided." -msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich." - -#: mod/settings.php:261 -msgid "Email settings updated." -msgstr "E-Mail Einstellungen bearbeitet." - -#: mod/settings.php:276 -msgid "Features updated" -msgstr "Features aktualisiert" - -#: mod/settings.php:339 -msgid "Relocate message has been send to your contacts" -msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet." - -#: mod/settings.php:353 include/user.php:39 -msgid "Passwords do not match. Password unchanged." -msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." - -#: mod/settings.php:358 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert." - -#: mod/settings.php:366 -msgid "Wrong password." -msgstr "Falsches Passwort." - -#: mod/settings.php:377 -msgid "Password changed." -msgstr "Passwort geändert." - -#: mod/settings.php:379 -msgid "Password update failed. Please try again." -msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." - -#: mod/settings.php:446 -msgid " Please use a shorter name." -msgstr " Bitte verwende einen kürzeren Namen." - -#: mod/settings.php:448 -msgid " Name too short." -msgstr " Name ist zu kurz." - -#: mod/settings.php:457 -msgid "Wrong Password" -msgstr "Falsches Passwort" - -#: mod/settings.php:462 -msgid " Not valid email." -msgstr " Keine gültige E-Mail." - -#: mod/settings.php:468 -msgid " Cannot change to that email." -msgstr "Ändern der E-Mail nicht möglich. " - -#: mod/settings.php:524 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt." - -#: mod/settings.php:528 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte." - -#: mod/settings.php:558 -msgid "Settings updated." -msgstr "Einstellungen aktualisiert." - -#: mod/settings.php:631 mod/settings.php:657 mod/settings.php:693 -msgid "Add application" -msgstr "Programm hinzufügen" - -#: 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 "Umleiten" - -#: mod/settings.php:638 mod/settings.php:664 -msgid "Icon url" -msgstr "Icon URL" - -#: mod/settings.php:649 -msgid "You can't edit this application." -msgstr "Du kannst dieses Programm nicht bearbeiten." - -#: mod/settings.php:692 -msgid "Connected Apps" -msgstr "Verbundene Programme" - -#: mod/settings.php:696 -msgid "Client key starts with" -msgstr "Anwenderschlüssel beginnt mit" - -#: mod/settings.php:697 -msgid "No name" -msgstr "Kein Name" - -#: mod/settings.php:698 -msgid "Remove authorization" -msgstr "Autorisierung entziehen" - -#: mod/settings.php:710 -msgid "No Plugin settings configured" -msgstr "Keine Plugin-Einstellungen konfiguriert" - -#: mod/settings.php:718 -msgid "Plugin Settings" -msgstr "Plugin-Einstellungen" - -#: mod/settings.php:732 -msgid "Off" -msgstr "Aus" - -#: mod/settings.php:732 -msgid "On" -msgstr "An" - -#: mod/settings.php:740 -msgid "Additional Features" -msgstr "Zusätzliche Features" - -#: mod/settings.php:750 mod/settings.php:754 -msgid "General Social Media Settings" -msgstr "Allgemeine Einstellungen zu Sozialen Medien" - -#: mod/settings.php:760 -msgid "Disable intelligent shortening" -msgstr "Intelligentes Link kürzen ausschalten" - -#: 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 "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt." - -#: mod/settings.php:768 -msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen" - -#: 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 "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,." - -#: mod/settings.php:779 -msgid "Your legacy GNU Social account" -msgstr "Dein alter GNU Social Account" - -#: mod/settings.php:781 -msgid "" -"If you enter your old GNU Social/Statusnet account name here (in the format " -"user@domain.tld), your contacts will be added automatically. The field will " -"be emptied when done." -msgstr "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden." - -#: mod/settings.php:784 -msgid "Repair OStatus subscriptions" -msgstr "OStatus Abonnements reparieren" - -#: mod/settings.php:793 mod/settings.php:794 -#, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s" - -#: mod/settings.php:793 mod/settings.php:794 -msgid "enabled" -msgstr "eingeschaltet" - -#: mod/settings.php:793 mod/settings.php:794 -msgid "disabled" -msgstr "ausgeschaltet" - -#: mod/settings.php:794 -msgid "GNU Social (OStatus)" -msgstr "GNU Social (OStatus)" - -#: mod/settings.php:830 -msgid "Email access is disabled on this site." -msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." - -#: mod/settings.php:842 -msgid "Email/Mailbox Setup" -msgstr "E-Mail/Postfach-Einstellungen" - -#: mod/settings.php:843 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an." - -#: mod/settings.php:844 -msgid "Last successful email check:" -msgstr "Letzter erfolgreicher E-Mail Check" - -#: mod/settings.php:846 -msgid "IMAP server name:" -msgstr "IMAP-Server-Name:" - -#: mod/settings.php:847 -msgid "IMAP port:" -msgstr "IMAP-Port:" - -#: mod/settings.php:848 -msgid "Security:" -msgstr "Sicherheit:" - -#: mod/settings.php:848 mod/settings.php:853 -msgid "None" -msgstr "Keine" - -#: mod/settings.php:849 -msgid "Email login name:" -msgstr "E-Mail-Login-Name:" - -#: mod/settings.php:850 -msgid "Email password:" -msgstr "E-Mail-Passwort:" - -#: mod/settings.php:851 -msgid "Reply-to address:" -msgstr "Reply-to Adresse:" - -#: mod/settings.php:852 -msgid "Send public posts to all email contacts:" -msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" - -#: mod/settings.php:853 -msgid "Action after import:" -msgstr "Aktion nach Import:" - -#: mod/settings.php:853 -msgid "Mark as seen" -msgstr "Als gelesen markieren" - -#: mod/settings.php:853 -msgid "Move to folder" -msgstr "In einen Ordner verschieben" - -#: mod/settings.php:854 -msgid "Move to folder:" -msgstr "In diesen Ordner verschieben:" - -#: mod/settings.php:935 -msgid "Display Settings" -msgstr "Anzeige-Einstellungen" - -#: mod/settings.php:941 mod/settings.php:957 -msgid "Display Theme:" -msgstr "Theme:" - -#: mod/settings.php:942 -msgid "Mobile Theme:" -msgstr "Mobiles Theme" - -#: mod/settings.php:943 -msgid "Update browser every xx seconds" -msgstr "Browser alle xx Sekunden aktualisieren" - -#: mod/settings.php:943 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimal 10 Sekunden, kein Maximum" - -#: mod/settings.php:944 -msgid "Number of items to display per page:" -msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " - -#: mod/settings.php:944 mod/settings.php:945 -msgid "Maximum of 100 items" -msgstr "Maximal 100 Beiträge" - -#: mod/settings.php:945 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:" - -#: mod/settings.php:946 -msgid "Don't show emoticons" -msgstr "Keine Smilies anzeigen" - -#: mod/settings.php:947 -msgid "Don't show notices" -msgstr "Info-Popups nicht anzeigen" - -#: mod/settings.php:948 -msgid "Infinite scroll" -msgstr "Endloses Scrollen" - -#: mod/settings.php:949 -msgid "Automatic updates only at the top of the network page" -msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist." - -#: mod/settings.php:951 view/theme/diabook/config.php:150 -#: view/theme/vier/config.php:58 view/theme/dispy/config.php:72 -#: view/theme/duepuntozero/config.php:61 view/theme/quattro/config.php:66 -#: view/theme/cleanzero/config.php:82 -msgid "Theme settings" -msgstr "Themeneinstellungen" - -#: mod/settings.php:1027 -msgid "User Types" -msgstr "Nutzer Art" - -#: mod/settings.php:1028 -msgid "Community Types" -msgstr "Gemeinschafts Art" - -#: mod/settings.php:1029 -msgid "Normal Account Page" -msgstr "Normales Konto" - -#: mod/settings.php:1030 -msgid "This account is a normal personal profile" -msgstr "Dieses Konto ist ein normales persönliches Profil" - -#: mod/settings.php:1033 -msgid "Soapbox Page" -msgstr "Marktschreier-Konto" - -#: mod/settings.php:1034 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert" - -#: mod/settings.php:1037 -msgid "Community Forum/Celebrity Account" -msgstr "Forum/Promi-Konto" - -#: mod/settings.php:1038 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert" - -#: mod/settings.php:1041 -msgid "Automatic Friend Page" -msgstr "Automatische Freunde Seite" - -#: mod/settings.php:1042 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert" - -#: mod/settings.php:1045 -msgid "Private Forum [Experimental]" -msgstr "Privates Forum [Versuchsstadium]" - -#: mod/settings.php:1046 -msgid "Private forum - approved members only" -msgstr "Privates Forum, nur für Mitglieder" - -#: mod/settings.php:1058 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1058 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID." - -#: mod/settings.php:1068 -msgid "Publish your default profile in your local site directory?" -msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?" - -#: mod/settings.php:1074 -msgid "Publish your default profile in the global social directory?" -msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?" - -#: mod/settings.php:1082 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?" - -#: mod/settings.php:1086 include/acl_selectors.php:330 -msgid "Hide your profile details from unknown viewers?" -msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" - -#: mod/settings.php:1086 -msgid "" -"If enabled, posting public messages to Diaspora and other networks isn't " -"possible." -msgstr "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich" - -#: mod/settings.php:1091 -msgid "Allow friends to post to your profile page?" -msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?" - -#: mod/settings.php:1097 -msgid "Allow friends to tag your posts?" -msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?" - -#: mod/settings.php:1103 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" - -#: mod/settings.php:1109 -msgid "Permit unknown people to send you private mail?" -msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?" - -#: mod/settings.php:1117 -msgid "Profile is not published." -msgstr "Profil ist nicht veröffentlicht." - -#: mod/settings.php:1125 -#, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "Die Adresse deines Profils lautet '%s' oder '%s'." - -#: mod/settings.php:1132 -msgid "Automatically expire posts after this many days:" -msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" - -#: mod/settings.php:1132 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht." - -#: mod/settings.php:1133 -msgid "Advanced expiration settings" -msgstr "Erweiterte Verfallseinstellungen" - -#: mod/settings.php:1134 -msgid "Advanced Expiration" -msgstr "Erweitertes Verfallen" - -#: mod/settings.php:1135 -msgid "Expire posts:" -msgstr "Beiträge verfallen lassen:" - -#: mod/settings.php:1136 -msgid "Expire personal notes:" -msgstr "Persönliche Notizen verfallen lassen:" - -#: mod/settings.php:1137 -msgid "Expire starred posts:" -msgstr "Markierte Beiträge verfallen lassen:" - -#: mod/settings.php:1138 -msgid "Expire photos:" -msgstr "Fotos verfallen lassen:" - -#: mod/settings.php:1139 -msgid "Only expire posts by others:" -msgstr "Nur Beiträge anderer verfallen:" - -#: mod/settings.php:1165 -msgid "Account Settings" -msgstr "Kontoeinstellungen" - -#: mod/settings.php:1173 -msgid "Password Settings" -msgstr "Passwort-Einstellungen" - -#: mod/settings.php:1175 -msgid "Leave password fields blank unless changing" -msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern" - -#: mod/settings.php:1176 -msgid "Current Password:" -msgstr "Aktuelles Passwort:" - -#: mod/settings.php:1176 mod/settings.php:1177 -msgid "Your current password to confirm the changes" -msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" - -#: mod/settings.php:1177 -msgid "Password:" -msgstr "Passwort:" - -#: mod/settings.php:1181 -msgid "Basic Settings" -msgstr "Grundeinstellungen" - -#: mod/settings.php:1182 include/identity.php:539 -msgid "Full Name:" -msgstr "Kompletter Name:" - -#: mod/settings.php:1183 -msgid "Email Address:" -msgstr "E-Mail-Adresse:" - -#: mod/settings.php:1184 -msgid "Your Timezone:" -msgstr "Deine Zeitzone:" - -#: mod/settings.php:1185 -msgid "Default Post Location:" -msgstr "Standardstandort:" - -#: mod/settings.php:1186 -msgid "Use Browser Location:" -msgstr "Standort des Browsers verwenden:" - -#: mod/settings.php:1189 -msgid "Security and Privacy Settings" -msgstr "Sicherheits- und Privatsphäre-Einstellungen" - -#: mod/settings.php:1191 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:" - -#: mod/settings.php:1191 mod/settings.php:1221 -msgid "(to prevent spam abuse)" -msgstr "(um SPAM zu vermeiden)" - -#: mod/settings.php:1192 -msgid "Default Post Permissions" -msgstr "Standard-Zugriffsrechte für Beiträge" - -#: mod/settings.php:1193 -msgid "(click to open/close)" -msgstr "(klicke zum öffnen/schließen)" - -#: mod/settings.php:1204 -msgid "Default Private Post" -msgstr "Privater Standardbeitrag" - -#: mod/settings.php:1205 -msgid "Default Public Post" -msgstr "Öffentlicher Standardbeitrag" - -#: mod/settings.php:1209 -msgid "Default Permissions for New Posts" -msgstr "Standardberechtigungen für neue Beiträge" - -#: mod/settings.php:1221 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" - -#: mod/settings.php:1224 -msgid "Notification Settings" -msgstr "Benachrichtigungseinstellungen" - -#: mod/settings.php:1225 -msgid "By default post a status message when:" -msgstr "Standardmäßig eine Statusnachricht posten, wenn:" - -#: mod/settings.php:1226 -msgid "accepting a friend request" -msgstr "– Du eine Kontaktanfrage akzeptierst" - -#: mod/settings.php:1227 -msgid "joining a forum/community" -msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst" - -#: mod/settings.php:1228 -msgid "making an interesting profile change" -msgstr "– Du eine interessante Änderung an Deinem Profil durchführst" - -#: mod/settings.php:1229 -msgid "Send a notification email when:" -msgstr "Benachrichtigungs-E-Mail senden wenn:" - -#: mod/settings.php:1230 -msgid "You receive an introduction" -msgstr "– Du eine Kontaktanfrage erhältst" - -#: mod/settings.php:1231 -msgid "Your introductions are confirmed" -msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" - -#: mod/settings.php:1232 -msgid "Someone writes on your profile wall" -msgstr "– jemand etwas auf Deine Pinnwand schreibt" - -#: mod/settings.php:1233 -msgid "Someone writes a followup comment" -msgstr "– jemand auch einen Kommentar verfasst" - -#: mod/settings.php:1234 -msgid "You receive a private message" -msgstr "– Du eine private Nachricht erhältst" - -#: mod/settings.php:1235 -msgid "You receive a friend suggestion" -msgstr "– Du eine Empfehlung erhältst" - -#: mod/settings.php:1236 -msgid "You are tagged in a post" -msgstr "– Du in einem Beitrag erwähnt wirst" - -#: mod/settings.php:1237 -msgid "You are poked/prodded/etc. in a post" -msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst" - -#: mod/settings.php:1239 -msgid "Activate desktop notifications" -msgstr "Desktop Benachrichtigungen einschalten" - -#: mod/settings.php:1239 -msgid "Show desktop popup on new notifications" -msgstr "Desktop Benachrichtigungen einschalten" - -#: mod/settings.php:1241 -msgid "Text-only notification emails" -msgstr "Benachrichtigungs E-Mail als Rein-Text." - -#: mod/settings.php:1243 -msgid "Send text only notification emails, without the html part" -msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil" - -#: mod/settings.php:1245 -msgid "Advanced Account/Page Type Settings" -msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" - -#: mod/settings.php:1246 -msgid "Change the behaviour of this account for special situations" -msgstr "Verhalten dieses Kontos in bestimmten Situationen:" - -#: mod/settings.php:1249 -msgid "Relocate" -msgstr "Umziehen" - -#: mod/settings.php:1250 -msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." -msgstr "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button." - -#: mod/settings.php:1251 -msgid "Resend relocate message to contacts" -msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" - -#: mod/display.php:505 -msgid "Item has been removed." -msgstr "Eintrag wurde entfernt." - -#: mod/dirfind.php:36 -#, php-format -msgid "People Search - %s" -msgstr "Personensuche - %s" - -#: mod/dirfind.php:125 mod/suggest.php:92 mod/match.php:70 -#: include/identity.php:188 include/contact_widgets.php:10 -msgid "Connect" -msgstr "Verbinden" - -#: mod/dirfind.php:141 mod/match.php:77 -msgid "No matches" -msgstr "Keine Übereinstimmungen" - -#: mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profil gelöscht." - -#: mod/profiles.php:55 mod/profiles.php:89 -msgid "Profile-" -msgstr "Profil-" - -#: mod/profiles.php:74 mod/profiles.php:117 -msgid "New profile created." -msgstr "Neues Profil angelegt." - -#: mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Profil nicht zum Duplizieren verfügbar." - -#: mod/profiles.php:189 -msgid "Profile Name is required." -msgstr "Profilname ist erforderlich." - -#: mod/profiles.php:336 -msgid "Marital Status" -msgstr "Familienstand" - -#: mod/profiles.php:340 -msgid "Romantic Partner" -msgstr "Romanze" - -#: mod/profiles.php:344 -msgid "Likes" -msgstr "Likes" - -#: mod/profiles.php:348 -msgid "Dislikes" -msgstr "Dislikes" - -#: mod/profiles.php:352 -msgid "Work/Employment" -msgstr "Arbeit / Beschäftigung" - -#: mod/profiles.php:355 -msgid "Religion" -msgstr "Religion" - -#: mod/profiles.php:359 -msgid "Political Views" -msgstr "Politische Ansichten" - -#: mod/profiles.php:363 -msgid "Gender" -msgstr "Geschlecht" - -#: mod/profiles.php:367 -msgid "Sexual Preference" -msgstr "Sexuelle Vorlieben" - -#: mod/profiles.php:371 -msgid "Homepage" -msgstr "Webseite" - -#: mod/profiles.php:375 mod/profiles.php:695 -msgid "Interests" -msgstr "Interessen" - -#: mod/profiles.php:379 -msgid "Address" -msgstr "Adresse" - -#: mod/profiles.php:386 mod/profiles.php:691 -msgid "Location" -msgstr "Wohnort" - -#: mod/profiles.php:469 -msgid "Profile updated." -msgstr "Profil aktualisiert." - -#: mod/profiles.php:565 -msgid " and " -msgstr " und " - -#: mod/profiles.php:573 -msgid "public profile" -msgstr "öffentliches Profil" - -#: mod/profiles.php:576 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s hat %2$s geändert auf “%3$s”" - -#: mod/profiles.php:577 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " – %1$ss %2$s besuchen" - -#: mod/profiles.php:580 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s." - -#: mod/profiles.php:655 -msgid "Hide contacts and friends:" -msgstr "Kontakte und Freunde verbergen" - -#: mod/profiles.php:660 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?" - -#: mod/profiles.php:682 -msgid "Edit Profile Details" -msgstr "Profil bearbeiten" - -#: mod/profiles.php:684 -msgid "Change Profile Photo" -msgstr "Profilbild ändern" - -#: mod/profiles.php:685 -msgid "View this profile" -msgstr "Dieses Profil anzeigen" - -#: mod/profiles.php:686 -msgid "Create a new profile using these settings" -msgstr "Neues Profil anlegen und diese Einstellungen verwenden" - -#: mod/profiles.php:687 -msgid "Clone this profile" -msgstr "Dieses Profil duplizieren" - -#: mod/profiles.php:688 -msgid "Delete this profile" -msgstr "Dieses Profil löschen" - -#: mod/profiles.php:689 -msgid "Basic information" -msgstr "Grundinformationen" - -#: mod/profiles.php:690 -msgid "Profile picture" -msgstr "Profilbild" - -#: mod/profiles.php:692 -msgid "Preferences" -msgstr "Vorlieben" - -#: mod/profiles.php:693 -msgid "Status information" -msgstr "Status Informationen" - -#: mod/profiles.php:694 -msgid "Additional information" -msgstr "Zusätzliche Informationen" - -#: mod/profiles.php:697 -msgid "Profile Name:" -msgstr "Profilname:" - -#: mod/profiles.php:698 -msgid "Your Full Name:" -msgstr "Dein kompletter Name:" - -#: mod/profiles.php:699 -msgid "Title/Description:" -msgstr "Titel/Beschreibung:" - -#: mod/profiles.php:700 -msgid "Your Gender:" -msgstr "Dein Geschlecht:" - -#: mod/profiles.php:701 -msgid "Birthday :" -msgstr "Geburtstag :" - -#: mod/profiles.php:702 -msgid "Street Address:" -msgstr "Adresse:" - -#: mod/profiles.php:703 -msgid "Locality/City:" -msgstr "Wohnort:" - -#: mod/profiles.php:704 -msgid "Postal/Zip Code:" -msgstr "Postleitzahl:" - -#: mod/profiles.php:705 -msgid "Country:" -msgstr "Land:" - -#: mod/profiles.php:706 -msgid "Region/State:" -msgstr "Region/Bundesstaat:" - -#: mod/profiles.php:707 -msgid " Marital Status:" -msgstr " Beziehungsstatus:" - -#: mod/profiles.php:708 -msgid "Who: (if applicable)" -msgstr "Wer: (falls anwendbar)" - -#: mod/profiles.php:709 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" - -#: mod/profiles.php:710 -msgid "Since [date]:" -msgstr "Seit [Datum]:" - -#: mod/profiles.php:711 include/identity.php:570 -msgid "Sexual Preference:" -msgstr "Sexuelle Vorlieben:" - -#: mod/profiles.php:712 -msgid "Homepage URL:" -msgstr "Adresse der Homepage:" - -#: mod/profiles.php:713 include/identity.php:574 -msgid "Hometown:" -msgstr "Heimatort:" - -#: mod/profiles.php:714 include/identity.php:578 -msgid "Political Views:" -msgstr "Politische Ansichten:" - -#: mod/profiles.php:715 -msgid "Religious Views:" -msgstr "Religiöse Ansichten:" - -#: mod/profiles.php:716 -msgid "Public Keywords:" -msgstr "Öffentliche Schlüsselwörter:" - -#: mod/profiles.php:717 -msgid "Private Keywords:" -msgstr "Private Schlüsselwörter:" - -#: mod/profiles.php:718 include/identity.php:586 -msgid "Likes:" -msgstr "Likes:" - -#: mod/profiles.php:719 include/identity.php:588 -msgid "Dislikes:" -msgstr "Dislikes:" - -#: mod/profiles.php:720 -msgid "Example: fishing photography software" -msgstr "Beispiel: Fischen Fotografie Software" - -#: mod/profiles.php:721 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)" - -#: mod/profiles.php:722 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)" - -#: mod/profiles.php:723 -msgid "Tell us about yourself..." -msgstr "Erzähle uns ein bisschen von Dir …" - -#: mod/profiles.php:724 -msgid "Hobbies/Interests" -msgstr "Hobbies/Interessen" - -#: mod/profiles.php:725 -msgid "Contact information and Social Networks" -msgstr "Kontaktinformationen und Soziale Netzwerke" - -#: mod/profiles.php:726 -msgid "Musical interests" -msgstr "Musikalische Interessen" - -#: mod/profiles.php:727 -msgid "Books, literature" -msgstr "Bücher, Literatur" - -#: mod/profiles.php:728 -msgid "Television" -msgstr "Fernsehen" - -#: mod/profiles.php:729 -msgid "Film/dance/culture/entertainment" -msgstr "Filme/Tänze/Kultur/Unterhaltung" - -#: mod/profiles.php:730 -msgid "Love/romance" -msgstr "Liebe/Romantik" - -#: mod/profiles.php:731 -msgid "Work/employment" -msgstr "Arbeit/Anstellung" - -#: mod/profiles.php:732 -msgid "School/education" -msgstr "Schule/Ausbildung" - -#: mod/profiles.php:737 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "Dies ist Dein öffentliches Profil.
    Es könnte für jeden Nutzer des Internets sichtbar sein." - -#: mod/profiles.php:747 mod/directory.php:129 -msgid "Age: " -msgstr "Alter: " - -#: mod/profiles.php:800 -msgid "Edit/Manage Profiles" -msgstr "Bearbeite/Verwalte Profile" - -#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257 -msgid "Change profile photo" -msgstr "Profilbild ändern" - -#: mod/profiles.php:802 include/identity.php:232 -msgid "Create New Profile" -msgstr "Neues Profil anlegen" - -#: mod/profiles.php:813 include/identity.php:242 -msgid "Profile Image" -msgstr "Profilbild" - -#: mod/profiles.php:815 include/identity.php:245 -msgid "visible to everybody" -msgstr "sichtbar für jeden" - -#: mod/profiles.php:816 include/identity.php:246 -msgid "Edit visibility" -msgstr "Sichtbarkeit bearbeiten" - -#: mod/share.php:38 -msgid "link" -msgstr "Link" - -#: mod/uexport.php:77 -msgid "Export account" -msgstr "Account exportieren" - -#: mod/uexport.php:77 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen." - -#: mod/uexport.php:78 -msgid "Export all" -msgstr "Alles exportieren" - -#: mod/uexport.php:78 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)." - -#: mod/ping.php:233 -msgid "{0} wants to be your friend" -msgstr "{0} möchte mit Dir in Kontakt treten" - -#: mod/ping.php:248 -msgid "{0} sent you a message" -msgstr "{0} schickte Dir eine Nachricht" - -#: mod/ping.php:263 -msgid "{0} requested registration" -msgstr "{0} möchte sich registrieren" - -#: mod/navigation.php:20 include/nav.php:34 -msgid "Nothing new here" -msgstr "Keine Neuigkeiten" - -#: mod/navigation.php:24 include/nav.php:38 -msgid "Clear notifications" -msgstr "Bereinige Benachrichtigungen" - -#: mod/community.php:23 -msgid "Not available." -msgstr "Nicht verfügbar." - -#: mod/community.php:32 view/theme/diabook/theme.php:129 include/nav.php:137 -#: include/nav.php:139 -msgid "Community" -msgstr "Gemeinschaft" - -#: mod/filer.php:30 include/conversation.php:1005 -#: include/conversation.php:1023 -msgid "Save to Folder:" -msgstr "In diesem Ordner speichern:" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "- auswählen -" - -#: mod/wall_attach.php:83 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt." - -#: mod/wall_attach.php:83 -msgid "Or - did you try to upload an empty file?" -msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?" - -#: mod/wall_attach.php:94 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Die Datei ist größer als das erlaubte Limit von %s" - -#: mod/wall_attach.php:145 mod/wall_attach.php:161 -msgid "File upload failed." -msgstr "Hochladen der Datei fehlgeschlagen." - -#: mod/profperm.php:25 mod/profperm.php:56 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Bezeichner." - -#: mod/profperm.php:102 -msgid "Profile Visibility Editor" -msgstr "Editor für die Profil-Sichtbarkeit" - -#: mod/profperm.php:106 mod/group.php:222 -msgid "Click on a contact to add or remove." -msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" - -#: mod/profperm.php:115 -msgid "Visible To" -msgstr "Sichtbar für" - -#: mod/profperm.php:131 -msgid "All Contacts (with secure profile access)" -msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" - -#: mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Möchtest Du wirklich diese Empfehlung löschen?" - -#: mod/suggest.php:69 view/theme/diabook/theme.php:527 -#: include/contact_widgets.php:35 -msgid "Friend Suggestions" -msgstr "Kontaktvorschläge" - -#: mod/suggest.php:76 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal." - -#: mod/suggest.php:94 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verbergen" - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Zugriff verweigert." - -#: mod/repair_ostatus.php:14 -msgid "Resubsribing to OStatus contacts" -msgstr "Erneuern der OStatus Abonements" - -#: mod/repair_ostatus.php:30 -msgid "Error" -msgstr "Fehler" - -#: mod/repair_ostatus.php:44 mod/ostatus_subscribe.php:51 -msgid "Done" -msgstr "Erledigt" - -#: mod/repair_ostatus.php:50 mod/ostatus_subscribe.php:73 -msgid "Keep this window open until done." -msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist." - -#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s heißt %2$s herzlich willkommen" - -#: mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Verwalte Identitäten und/oder Seiten" - -#: mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast." - -#: mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Wähle eine Identität zum Verwalten aus: " - -#: mod/delegate.php:101 -msgid "No potential page delegates located." -msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." - -#: mod/delegate.php:130 include/nav.php:179 -msgid "Delegate Page Management" -msgstr "Delegiere das Management für die Seite" - -#: mod/delegate.php:132 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!" - -#: mod/delegate.php:133 -msgid "Existing Page Managers" -msgstr "Vorhandene Seitenmanager" - -#: mod/delegate.php:135 -msgid "Existing Page Delegates" -msgstr "Vorhandene Bevollmächtigte für die Seite" - -#: mod/delegate.php:137 -msgid "Potential Delegates" -msgstr "Potentielle Bevollmächtigte" - -#: mod/delegate.php:140 -msgid "Add" -msgstr "Hinzufügen" - -#: mod/delegate.php:141 -msgid "No entries." -msgstr "Keine Einträge." - -#: mod/viewcontacts.php:41 -msgid "No contacts." -msgstr "Keine Kontakte." - -#: mod/viewcontacts.php:78 include/text.php:917 -msgid "View Contacts" -msgstr "Kontakte anzeigen" - -#: mod/notes.php:44 include/identity.php:676 -msgid "Personal Notes" -msgstr "Persönliche Notizen" - -#: mod/poke.php:192 -msgid "Poke/Prod" -msgstr "Anstupsen" - -#: mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "Stupse Leute an oder mache anderes mit ihnen" - -#: mod/poke.php:194 -msgid "Recipient" -msgstr "Empfänger" - -#: mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "Was willst Du mit dem Empfänger machen:" - -#: mod/poke.php:198 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" - -#: mod/directory.php:53 view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Weltweites Verzeichnis" - -#: mod/directory.php:61 -msgid "Find on this site" -msgstr "Auf diesem Server suchen" - -#: mod/directory.php:64 -msgid "Site Directory" -msgstr "Verzeichnis" - -#: mod/directory.php:132 -msgid "Gender: " -msgstr "Geschlecht:" - -#: mod/directory.php:156 include/identity.php:273 include/identity.php:561 -msgid "Status:" -msgstr "Status:" - -#: mod/directory.php:158 include/identity.php:275 include/identity.php:572 -msgid "Homepage:" -msgstr "Homepage:" - -#: mod/directory.php:205 -msgid "No entries (some entries may be hidden)." -msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." - -#: mod/ostatus_subscribe.php:14 -msgid "Subsribing to OStatus contacts" -msgstr "OStatus Kontakten folgen" - -#: mod/ostatus_subscribe.php:25 -msgid "No contact provided." -msgstr "Keine Kontakte gefunden." - -#: mod/ostatus_subscribe.php:30 -msgid "Couldn't fetch information for contact." -msgstr "Konnte die Kontaktinformationen nicht einholen." - -#: mod/ostatus_subscribe.php:38 -msgid "Couldn't fetch friends for contact." -msgstr "Konnte die Kontaktliste des Kontakts nicht abfragen." - -#: mod/ostatus_subscribe.php:65 -msgid "success" -msgstr "Erfolg" - -#: mod/ostatus_subscribe.php:67 -msgid "failed" -msgstr "Fehlgeschlagen" - -#: mod/localtime.php:12 include/event.php:13 include/bb2diaspora.php:148 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y\\, H:i" - -#: mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Zeitumrechnung" - -#: mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann." - -#: mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "UTC Zeit: %s" - -#: mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Aktuelle Zeitzone: %s" - -#: mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Umgerechnete lokale Zeit: %s" - -#: mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Bitte wähle Deine Zeitzone:" - -#: mod/oexchange.php:25 -msgid "Post successful." -msgstr "Beitrag erfolgreich veröffentlicht." - -#: mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl." - -#: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:308 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Verkleinern der Bildgröße von [%s] scheiterte." - -#: mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird." - -#: mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Bild konnte nicht verarbeitet werden" - -#: mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Datei hochladen:" - -#: mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Profil auswählen:" - -#: mod/profile_photo.php:245 -#: view/smarty3/compiled/7ed3c1755557256685d55b3a8e5cca927de090fb.file.filebrowser_plain.tpl.php:96 -#: view/smarty3/compiled/48b358673d34ee5cf1512cb114ef7f14c9f5b9d0.file.filebrowser_plain.tpl.php:96 -#: view/smarty3/compiled/be03ead94b64e658f07d62d8fbdc13a08b408e62.file.filebrowser_plain.tpl.php:103 -msgid "Upload" -msgstr "Hochladen" - -#: mod/profile_photo.php:248 -msgid "or" -msgstr "oder" - -#: mod/profile_photo.php:248 -msgid "skip this step" -msgstr "diesen Schritt überspringen" - -#: mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "wähle ein Foto aus deinen Fotoalben" - -#: mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Bild zurechtschneiden" - -#: mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann." - -#: mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Bearbeitung abgeschlossen" - -#: mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Bild erfolgreich hochgeladen." - #: mod/install.php:119 msgid "Friendica Communications Server - Setup" msgstr "Friendica-Server für soziale Netzwerke – Setup" @@ -5545,130 +3972,1155 @@ msgid "" "poller." msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten." -#: mod/p.php:9 -msgid "Not Extended" -msgstr "Nicht erweitert." - -#: mod/group.php:29 -msgid "Group created." -msgstr "Gruppe erstellt." - -#: mod/group.php:35 -msgid "Could not create group." -msgstr "Konnte die Gruppe nicht erstellen." - -#: mod/group.php:47 mod/group.php:140 -msgid "Group not found." -msgstr "Gruppe nicht gefunden." - -#: mod/group.php:60 -msgid "Group name changed." -msgstr "Gruppenname geändert." - -#: mod/group.php:87 -msgid "Save Group" -msgstr "Gruppe speichern" - -#: mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Eine Gruppe von Kontakten/Freunden anlegen." - -#: mod/group.php:94 mod/group.php:178 include/group.php:273 -msgid "Group Name: " -msgstr "Gruppenname:" - -#: mod/group.php:113 -msgid "Group removed." -msgstr "Gruppe entfernt." - -#: mod/group.php:115 -msgid "Unable to remove group." -msgstr "Konnte die Gruppe nicht entfernen." - -#: mod/group.php:177 -msgid "Group Editor" -msgstr "Gruppeneditor" - -#: mod/group.php:190 -msgid "Members" -msgstr "Mitglieder" - -#: mod/content.php:119 mod/network.php:532 -msgid "No such group" -msgstr "Es gibt keine solche Gruppe" - -#: mod/content.php:130 mod/network.php:549 -msgid "Group is empty" -msgstr "Gruppe ist leer" - -#: mod/content.php:135 mod/network.php:560 +#: mod/wallmessage.php:42 mod/wallmessage.php:112 #, php-format -msgid "Group: %s" -msgstr "Gruppe: %s" +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen." -#: mod/content.php:499 include/conversation.php:689 -msgid "View in context" -msgstr "Im Zusammenhang betrachten" +#: mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Konnte Deinen Heimatort nicht bestimmen." -#: mod/regmod.php:55 -msgid "Account approved." -msgstr "Konto freigegeben." +#: mod/wallmessage.php:86 mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Kein Empfänger." -#: mod/regmod.php:92 +#: mod/wallmessage.php:143 #, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s wurde zurückgezogen" +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern." -#: mod/regmod.php:104 -msgid "Please login." -msgstr "Bitte melde Dich an." +#: mod/help.php:31 +msgid "Help:" +msgstr "Hilfe:" -#: mod/match.php:18 +#: mod/help.php:36 include/nav.php:114 view/theme/vier/theme.php:259 +msgid "Help" +msgstr "Hilfe" + +#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 +msgid "Not Found" +msgstr "Nicht gefunden" + +#: mod/help.php:45 index.php:272 +msgid "Page not found." +msgstr "Seite nicht gefunden." + +#: mod/dfrn_poll.php:103 mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s heißt %2$s herzlich willkommen" + +#: mod/home.php:35 +#, php-format +msgid "Welcome to %s" +msgstr "Willkommen zu %s" + +#: mod/wall_attach.php:83 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt." + +#: mod/wall_attach.php:83 +msgid "Or - did you try to upload an empty file?" +msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?" + +#: mod/wall_attach.php:94 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "Die Datei ist größer als das erlaubte Limit von %s" + +#: mod/wall_attach.php:145 mod/wall_attach.php:161 +msgid "File upload failed." +msgstr "Hochladen der Datei fehlgeschlagen." + +#: mod/match.php:19 msgid "Profile Match" msgstr "Profilübereinstimmungen" -#: mod/match.php:27 +#: mod/match.php:28 msgid "No keywords to match. Please add keywords to your default profile." msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu." -#: mod/match.php:69 +#: mod/match.php:70 msgid "is interested in:" msgstr "ist interessiert an:" -#: mod/item.php:115 -msgid "Unable to locate original post." -msgstr "Konnte den Originalbeitrag nicht finden." +#: mod/share.php:38 +msgid "link" +msgstr "Link" -#: mod/item.php:347 -msgid "Empty post discarded." -msgstr "Leerer Beitrag wurde verworfen." +#: mod/community.php:23 +msgid "Not available." +msgstr "Nicht verfügbar." -#: mod/item.php:860 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden." +#: mod/community.php:32 include/nav.php:137 include/nav.php:139 +#: view/theme/diabook/theme.php:129 +msgid "Community" +msgstr "Gemeinschaft" -#: mod/item.php:989 +#: mod/community.php:62 mod/community.php:71 mod/search.php:218 +msgid "No results." +msgstr "Keine Ergebnisse." + +#: mod/settings.php:34 mod/photos.php:109 +msgid "everybody" +msgstr "jeder" + +#: mod/settings.php:47 +msgid "Additional features" +msgstr "Zusätzliche Features" + +#: mod/settings.php:53 +msgid "Display" +msgstr "Anzeige" + +#: mod/settings.php:60 mod/settings.php:839 +msgid "Social Networks" +msgstr "Soziale Netzwerke" + +#: mod/settings.php:72 include/nav.php:181 +msgid "Delegations" +msgstr "Delegationen" + +#: mod/settings.php:78 +msgid "Connected apps" +msgstr "Verbundene Programme" + +#: mod/settings.php:84 mod/uexport.php:85 +msgid "Export personal data" +msgstr "Persönliche Daten exportieren" + +#: mod/settings.php:90 +msgid "Remove account" +msgstr "Konto löschen" + +#: mod/settings.php:143 +msgid "Missing some important data!" +msgstr "Wichtige Daten fehlen!" + +#: mod/settings.php:256 +msgid "Failed to connect with email account using the settings provided." +msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich." + +#: mod/settings.php:261 +msgid "Email settings updated." +msgstr "E-Mail Einstellungen bearbeitet." + +#: mod/settings.php:276 +msgid "Features updated" +msgstr "Features aktualisiert" + +#: mod/settings.php:341 +msgid "Relocate message has been send to your contacts" +msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet." + +#: mod/settings.php:355 include/user.php:39 +msgid "Passwords do not match. Password unchanged." +msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." + +#: mod/settings.php:360 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert." + +#: mod/settings.php:368 +msgid "Wrong password." +msgstr "Falsches Passwort." + +#: mod/settings.php:379 +msgid "Password changed." +msgstr "Passwort geändert." + +#: mod/settings.php:381 +msgid "Password update failed. Please try again." +msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." + +#: mod/settings.php:448 +msgid " Please use a shorter name." +msgstr " Bitte verwende einen kürzeren Namen." + +#: mod/settings.php:450 +msgid " Name too short." +msgstr " Name ist zu kurz." + +#: mod/settings.php:459 +msgid "Wrong Password" +msgstr "Falsches Passwort" + +#: mod/settings.php:464 +msgid " Not valid email." +msgstr " Keine gültige E-Mail." + +#: mod/settings.php:470 +msgid " Cannot change to that email." +msgstr "Ändern der E-Mail nicht möglich. " + +#: mod/settings.php:526 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt." + +#: mod/settings.php:530 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte." + +#: mod/settings.php:560 +msgid "Settings updated." +msgstr "Einstellungen aktualisiert." + +#: mod/settings.php:633 mod/settings.php:659 mod/settings.php:695 +msgid "Add application" +msgstr "Programm hinzufügen" + +#: mod/settings.php:637 mod/settings.php:663 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: mod/settings.php:638 mod/settings.php:664 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: mod/settings.php:639 mod/settings.php:665 +msgid "Redirect" +msgstr "Umleiten" + +#: mod/settings.php:640 mod/settings.php:666 +msgid "Icon url" +msgstr "Icon URL" + +#: mod/settings.php:651 +msgid "You can't edit this application." +msgstr "Du kannst dieses Programm nicht bearbeiten." + +#: mod/settings.php:694 +msgid "Connected Apps" +msgstr "Verbundene Programme" + +#: mod/settings.php:698 +msgid "Client key starts with" +msgstr "Anwenderschlüssel beginnt mit" + +#: mod/settings.php:699 +msgid "No name" +msgstr "Kein Name" + +#: mod/settings.php:700 +msgid "Remove authorization" +msgstr "Autorisierung entziehen" + +#: mod/settings.php:712 +msgid "No Plugin settings configured" +msgstr "Keine Plugin-Einstellungen konfiguriert" + +#: mod/settings.php:720 +msgid "Plugin Settings" +msgstr "Plugin-Einstellungen" + +#: mod/settings.php:734 +msgid "Off" +msgstr "Aus" + +#: mod/settings.php:734 +msgid "On" +msgstr "An" + +#: mod/settings.php:742 +msgid "Additional Features" +msgstr "Zusätzliche Features" + +#: mod/settings.php:752 mod/settings.php:756 +msgid "General Social Media Settings" +msgstr "Allgemeine Einstellungen zu Sozialen Medien" + +#: mod/settings.php:762 +msgid "Disable intelligent shortening" +msgstr "Intelligentes Link kürzen ausschalten" + +#: mod/settings.php:764 +msgid "" +"Normally the system tries to find the best link to add to shortened posts. " +"If this option is enabled then every shortened post will always point to the" +" original friendica post." +msgstr "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt." + +#: mod/settings.php:770 +msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" +msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen" + +#: mod/settings.php:772 +msgid "" +"If you receive a message from an unknown OStatus user, this option decides " +"what to do. If it is checked, a new contact will be created for every " +"unknown user." +msgstr "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,." + +#: mod/settings.php:781 +msgid "Your legacy GNU Social account" +msgstr "Dein alter GNU Social Account" + +#: mod/settings.php:783 +msgid "" +"If you enter your old GNU Social/Statusnet account name here (in the format " +"user@domain.tld), your contacts will be added automatically. The field will " +"be emptied when done." +msgstr "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden." + +#: mod/settings.php:786 +msgid "Repair OStatus subscriptions" +msgstr "OStatus Abonnements reparieren" + +#: mod/settings.php:795 mod/settings.php:796 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s" + +#: mod/settings.php:795 mod/dfrn_request.php:856 +#: include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: mod/settings.php:795 mod/settings.php:796 +msgid "enabled" +msgstr "eingeschaltet" + +#: mod/settings.php:795 mod/settings.php:796 +msgid "disabled" +msgstr "ausgeschaltet" + +#: mod/settings.php:796 +msgid "GNU Social (OStatus)" +msgstr "GNU Social (OStatus)" + +#: mod/settings.php:832 +msgid "Email access is disabled on this site." +msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." + +#: mod/settings.php:844 +msgid "Email/Mailbox Setup" +msgstr "E-Mail/Postfach-Einstellungen" + +#: mod/settings.php:845 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an." + +#: mod/settings.php:846 +msgid "Last successful email check:" +msgstr "Letzter erfolgreicher E-Mail Check" + +#: mod/settings.php:848 +msgid "IMAP server name:" +msgstr "IMAP-Server-Name:" + +#: mod/settings.php:849 +msgid "IMAP port:" +msgstr "IMAP-Port:" + +#: mod/settings.php:850 +msgid "Security:" +msgstr "Sicherheit:" + +#: mod/settings.php:850 mod/settings.php:855 +msgid "None" +msgstr "Keine" + +#: mod/settings.php:851 +msgid "Email login name:" +msgstr "E-Mail-Login-Name:" + +#: mod/settings.php:852 +msgid "Email password:" +msgstr "E-Mail-Passwort:" + +#: mod/settings.php:853 +msgid "Reply-to address:" +msgstr "Reply-to Adresse:" + +#: mod/settings.php:854 +msgid "Send public posts to all email contacts:" +msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" + +#: mod/settings.php:855 +msgid "Action after import:" +msgstr "Aktion nach Import:" + +#: mod/settings.php:855 +msgid "Mark as seen" +msgstr "Als gelesen markieren" + +#: mod/settings.php:855 +msgid "Move to folder" +msgstr "In einen Ordner verschieben" + +#: mod/settings.php:856 +msgid "Move to folder:" +msgstr "In diesen Ordner verschieben:" + +#: mod/settings.php:941 +msgid "Display Settings" +msgstr "Anzeige-Einstellungen" + +#: mod/settings.php:947 mod/settings.php:965 +msgid "Display Theme:" +msgstr "Theme:" + +#: mod/settings.php:948 +msgid "Mobile Theme:" +msgstr "Mobiles Theme" + +#: mod/settings.php:949 +msgid "Update browser every xx seconds" +msgstr "Browser alle xx Sekunden aktualisieren" + +#: mod/settings.php:949 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimal 10 Sekunden, kein Maximum" + +#: mod/settings.php:950 +msgid "Number of items to display per page:" +msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " + +#: mod/settings.php:950 mod/settings.php:951 +msgid "Maximum of 100 items" +msgstr "Maximal 100 Beiträge" + +#: mod/settings.php:951 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:" + +#: mod/settings.php:952 +msgid "Don't show emoticons" +msgstr "Keine Smilies anzeigen" + +#: mod/settings.php:953 +msgid "Calendar" +msgstr "Kalender" + +#: mod/settings.php:954 +msgid "Beginning of week:" +msgstr "Wochenbeginn:" + +#: mod/settings.php:955 +msgid "Don't show notices" +msgstr "Info-Popups nicht anzeigen" + +#: mod/settings.php:956 +msgid "Infinite scroll" +msgstr "Endloses Scrollen" + +#: mod/settings.php:957 +msgid "Automatic updates only at the top of the network page" +msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist." + +#: mod/settings.php:959 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 "Themeneinstellungen" + +#: mod/settings.php:1035 +msgid "User Types" +msgstr "Nutzer Art" + +#: mod/settings.php:1036 +msgid "Community Types" +msgstr "Gemeinschafts Art" + +#: mod/settings.php:1037 +msgid "Normal Account Page" +msgstr "Normales Konto" + +#: mod/settings.php:1038 +msgid "This account is a normal personal profile" +msgstr "Dieses Konto ist ein normales persönliches Profil" + +#: mod/settings.php:1041 +msgid "Soapbox Page" +msgstr "Marktschreier-Konto" + +#: mod/settings.php:1042 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert" + +#: mod/settings.php:1045 +msgid "Community Forum/Celebrity Account" +msgstr "Forum/Promi-Konto" + +#: mod/settings.php:1046 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert" + +#: mod/settings.php:1049 +msgid "Automatic Friend Page" +msgstr "Automatische Freunde Seite" + +#: mod/settings.php:1050 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert" + +#: mod/settings.php:1053 +msgid "Private Forum [Experimental]" +msgstr "Privates Forum [Versuchsstadium]" + +#: mod/settings.php:1054 +msgid "Private forum - approved members only" +msgstr "Privates Forum, nur für Mitglieder" + +#: mod/settings.php:1066 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1066 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID." + +#: mod/settings.php:1076 +msgid "Publish your default profile in your local site directory?" +msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?" + +#: mod/settings.php:1082 +msgid "Publish your default profile in the global social directory?" +msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?" + +#: mod/settings.php:1090 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?" + +#: mod/settings.php:1094 include/acl_selectors.php:330 +msgid "Hide your profile details from unknown viewers?" +msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" + +#: mod/settings.php:1094 +msgid "" +"If enabled, posting public messages to Diaspora and other networks isn't " +"possible." +msgstr "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich" + +#: mod/settings.php:1099 +msgid "Allow friends to post to your profile page?" +msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?" + +#: mod/settings.php:1105 +msgid "Allow friends to tag your posts?" +msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?" + +#: mod/settings.php:1111 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" + +#: mod/settings.php:1117 +msgid "Permit unknown people to send you private mail?" +msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?" + +#: mod/settings.php:1125 +msgid "Profile is not published." +msgstr "Profil ist nicht veröffentlicht." + +#: mod/settings.php:1133 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "Die Adresse deines Profils lautet '%s' oder '%s'." + +#: mod/settings.php:1140 +msgid "Automatically expire posts after this many days:" +msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" + +#: mod/settings.php:1140 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht." + +#: mod/settings.php:1141 +msgid "Advanced expiration settings" +msgstr "Erweiterte Verfallseinstellungen" + +#: mod/settings.php:1142 +msgid "Advanced Expiration" +msgstr "Erweitertes Verfallen" + +#: mod/settings.php:1143 +msgid "Expire posts:" +msgstr "Beiträge verfallen lassen:" + +#: mod/settings.php:1144 +msgid "Expire personal notes:" +msgstr "Persönliche Notizen verfallen lassen:" + +#: mod/settings.php:1145 +msgid "Expire starred posts:" +msgstr "Markierte Beiträge verfallen lassen:" + +#: mod/settings.php:1146 +msgid "Expire photos:" +msgstr "Fotos verfallen lassen:" + +#: mod/settings.php:1147 +msgid "Only expire posts by others:" +msgstr "Nur Beiträge anderer verfallen:" + +#: mod/settings.php:1173 +msgid "Account Settings" +msgstr "Kontoeinstellungen" + +#: mod/settings.php:1181 +msgid "Password Settings" +msgstr "Passwort-Einstellungen" + +#: mod/settings.php:1182 mod/register.php:271 +msgid "New Password:" +msgstr "Neues Passwort:" + +#: mod/settings.php:1183 mod/register.php:272 +msgid "Confirm:" +msgstr "Bestätigen:" + +#: mod/settings.php:1183 +msgid "Leave password fields blank unless changing" +msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern" + +#: mod/settings.php:1184 +msgid "Current Password:" +msgstr "Aktuelles Passwort:" + +#: mod/settings.php:1184 mod/settings.php:1185 +msgid "Your current password to confirm the changes" +msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" + +#: mod/settings.php:1185 +msgid "Password:" +msgstr "Passwort:" + +#: mod/settings.php:1189 +msgid "Basic Settings" +msgstr "Grundeinstellungen" + +#: mod/settings.php:1190 include/identity.php:539 +msgid "Full Name:" +msgstr "Kompletter Name:" + +#: mod/settings.php:1191 +msgid "Email Address:" +msgstr "E-Mail-Adresse:" + +#: mod/settings.php:1192 +msgid "Your Timezone:" +msgstr "Deine Zeitzone:" + +#: mod/settings.php:1193 +msgid "Default Post Location:" +msgstr "Standardstandort:" + +#: mod/settings.php:1194 +msgid "Use Browser Location:" +msgstr "Standort des Browsers verwenden:" + +#: mod/settings.php:1197 +msgid "Security and Privacy Settings" +msgstr "Sicherheits- und Privatsphäre-Einstellungen" + +#: mod/settings.php:1199 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:" + +#: mod/settings.php:1199 mod/settings.php:1229 +msgid "(to prevent spam abuse)" +msgstr "(um SPAM zu vermeiden)" + +#: mod/settings.php:1200 +msgid "Default Post Permissions" +msgstr "Standard-Zugriffsrechte für Beiträge" + +#: mod/settings.php:1201 +msgid "(click to open/close)" +msgstr "(klicke zum öffnen/schließen)" + +#: mod/settings.php:1210 mod/photos.php:1191 mod/photos.php:1576 +msgid "Show to Groups" +msgstr "Zeige den Gruppen" + +#: mod/settings.php:1211 mod/photos.php:1192 mod/photos.php:1577 +msgid "Show to Contacts" +msgstr "Zeige den Kontakten" + +#: mod/settings.php:1212 +msgid "Default Private Post" +msgstr "Privater Standardbeitrag" + +#: mod/settings.php:1213 +msgid "Default Public Post" +msgstr "Öffentlicher Standardbeitrag" + +#: mod/settings.php:1217 +msgid "Default Permissions for New Posts" +msgstr "Standardberechtigungen für neue Beiträge" + +#: mod/settings.php:1229 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" + +#: mod/settings.php:1232 +msgid "Notification Settings" +msgstr "Benachrichtigungseinstellungen" + +#: mod/settings.php:1233 +msgid "By default post a status message when:" +msgstr "Standardmäßig eine Statusnachricht posten, wenn:" + +#: mod/settings.php:1234 +msgid "accepting a friend request" +msgstr "– Du eine Kontaktanfrage akzeptierst" + +#: mod/settings.php:1235 +msgid "joining a forum/community" +msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst" + +#: mod/settings.php:1236 +msgid "making an interesting profile change" +msgstr "– Du eine interessante Änderung an Deinem Profil durchführst" + +#: mod/settings.php:1237 +msgid "Send a notification email when:" +msgstr "Benachrichtigungs-E-Mail senden wenn:" + +#: mod/settings.php:1238 +msgid "You receive an introduction" +msgstr "– Du eine Kontaktanfrage erhältst" + +#: mod/settings.php:1239 +msgid "Your introductions are confirmed" +msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" + +#: mod/settings.php:1240 +msgid "Someone writes on your profile wall" +msgstr "– jemand etwas auf Deine Pinnwand schreibt" + +#: mod/settings.php:1241 +msgid "Someone writes a followup comment" +msgstr "– jemand auch einen Kommentar verfasst" + +#: mod/settings.php:1242 +msgid "You receive a private message" +msgstr "– Du eine private Nachricht erhältst" + +#: mod/settings.php:1243 +msgid "You receive a friend suggestion" +msgstr "– Du eine Empfehlung erhältst" + +#: mod/settings.php:1244 +msgid "You are tagged in a post" +msgstr "– Du in einem Beitrag erwähnt wirst" + +#: mod/settings.php:1245 +msgid "You are poked/prodded/etc. in a post" +msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst" + +#: mod/settings.php:1247 +msgid "Activate desktop notifications" +msgstr "Desktop Benachrichtigungen einschalten" + +#: mod/settings.php:1247 +msgid "Show desktop popup on new notifications" +msgstr "Desktop Benachrichtigungen einschalten" + +#: mod/settings.php:1249 +msgid "Text-only notification emails" +msgstr "Benachrichtigungs E-Mail als Rein-Text." + +#: mod/settings.php:1251 +msgid "Send text only notification emails, without the html part" +msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil" + +#: mod/settings.php:1253 +msgid "Advanced Account/Page Type Settings" +msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" + +#: mod/settings.php:1254 +msgid "Change the behaviour of this account for special situations" +msgstr "Verhalten dieses Kontos in bestimmten Situationen:" + +#: mod/settings.php:1257 +msgid "Relocate" +msgstr "Umziehen" + +#: mod/settings.php:1258 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button." + +#: mod/settings.php:1259 +msgid "Resend relocate message to contacts" +msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" + +#: mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." + +#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung." + +#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden." + +#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 +msgid "Warning: profile location has no profile photo." +msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse." + +#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden" +msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden" + +#: mod/dfrn_request.php:172 +msgid "Introduction complete." +msgstr "Kontaktanfrage abgeschlossen." + +#: mod/dfrn_request.php:214 +msgid "Unrecoverable protocol error." +msgstr "Nicht behebbarer Protokollfehler." + +#: mod/dfrn_request.php:242 +msgid "Profile unavailable." +msgstr "Profil nicht verfügbar." + +#: mod/dfrn_request.php:267 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten." + +#: mod/dfrn_request.php:268 +msgid "Spam protection measures have been invoked." +msgstr "Maßnahmen zum Spamschutz wurden ergriffen." + +#: mod/dfrn_request.php:269 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen." + +#: mod/dfrn_request.php:331 +msgid "Invalid locator" +msgstr "Ungültiger Locator" + +#: mod/dfrn_request.php:340 +msgid "Invalid email address." +msgstr "Ungültige E-Mail-Adresse." + +#: mod/dfrn_request.php:367 +msgid "This account has not been configured for email. Request failed." +msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen." + +#: mod/dfrn_request.php:463 +msgid "Unable to resolve your name at the provided location." +msgstr "Konnte Deinen Namen an der angegebenen Stelle nicht finden." + +#: mod/dfrn_request.php:476 +msgid "You have already introduced yourself here." +msgstr "Du hast Dich hier bereits vorgestellt." + +#: mod/dfrn_request.php:480 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Es scheint so, als ob Du bereits mit %s befreundet bist." + +#: mod/dfrn_request.php:501 +msgid "Invalid profile URL." +msgstr "Ungültige Profil-URL." + +#: mod/dfrn_request.php:507 include/follow.php:72 +msgid "Disallowed profile URL." +msgstr "Nicht erlaubte Profil-URL." + +#: mod/dfrn_request.php:597 +msgid "Your introduction has been sent." +msgstr "Deine Kontaktanfrage wurde gesendet." + +#: mod/dfrn_request.php:650 +msgid "Please login to confirm introduction." +msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen." + +#: mod/dfrn_request.php:660 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an." + +#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 +msgid "Confirm" +msgstr "Bestätigen" + +#: mod/dfrn_request.php:686 +msgid "Hide this contact" +msgstr "Verberge diesen Kontakt" + +#: mod/dfrn_request.php:689 +#, php-format +msgid "Welcome home %s." +msgstr "Willkommen zurück %s." + +#: mod/dfrn_request.php:690 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Bitte bestätige Deine Kontaktanfrage bei %s." + +#: mod/dfrn_request.php:819 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:" + +#: mod/dfrn_request.php:840 #, php-format msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica." +"If you are not yet a member of the free social web, follow this link to find a public Friendica site and " +"join us today." +msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten." -#: mod/item.php:991 -#, php-format -msgid "You may visit them online at %s" -msgstr "Du kannst sie online unter %s besuchen" +#: mod/dfrn_request.php:845 +msgid "Friend/Connection Request" +msgstr "Freundschafts-/Kontaktanfrage" -#: mod/item.php:992 +#: mod/dfrn_request.php:846 msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest." +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" -#: mod/item.php:996 +#: 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 Social Web" + +#: mod/dfrn_request.php:857 #, php-format -msgid "%s posted an update." -msgstr "%s hat ein Update veröffentlicht." +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste." + +#: mod/register.php:92 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." + +#: mod/register.php: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 "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern." + +#: mod/register.php:107 +msgid "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." + +#: mod/register.php:150 +msgid "Your registration is pending approval by the site owner." +msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." + +#: 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 "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal." + +#: mod/register.php:216 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst." + +#: mod/register.php:217 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus." + +#: mod/register.php:218 +msgid "Your OpenID (optional): " +msgstr "Deine OpenID (optional): " + +#: mod/register.php:232 +msgid "Include your profile in member directory?" +msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?" + +#: mod/register.php:256 +msgid "Membership on this site is by invitation only." +msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." + +#: mod/register.php:257 +msgid "Your invitation ID: " +msgstr "ID Deiner Einladung: " + +#: mod/register.php:268 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Vollständiger Name (z.B. Max Mustermann): " + +#: mod/register.php:269 +msgid "Your Email Address: " +msgstr "Deine E-Mail-Adresse: " + +#: mod/register.php:271 +msgid "Leave empty for an auto generated password." +msgstr "Leer lassen um das Passwort automatisch zu generieren." + +#: 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 "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@$sitename' sein." + +#: mod/register.php:274 +msgid "Choose a nickname: " +msgstr "Spitznamen wählen: " + +#: mod/register.php:277 boot.php:1249 include/nav.php:109 +msgid "Register" +msgstr "Registrieren" + +#: 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 "Importiere Dein Profil auf diese Friendica Instanz" + +#: mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "System zur Wartung abgeschaltet" + +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." +msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet." + +#: mod/search.php:115 +msgid "Too Many Requests" +msgstr "Zu viele Abfragen" + +#: mod/search.php:116 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet." + +#: mod/search.php:126 include/text.php:996 include/nav.php:119 +msgid "Search" +msgstr "Suche" + +#: mod/search.php:224 +#, php-format +msgid "Items tagged with: %s" +msgstr "Beiträge markiert mit: %s" + +#: mod/search.php:226 +#, php-format +msgid "Search results for: %s" +msgstr "Suchergebnisse für: %s" + +#: mod/directory.php:53 view/theme/diabook/theme.php:525 +#: view/theme/vier/theme.php:177 +msgid "Global Directory" +msgstr "Weltweites Verzeichnis" + +#: mod/directory.php:61 +msgid "Find on this site" +msgstr "Auf diesem Server suchen" + +#: mod/directory.php:64 +msgid "Site Directory" +msgstr "Verzeichnis" + +#: mod/directory.php:129 mod/profiles.php:747 +msgid "Age: " +msgstr "Alter: " + +#: mod/directory.php:132 +msgid "Gender: " +msgstr "Geschlecht:" + +#: mod/directory.php:156 include/identity.php:273 include/identity.php:561 +msgid "Status:" +msgstr "Status:" + +#: mod/directory.php:158 include/identity.php:275 include/identity.php:572 +msgid "Homepage:" +msgstr "Homepage:" + +#: mod/directory.php:205 +msgid "No entries (some entries may be hidden)." +msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." + +#: mod/delegate.php:101 +msgid "No potential page delegates located." +msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." + +#: mod/delegate.php:130 include/nav.php:181 +msgid "Delegate Page Management" +msgstr "Delegiere das Management für die Seite" + +#: mod/delegate.php:132 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!" + +#: mod/delegate.php:133 +msgid "Existing Page Managers" +msgstr "Vorhandene Seitenmanager" + +#: mod/delegate.php:135 +msgid "Existing Page Delegates" +msgstr "Vorhandene Bevollmächtigte für die Seite" + +#: mod/delegate.php:137 +msgid "Potential Delegates" +msgstr "Potentielle Bevollmächtigte" + +#: mod/delegate.php:140 +msgid "Add" +msgstr "Hinzufügen" + +#: mod/delegate.php:141 +msgid "No entries." +msgstr "Keine Einträge." + +#: mod/common.php:45 +msgid "Common Friends" +msgstr "Gemeinsame Freunde" + +#: mod/common.php:82 +msgid "No contacts in common." +msgstr "Keine gemeinsamen Kontakte." + +#: mod/uexport.php:77 +msgid "Export account" +msgstr "Account exportieren" + +#: mod/uexport.php:77 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen." + +#: mod/uexport.php:78 +msgid "Export all" +msgstr "Alles exportieren" + +#: mod/uexport.php:78 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)." #: mod/mood.php:62 include/conversation.php:226 #, php-format @@ -5683,689 +5135,999 @@ msgstr "Stimmung" msgid "Set your current mood and tell your friends" msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden" -#: mod/network.php:143 -#, php-format -msgid "Search Results For: %s" -msgstr "Suchergebnisse für: %s" +#: mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Möchtest Du wirklich diese Empfehlung löschen?" -#: mod/network.php:197 include/group.php:277 -msgid "add" -msgstr "hinzufügen" +#: mod/suggest.php:69 include/contact_widgets.php:35 +#: view/theme/diabook/theme.php:527 view/theme/vier/theme.php:179 +msgid "Friend Suggestions" +msgstr "Kontaktvorschläge" -#: mod/network.php:358 -msgid "Commented Order" -msgstr "Neueste Kommentare" - -#: mod/network.php:361 -msgid "Sort by Comment Date" -msgstr "Nach Kommentardatum sortieren" - -#: mod/network.php:365 -msgid "Posted Order" -msgstr "Neueste Beiträge" - -#: mod/network.php:368 -msgid "Sort by Post Date" -msgstr "Nach Beitragsdatum sortieren" - -#: mod/network.php:378 -msgid "Posts that mention or involve you" -msgstr "Beiträge, in denen es um Dich geht" - -#: mod/network.php:385 -msgid "New" -msgstr "Neue" - -#: mod/network.php:388 -msgid "Activity Stream - by date" -msgstr "Aktivitäten-Stream - nach Datum" - -#: mod/network.php:395 -msgid "Shared Links" -msgstr "Geteilte Links" - -#: mod/network.php:398 -msgid "Interesting Links" -msgstr "Interessante Links" - -#: mod/network.php:405 -msgid "Starred" -msgstr "Markierte" - -#: mod/network.php:408 -msgid "Favourite Posts" -msgstr "Favorisierte Beiträge" - -#: 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] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk." -msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken." - -#: mod/network.php:469 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten." - -#: mod/network.php: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 "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen." - -#: mod/network.php:587 -msgid "Invalid contact." -msgstr "Ungültiger Kontakt." - -#: mod/crepair.php:107 -msgid "Contact settings applied." -msgstr "Einstellungen zum Kontakt angewandt." - -#: mod/crepair.php:109 -msgid "Contact update failed." -msgstr "Konnte den Kontakt nicht aktualisieren." - -#: mod/crepair.php:140 -msgid "Repair Contact Settings" -msgstr "Kontakteinstellungen reparieren" - -#: mod/crepair.php:142 +#: mod/suggest.php:76 msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal." -#: mod/crepair.php:143 +#: mod/suggest.php:94 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verbergen" + +#: mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profil gelöscht." + +#: mod/profiles.php:55 mod/profiles.php:89 +msgid "Profile-" +msgstr "Profil-" + +#: mod/profiles.php:74 mod/profiles.php:117 +msgid "New profile created." +msgstr "Neues Profil angelegt." + +#: mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Profil nicht zum Duplizieren verfügbar." + +#: mod/profiles.php:189 +msgid "Profile Name is required." +msgstr "Profilname ist erforderlich." + +#: mod/profiles.php:336 +msgid "Marital Status" +msgstr "Familienstand" + +#: mod/profiles.php:340 +msgid "Romantic Partner" +msgstr "Romanze" + +#: mod/profiles.php:344 +msgid "Likes" +msgstr "Likes" + +#: mod/profiles.php:348 +msgid "Dislikes" +msgstr "Dislikes" + +#: mod/profiles.php:352 +msgid "Work/Employment" +msgstr "Arbeit / Beschäftigung" + +#: mod/profiles.php:355 +msgid "Religion" +msgstr "Religion" + +#: mod/profiles.php:359 +msgid "Political Views" +msgstr "Politische Ansichten" + +#: mod/profiles.php:363 +msgid "Gender" +msgstr "Geschlecht" + +#: mod/profiles.php:367 +msgid "Sexual Preference" +msgstr "Sexuelle Vorlieben" + +#: mod/profiles.php:371 +msgid "Homepage" +msgstr "Webseite" + +#: mod/profiles.php:375 mod/profiles.php:695 +msgid "Interests" +msgstr "Interessen" + +#: mod/profiles.php:379 +msgid "Address" +msgstr "Adresse" + +#: mod/profiles.php:386 mod/profiles.php:691 +msgid "Location" +msgstr "Wohnort" + +#: mod/profiles.php:469 +msgid "Profile updated." +msgstr "Profil aktualisiert." + +#: mod/profiles.php:565 +msgid " and " +msgstr " und " + +#: mod/profiles.php:573 +msgid "public profile" +msgstr "öffentliches Profil" + +#: mod/profiles.php:576 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s hat %2$s geändert auf “%3$s”" + +#: mod/profiles.php:577 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " – %1$ss %2$s besuchen" + +#: mod/profiles.php:580 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s." + +#: mod/profiles.php:655 +msgid "Hide contacts and friends:" +msgstr "Kontakte und Freunde verbergen" + +#: mod/profiles.php:660 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?" + +#: mod/profiles.php:682 +msgid "Edit Profile Details" +msgstr "Profil bearbeiten" + +#: mod/profiles.php:684 +msgid "Change Profile Photo" +msgstr "Profilbild ändern" + +#: mod/profiles.php:685 +msgid "View this profile" +msgstr "Dieses Profil anzeigen" + +#: mod/profiles.php:686 +msgid "Create a new profile using these settings" +msgstr "Neues Profil anlegen und diese Einstellungen verwenden" + +#: mod/profiles.php:687 +msgid "Clone this profile" +msgstr "Dieses Profil duplizieren" + +#: mod/profiles.php:688 +msgid "Delete this profile" +msgstr "Dieses Profil löschen" + +#: mod/profiles.php:689 +msgid "Basic information" +msgstr "Grundinformationen" + +#: mod/profiles.php:690 +msgid "Profile picture" +msgstr "Profilbild" + +#: mod/profiles.php:692 +msgid "Preferences" +msgstr "Vorlieben" + +#: mod/profiles.php:693 +msgid "Status information" +msgstr "Status Informationen" + +#: mod/profiles.php:694 +msgid "Additional information" +msgstr "Zusätzliche Informationen" + +#: mod/profiles.php:697 +msgid "Profile Name:" +msgstr "Profilname:" + +#: mod/profiles.php:698 +msgid "Your Full Name:" +msgstr "Dein kompletter Name:" + +#: mod/profiles.php:699 +msgid "Title/Description:" +msgstr "Titel/Beschreibung:" + +#: mod/profiles.php:700 +msgid "Your Gender:" +msgstr "Dein Geschlecht:" + +#: mod/profiles.php:701 +msgid "Birthday :" +msgstr "Geburtstag :" + +#: mod/profiles.php:702 +msgid "Street Address:" +msgstr "Adresse:" + +#: mod/profiles.php:703 +msgid "Locality/City:" +msgstr "Wohnort:" + +#: mod/profiles.php:704 +msgid "Postal/Zip Code:" +msgstr "Postleitzahl:" + +#: mod/profiles.php:705 +msgid "Country:" +msgstr "Land:" + +#: mod/profiles.php:706 +msgid "Region/State:" +msgstr "Region/Bundesstaat:" + +#: mod/profiles.php:707 +msgid " Marital Status:" +msgstr " Beziehungsstatus:" + +#: mod/profiles.php:708 +msgid "Who: (if applicable)" +msgstr "Wer: (falls anwendbar)" + +#: mod/profiles.php:709 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" + +#: mod/profiles.php:710 +msgid "Since [date]:" +msgstr "Seit [Datum]:" + +#: mod/profiles.php:711 include/identity.php:570 +msgid "Sexual Preference:" +msgstr "Sexuelle Vorlieben:" + +#: mod/profiles.php:712 +msgid "Homepage URL:" +msgstr "Adresse der Homepage:" + +#: mod/profiles.php:713 include/identity.php:574 +msgid "Hometown:" +msgstr "Heimatort:" + +#: mod/profiles.php:714 include/identity.php:578 +msgid "Political Views:" +msgstr "Politische Ansichten:" + +#: mod/profiles.php:715 +msgid "Religious Views:" +msgstr "Religiöse Ansichten:" + +#: mod/profiles.php:716 +msgid "Public Keywords:" +msgstr "Öffentliche Schlüsselwörter:" + +#: mod/profiles.php:717 +msgid "Private Keywords:" +msgstr "Private Schlüsselwörter:" + +#: mod/profiles.php:718 include/identity.php:586 +msgid "Likes:" +msgstr "Likes:" + +#: mod/profiles.php:719 include/identity.php:588 +msgid "Dislikes:" +msgstr "Dislikes:" + +#: mod/profiles.php:720 +msgid "Example: fishing photography software" +msgstr "Beispiel: Fischen Fotografie Software" + +#: mod/profiles.php:721 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)" + +#: mod/profiles.php:722 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)" + +#: mod/profiles.php:723 +msgid "Tell us about yourself..." +msgstr "Erzähle uns ein bisschen von Dir …" + +#: mod/profiles.php:724 +msgid "Hobbies/Interests" +msgstr "Hobbies/Interessen" + +#: mod/profiles.php:725 +msgid "Contact information and Social Networks" +msgstr "Kontaktinformationen und Soziale Netzwerke" + +#: mod/profiles.php:726 +msgid "Musical interests" +msgstr "Musikalische Interessen" + +#: mod/profiles.php:727 +msgid "Books, literature" +msgstr "Bücher, Literatur" + +#: mod/profiles.php:728 +msgid "Television" +msgstr "Fernsehen" + +#: mod/profiles.php:729 +msgid "Film/dance/culture/entertainment" +msgstr "Filme/Tänze/Kultur/Unterhaltung" + +#: mod/profiles.php:730 +msgid "Love/romance" +msgstr "Liebe/Romantik" + +#: mod/profiles.php:731 +msgid "Work/employment" +msgstr "Arbeit/Anstellung" + +#: mod/profiles.php:732 +msgid "School/education" +msgstr "Schule/Ausbildung" + +#: mod/profiles.php:737 msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst." +"This is your public profile.
    It may " +"be visible to anybody using the internet." +msgstr "Dies ist Dein öffentliches Profil.
    Es könnte für jeden Nutzer des Internets sichtbar sein." -#: mod/crepair.php:149 -msgid "Return to contact editor" -msgstr "Zurück zum Kontakteditor" +#: mod/profiles.php:800 +msgid "Edit/Manage Profiles" +msgstr "Bearbeite/Verwalte Profile" -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "No mirroring" -msgstr "Kein Spiegeln" +#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257 +msgid "Change profile photo" +msgstr "Profilbild ändern" -#: mod/crepair.php:160 -msgid "Mirror as forwarded posting" -msgstr "Spiegeln als weitergeleitete Beiträge" +#: mod/profiles.php:802 include/identity.php:232 +msgid "Create New Profile" +msgstr "Neues Profil anlegen" -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "Mirror as my own posting" -msgstr "Spiegeln als meine eigenen Beiträge" +#: mod/profiles.php:813 include/identity.php:242 +msgid "Profile Image" +msgstr "Profilbild" -#: mod/crepair.php:169 -msgid "Refetch contact data" -msgstr "Kontaktdaten neu laden" +#: mod/profiles.php:815 include/identity.php:245 +msgid "visible to everybody" +msgstr "sichtbar für jeden" -#: mod/crepair.php:171 -msgid "Account Nickname" -msgstr "Konto-Spitzname" +#: mod/profiles.php:816 include/identity.php:246 +msgid "Edit visibility" +msgstr "Sichtbarkeit bearbeiten" -#: mod/crepair.php:172 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - überschreibt Name/Spitzname" +#: mod/editpost.php:17 mod/editpost.php:27 +msgid "Item not found" +msgstr "Beitrag nicht gefunden" -#: mod/crepair.php:173 -msgid "Account URL" -msgstr "Konto-URL" +#: mod/editpost.php:40 +msgid "Edit post" +msgstr "Beitrag bearbeiten" -#: mod/crepair.php:174 -msgid "Friend Request URL" -msgstr "URL für Freundschaftsanfragen" +#: mod/editpost.php:111 include/conversation.php:1079 +msgid "upload photo" +msgstr "Bild hochladen" -#: mod/crepair.php:175 -msgid "Friend Confirm URL" -msgstr "URL für Bestätigungen von Freundschaftsanfragen" +#: mod/editpost.php:112 include/conversation.php:1080 +msgid "Attach file" +msgstr "Datei anhängen" -#: mod/crepair.php:176 -msgid "Notification Endpoint URL" -msgstr "URL-Endpunkt für Benachrichtigungen" +#: mod/editpost.php:113 include/conversation.php:1081 +msgid "attach file" +msgstr "Datei anhängen" -#: mod/crepair.php:177 -msgid "Poll/Feed URL" -msgstr "Pull/Feed-URL" +#: mod/editpost.php:115 include/conversation.php:1083 +msgid "web link" +msgstr "Weblink" -#: mod/crepair.php:178 -msgid "New photo from this URL" -msgstr "Neues Foto von dieser URL" +#: mod/editpost.php:116 include/conversation.php:1084 +msgid "Insert video link" +msgstr "Video-Adresse einfügen" -#: mod/crepair.php:179 -msgid "Remote Self" -msgstr "Entfernte Konten" +#: mod/editpost.php:117 include/conversation.php:1085 +msgid "video link" +msgstr "Video-Link" -#: mod/crepair.php:181 -msgid "Mirror postings from this contact" -msgstr "Spiegle Beiträge dieses Kontakts" +#: mod/editpost.php:118 include/conversation.php:1086 +msgid "Insert audio link" +msgstr "Audio-Adresse einfügen" -#: mod/crepair.php:181 +#: mod/editpost.php:119 include/conversation.php:1087 +msgid "audio link" +msgstr "Audio-Link" + +#: mod/editpost.php:120 include/conversation.php:1088 +msgid "Set your location" +msgstr "Deinen Standort festlegen" + +#: mod/editpost.php:121 include/conversation.php:1089 +msgid "set location" +msgstr "Ort setzen" + +#: mod/editpost.php:122 include/conversation.php:1090 +msgid "Clear browser location" +msgstr "Browser-Standort leeren" + +#: mod/editpost.php:123 include/conversation.php:1091 +msgid "clear location" +msgstr "Ort löschen" + +#: mod/editpost.php:125 include/conversation.php:1097 +msgid "Permission settings" +msgstr "Berechtigungseinstellungen" + +#: mod/editpost.php:133 include/acl_selectors.php:343 +msgid "CC: email addresses" +msgstr "Cc: E-Mail-Addressen" + +#: mod/editpost.php:134 include/conversation.php:1106 +msgid "Public post" +msgstr "Öffentlicher Beitrag" + +#: mod/editpost.php:137 include/conversation.php:1093 +msgid "Set title" +msgstr "Titel setzen" + +#: mod/editpost.php:139 include/conversation.php:1095 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (kommasepariert)" + +#: mod/editpost.php:140 include/acl_selectors.php:344 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Z.B.: bob@example.com, mary@example.com" + +#: mod/friendica.php:59 +msgid "This is Friendica, version" +msgstr "Dies ist Friendica, Version" + +#: mod/friendica.php:60 +msgid "running at web location" +msgstr "die unter folgender Webadresse zu finden ist" + +#: mod/friendica.php:62 msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden." +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren." -#: view/theme/diabook/theme.php:123 include/nav.php:76 include/nav.php:156 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" +#: mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" -#: view/theme/diabook/theme.php:124 include/nav.php:77 -msgid "Your profile page" -msgstr "Deine Profilseite" +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "dem Bugtracker auf github" -#: view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "Deine Kontakte" +#: mod/friendica.php:65 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com" -#: view/theme/diabook/theme.php:126 include/nav.php:78 -msgid "Your photos" -msgstr "Deine Fotos" +#: mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Erweiterungen/Apps" -#: view/theme/diabook/theme.php:127 include/nav.php:80 -msgid "Your events" -msgstr "Deine Ereignisse" +#: mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "Keine Plugins/Erweiterungen/Apps installiert" -#: view/theme/diabook/theme.php:128 include/nav.php:81 -msgid "Personal notes" +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Verbindung der Applikation autorisieren" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Bitte melde Dich an um fortzufahren." + +#: mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?" + +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." + +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "Sichtbar für:" + +#: mod/notes.php:46 include/identity.php:677 +msgid "Personal Notes" msgstr "Persönliche Notizen" -#: view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Deine privaten Fotos" +#: 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\\, H:i" -#: view/theme/diabook/theme.php:130 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:624 view/theme/diabook/config.php:158 -msgid "Community Pages" -msgstr "Foren" +#: mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Zeitumrechnung" -#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626 -#: view/theme/diabook/config.php:160 -msgid "Community Profiles" -msgstr "Community-Profile" +#: mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann." -#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630 -#: view/theme/diabook/config.php:164 -msgid "Last users" -msgstr "Letzte Nutzer" +#: mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "UTC Zeit: %s" -#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632 -#: view/theme/diabook/config.php:166 -msgid "Last likes" -msgstr "Zuletzt gemocht" +#: mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Aktuelle Zeitzone: %s" -#: view/theme/diabook/theme.php:463 include/text.php:2032 -#: include/conversation.php:118 include/conversation.php:245 -msgid "event" -msgstr "Veranstaltung" +#: mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Umgerechnete lokale Zeit: %s" -#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631 -#: view/theme/diabook/config.php:165 -msgid "Last photos" -msgstr "Letzte Fotos" +#: mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Bitte wähle Deine Zeitzone:" -#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629 -#: view/theme/diabook/config.php:163 -msgid "Find Friends" -msgstr "Freunde finden" +#: mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Anstupsen" -#: view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Lokales Verzeichnis" +#: mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "Stupse Leute an oder mache anderes mit ihnen" -#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "Ähnliche Interessen" +#: mod/poke.php:194 +msgid "Recipient" +msgstr "Empfänger" -#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38 -msgid "Invite Friends" -msgstr "Freunde einladen" +#: mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Was willst Du mit dem Empfänger machen:" -#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625 -#: view/theme/diabook/config.php:159 -msgid "Earth Layers" -msgstr "Earth Layers" +#: mod/poke.php:198 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" -#: view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Zoomfaktor der Earth Layer" +#: mod/repair_ostatus.php:14 +msgid "Resubsribing to OStatus contacts" +msgstr "Erneuern der OStatus Abonements" -#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156 -msgid "Set longitude (X) for Earth Layers" -msgstr "Longitude (X) der Earth Layer" +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "Fehler" -#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Latitude (Y) der Earth Layer" +#: mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Limit für Einladungen erreicht." -#: view/theme/diabook/theme.php:599 view/theme/diabook/theme.php:627 -#: view/theme/diabook/config.php:161 -msgid "Help or @NewHere ?" -msgstr "Hilfe oder @NewHere" +#: mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: Keine gültige Email Adresse." -#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628 -#: view/theme/diabook/config.php:162 -msgid "Connect Services" -msgstr "Verbinde Dienste" +#: mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein" -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -#: include/acl_selectors.php:337 -msgid "don't show" -msgstr "nicht zeigen" +#: mod/invite.php:84 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite." -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -#: include/acl_selectors.php:336 -msgid "show" -msgstr "zeigen" +#: mod/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Zustellung der Nachricht fehlgeschlagen." -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Rahmen auf der rechten Seite anzeigen/verbergen" +#: mod/invite.php:93 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d Nachricht gesendet." +msgstr[1] "%d Nachrichten gesendet." -#: view/theme/diabook/config.php:151 view/theme/dispy/config.php:73 -#: view/theme/cleanzero/config.php:84 -msgid "Set font-size for posts and comments" -msgstr "Schriftgröße für Beiträge und Kommentare festlegen" +#: mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Du hast keine weiteren Einladungen" -#: view/theme/diabook/config.php:152 view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "Liniengröße für Beiträge und Kommantare festlegen" - -#: view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Auflösung für die Mittelspalte setzen" - -#: view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Wähle Farbschema" - -#: view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Zoomfaktor der Earth Layer" - -#: view/theme/vier/config.php:59 -msgid "Set style" -msgstr "Stil auswählen" - -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Farbschema wählen" - -#: view/theme/duepuntozero/config.php:44 include/text.php:1768 -#: include/user.php:255 -msgid "default" -msgstr "Standard" - -#: view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "greenzero" - -#: view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "purplezero" - -#: view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "easterbunny" - -#: view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "darkzero" - -#: view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "slackr" - -#: view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "Variationen" - -#: view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Ausrichtung" - -#: view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Links" - -#: view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Mitte" - -#: view/theme/quattro/config.php:68 view/theme/cleanzero/config.php:86 -msgid "Color scheme" -msgstr "Farbschema" - -#: view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Schriftgröße in Beiträgen" - -#: view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Schriftgröße in Eingabefeldern" - -#: view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)" - -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Theme Breite festlegen" - -#: view/smarty3/compiled/de93dd804a3e4e0c280f6a6ccb3ab9b0eaebd65d.file.blob.tpl.php:106 -msgid "Click here to download" -msgstr "Zum Download hier klicken" - -#: view/smarty3/compiled/e3e71db17e5b19827a9ae25070c4171ecb4fad17.file.project.tpl.php:149 -#: view/smarty3/compiled/681c121d981f553bdaa9e163d8a08e0bb4bd88ec.file.tree.tpl.php:121 -msgid "Create new pull request" -msgstr "Neuer Pull Request" - -#: view/smarty3/compiled/919a59d5a78d842406e0afa69e5825d6feb5dc06.file.admin_plugins.tpl.php:42 -msgid "Reload active plugins" -msgstr "Aktive Plugins neu laden" - -#: view/smarty3/compiled/1708ab6fbb592af5399438bf991f7b474286b1b1.file.contact_drop_confirm.tpl.php:22 -msgid "Drop contact" -msgstr "Kontakt löschen" - -#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:32 -msgid "Public projects on this node" -msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite" - -#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:79 -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:68 +#: mod/invite.php:120 #, php-format msgid "" -"Do you want to delete the project '%s'?\\n\\nThis operation cannot be " -"undone." -msgstr "Möchtest du das Projekt '%s' löschen?\\n\\nDies kann nicht rückgängig gemacht werden." +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke." -#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:56 -msgid "Visibility" -msgstr "Sichtbarkeit" +#: mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website." -#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:72 -#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:69 -msgid "Create" -msgstr "Erstellen" +#: mod/invite.php:123 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst." -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:107 -msgid "No pull requests to show" -msgstr "Keine Pull Requests zum Anzeigen vorhanden" +#: mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen." -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:123 -msgid "opened by" -msgstr "geöffnet von" +#: mod/invite.php:132 +msgid "Send invitations" +msgstr "Einladungen senden" -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:128 -msgid "closed" -msgstr "Geschlossen" +#: mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "E-Mail-Adressen eingeben, eine pro Zeile:" -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:133 -msgid "merged" -msgstr "merged" +#: mod/invite.php:135 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen." -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:31 -msgid "Projects" -msgstr "Projekte" +#: mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Du benötigst den folgenden Einladungscode: $invite_code" -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:32 -msgid "add new" -msgstr "neue hinzufügen" +#: mod/invite.php:137 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:" -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:51 -msgid "delete" -msgstr "löschen" +#: mod/invite.php:139 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com" -#: view/smarty3/compiled/4bbe2f5d3d1015c250383e229b603c26c960f47c.file.commits.tpl.php:80 -#: view/smarty3/compiled/1cdeb5a00fc3621815c983a6f754af6d16ff85c9.file.commit.tpl.php:80 -#: view/smarty3/compiled/0427bde50f01fd26112193bc4daba7b58c19ca11.file.aside.tpl.php:51 -msgid "Clone this project:" -msgstr "Dieses Projekt clonen" +#: mod/photos.php:54 mod/photos.php:184 mod/photos.php:1111 +#: mod/photos.php:1237 mod/photos.php:1260 mod/photos.php:1819 +#: mod/photos.php:1831 view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Kontaktbilder" -#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:38 -msgid "New pull request" -msgstr "Neuer Pull Request" +#: mod/photos.php:91 include/identity.php:652 +msgid "Photo Albums" +msgstr "Fotoalben" -#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:63 -msgid "Can't show you the diff at the moment. Sorry" -msgstr "Entschuldigung, aber ich kann dir die Unterschiede gerade nicht anzeigen." +#: mod/photos.php:92 mod/photos.php:1880 +msgid "Recent Photos" +msgstr "Neueste Fotos" -#: boot.php:763 +#: mod/photos.php:95 mod/photos.php:1312 mod/photos.php:1882 +msgid "Upload New Photos" +msgstr "Neue Fotos hochladen" + +#: mod/photos.php:173 +msgid "Contact information unavailable" +msgstr "Kontaktinformationen nicht verfügbar" + +#: mod/photos.php:194 +msgid "Album not found." +msgstr "Album nicht gefunden." + +#: mod/photos.php:224 mod/photos.php:236 mod/photos.php:1254 +msgid "Delete Album" +msgstr "Album löschen" + +#: mod/photos.php:234 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?" + +#: mod/photos.php:314 mod/photos.php:325 mod/photos.php:1572 +msgid "Delete Photo" +msgstr "Foto löschen" + +#: mod/photos.php:323 +msgid "Do you really want to delete this photo?" +msgstr "Möchtest Du wirklich dieses Foto löschen?" + +#: mod/photos.php:698 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s wurde von %3$s in %2$s getaggt" + +#: mod/photos.php:698 +msgid "a photo" +msgstr "einem Foto" + +#: mod/photos.php:811 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." + +#: mod/photos.php:978 +msgid "No photos selected" +msgstr "Keine Bilder ausgewählt" + +#: mod/photos.php:1139 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers." + +#: mod/photos.php:1174 +msgid "Upload Photos" +msgstr "Bilder hochladen" + +#: mod/photos.php:1178 mod/photos.php:1249 +msgid "New album name: " +msgstr "Name des neuen Albums: " + +#: mod/photos.php:1179 +msgid "or existing album name: " +msgstr "oder existierender Albumname: " + +#: mod/photos.php:1180 +msgid "Do not show a status post for this upload" +msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" + +#: mod/photos.php:1182 mod/photos.php:1567 include/acl_selectors.php:346 +msgid "Permissions" +msgstr "Berechtigungen" + +#: mod/photos.php:1193 +msgid "Private Photo" +msgstr "Privates Foto" + +#: mod/photos.php:1194 +msgid "Public Photo" +msgstr "Öffentliches Foto" + +#: mod/photos.php:1262 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: mod/photos.php:1268 +msgid "Show Newest First" +msgstr "Zeige neueste zuerst" + +#: mod/photos.php:1270 +msgid "Show Oldest First" +msgstr "Zeige älteste zuerst" + +#: mod/photos.php:1298 mod/photos.php:1865 +msgid "View Photo" +msgstr "Foto betrachten" + +#: mod/photos.php:1345 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." + +#: mod/photos.php:1347 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" + +#: mod/photos.php:1403 +msgid "View photo" +msgstr "Fotos ansehen" + +#: mod/photos.php:1403 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: mod/photos.php:1404 +msgid "Use as profile photo" +msgstr "Als Profilbild verwenden" + +#: mod/photos.php:1429 +msgid "View Full Size" +msgstr "Betrachte Originalgröße" + +#: mod/photos.php:1515 +msgid "Tags: " +msgstr "Tags: " + +#: mod/photos.php:1518 +msgid "[Remove any tag]" +msgstr "[Tag entfernen]" + +#: mod/photos.php:1558 +msgid "New album name" +msgstr "Name des neuen Albums" + +#: mod/photos.php:1559 +msgid "Caption" +msgstr "Bildunterschrift" + +#: mod/photos.php:1560 +msgid "Add a Tag" +msgstr "Tag hinzufügen" + +#: mod/photos.php:1560 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: mod/photos.php:1561 +msgid "Do not rotate" +msgstr "Nicht rotieren" + +#: mod/photos.php:1562 +msgid "Rotate CW (right)" +msgstr "Drehen US (rechts)" + +#: mod/photos.php:1563 +msgid "Rotate CCW (left)" +msgstr "Drehen EUS (links)" + +#: mod/photos.php:1578 +msgid "Private photo" +msgstr "Privates Foto" + +#: mod/photos.php:1579 +msgid "Public photo" +msgstr "Öffentliches Foto" + +#: mod/photos.php:1601 include/conversation.php:1077 +msgid "Share" +msgstr "Teilen" + +#: mod/photos.php:1795 +msgid "Map" +msgstr "Karte" + +#: mod/p.php:9 +msgid "Not Extended" +msgstr "Nicht erweitert." + +#: mod/regmod.php:55 +msgid "Account approved." +msgstr "Konto freigegeben." + +#: mod/regmod.php:92 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrierung für %s wurde zurückgezogen" + +#: mod/regmod.php:104 +msgid "Please login." +msgstr "Bitte melde Dich an." + +#: mod/uimport.php:66 +msgid "Move account" +msgstr "Account umziehen" + +#: mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Du kannst einen Account von einem anderen Friendica Server importieren." + +#: mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist." + +#: mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren" + +#: mod/uimport.php:70 +msgid "Account file" +msgstr "Account Datei" + +#: mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"" + +#: mod/attach.php:8 +msgid "Item not available." +msgstr "Beitrag nicht verfügbar." + +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Beitrag konnte nicht gefunden werden." + +#: boot.php:764 msgid "Delete this item?" msgstr "Diesen Beitrag löschen?" -#: boot.php:766 +#: boot.php:767 msgid "show fewer" msgstr "weniger anzeigen" -#: boot.php:1140 +#: boot.php:1141 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." -#: boot.php:1247 +#: boot.php:1248 msgid "Create a New Account" msgstr "Neues Konto erstellen" -#: boot.php:1272 include/nav.php:73 +#: boot.php:1273 include/nav.php:73 msgid "Logout" msgstr "Abmelden" -#: boot.php:1275 +#: boot.php:1276 msgid "Nickname or Email address: " msgstr "Spitzname oder E-Mail-Adresse: " -#: boot.php:1276 +#: boot.php:1277 msgid "Password: " msgstr "Passwort: " -#: boot.php:1277 +#: boot.php:1278 msgid "Remember me" msgstr "Anmeldedaten merken" -#: boot.php:1280 +#: boot.php:1281 msgid "Or login using OpenID: " msgstr "Oder melde Dich mit Deiner OpenID an: " -#: boot.php:1286 +#: boot.php:1287 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: boot.php:1289 +#: boot.php:1290 msgid "Website Terms of Service" msgstr "Website Nutzungsbedingungen" -#: boot.php:1290 +#: boot.php:1291 msgid "terms of service" msgstr "Nutzungsbedingungen" -#: boot.php:1292 +#: boot.php:1293 msgid "Website Privacy Policy" msgstr "Website Datenschutzerklärung" -#: boot.php:1293 +#: boot.php:1294 msgid "privacy policy" msgstr "Datenschutzerklärung" -#: include/features.php:23 -msgid "General Features" -msgstr "Allgemeine Features" +#: object/Item.php:95 +msgid "This entry was edited" +msgstr "Dieser Beitrag wurde bearbeitet." -#: include/features.php:25 -msgid "Multiple Profiles" -msgstr "Mehrere Profile" +#: object/Item.php:209 +msgid "ignore thread" +msgstr "Thread ignorieren" -#: include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Möglichkeit mehrere Profile zu erstellen" +#: object/Item.php:210 +msgid "unignore thread" +msgstr "Thread nicht mehr ignorieren" -#: include/features.php:30 -msgid "Post Composition Features" -msgstr "Beitragserstellung Features" +#: object/Item.php:211 +msgid "toggle ignore status" +msgstr "Ignoriert-Status ein-/ausschalten" -#: include/features.php:31 -msgid "Richtext Editor" -msgstr "Web-Editor" +#: object/Item.php:324 include/conversation.php:665 +msgid "Categories:" +msgstr "Kategorien:" -#: include/features.php:31 -msgid "Enable richtext editor" -msgstr "Den Web-Editor für neue Beiträge aktivieren" +#: object/Item.php:325 include/conversation.php:666 +msgid "Filed under:" +msgstr "Abgelegt unter:" -#: include/features.php:32 -msgid "Post Preview" -msgstr "Beitragsvorschau" +#: object/Item.php:337 +msgid "via" +msgstr "via" -#: include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben." - -#: include/features.php:33 -msgid "Auto-mention Forums" -msgstr "Foren automatisch erwähnen" - -#: include/features.php:33 +#: include/dbstructure.php:26 +#, php-format msgid "" -"Add/remove mention when a fourm page is selected/deselected in ACL window." -msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde." +"\n" +"\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein." -#: include/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "Widgets für Netzwerk und Seitenleiste" +#: include/dbstructure.php:31 +#, php-format +msgid "" +"The error message is\n" +"[pre]%s[/pre]" +msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" -#: include/features.php:39 -msgid "Search by Date" -msgstr "Archiv" +#: include/dbstructure.php:152 +msgid "Errors encountered creating database tables." +msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." -#: include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren" - -#: include/features.php:40 -msgid "Group Filter" -msgstr "Gruppen Filter" - -#: include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren." - -#: include/features.php:41 -msgid "Network Filter" -msgstr "Netzwerk Filter" - -#: include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren." - -#: include/features.php:42 -msgid "Save search terms for re-use" -msgstr "Speichere Suchanfragen für spätere Wiederholung." - -#: include/features.php:47 -msgid "Network Tabs" -msgstr "Netzwerk Reiter" - -#: include/features.php:48 -msgid "Network Personal Tab" -msgstr "Netzwerk-Reiter: Persönlich" - -#: include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast" - -#: include/features.php:49 -msgid "Network New Tab" -msgstr "Netzwerk-Reiter: Neue" - -#: include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden" - -#: include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "Netzwerk-Reiter: Geteilte Links" - -#: include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält" - -#: include/features.php:55 -msgid "Post/Comment Tools" -msgstr "Werkzeuge für Beiträge und Kommentare" - -#: include/features.php:56 -msgid "Multiple Deletion" -msgstr "Mehrere Beiträge löschen" - -#: include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen" - -#: include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Gesendete Beiträge editieren" - -#: include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren." - -#: include/features.php:58 -msgid "Tagging" -msgstr "Tagging" - -#: include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen." - -#: include/features.php:59 -msgid "Post Categories" -msgstr "Beitragskategorien" - -#: include/features.php:59 -msgid "Add categories to your posts" -msgstr "Eigene Beiträge mit Kategorien versehen" - -#: include/features.php:60 include/contact_widgets.php:104 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" - -#: include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Beiträge in Ordnern speichern aktivieren" - -#: include/features.php:61 -msgid "Dislike Posts" -msgstr "Beiträge 'nicht mögen'" - -#: include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'" - -#: include/features.php:62 -msgid "Star Posts" -msgstr "Beiträge Markieren" - -#: include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren" - -#: include/features.php:63 -msgid "Mute Post Notifications" -msgstr "Benachrichtigungen für Beiträge Stumm schalten" - -#: include/features.php:63 -msgid "Ability to mute notifications for a thread" -msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können" +#: include/dbstructure.php:210 +msgid "Errors encountered performing database changes." +msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." #: include/auth.php:38 msgid "Logged out." @@ -6381,21 +6143,741 @@ msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein msgid "The error message was:" msgstr "Die Fehlermeldung lautete:" -#: include/event.php:22 include/bb2diaspora.php:154 -msgid "Starts:" -msgstr "Beginnt:" +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Neuen Kontakt hinzufügen" -#: include/event.php:32 include/bb2diaspora.php:162 -msgid "Finishes:" -msgstr "Endet:" +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Adresse oder Web-Link eingeben" + +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Beispiel: bob@example.com, http://example.com/barbara" + +#: include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d Einladung verfügbar" +msgstr[1] "%d Einladungen verfügbar" + +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "Leute finden" + +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" + +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiel: Robert Morgenstein, Angeln" + +#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 +#: view/theme/vier/theme.php:178 +msgid "Similar Interests" +msgstr "Ähnliche Interessen" + +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Zufälliges Profil" + +#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 +#: view/theme/vier/theme.php:180 +msgid "Invite Friends" +msgstr "Freunde einladen" + +#: include/contact_widgets.php:71 +msgid "Networks" +msgstr "Netzwerke" + +#: include/contact_widgets.php:74 +msgid "All Networks" +msgstr "Alle Netzwerke" + +#: include/contact_widgets.php:104 include/features.php:61 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" + +#: include/contact_widgets.php:107 include/contact_widgets.php:139 +msgid "Everything" +msgstr "Alles" + +#: include/contact_widgets.php:136 +msgid "Categories" +msgstr "Kategorien" + +#: include/features.php:23 +msgid "General Features" +msgstr "Allgemeine Features" + +#: include/features.php:25 +msgid "Multiple Profiles" +msgstr "Mehrere Profile" + +#: include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Möglichkeit mehrere Profile zu erstellen" + +#: include/features.php:26 +msgid "Photo Location" +msgstr "Aufnahmeort" + +#: include/features.php:26 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden." + +#: include/features.php:31 +msgid "Post Composition Features" +msgstr "Beitragserstellung Features" + +#: include/features.php:32 +msgid "Richtext Editor" +msgstr "Web-Editor" + +#: include/features.php:32 +msgid "Enable richtext editor" +msgstr "Den Web-Editor für neue Beiträge aktivieren" + +#: include/features.php:33 +msgid "Post Preview" +msgstr "Beitragsvorschau" + +#: include/features.php:33 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben." + +#: include/features.php:34 +msgid "Auto-mention Forums" +msgstr "Foren automatisch erwähnen" + +#: include/features.php:34 +msgid "" +"Add/remove mention when a fourm page is selected/deselected in ACL window." +msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert wurde." + +#: include/features.php:39 +msgid "Network Sidebar Widgets" +msgstr "Widgets für Netzwerk und Seitenleiste" + +#: include/features.php:40 +msgid "Search by Date" +msgstr "Archiv" + +#: include/features.php:40 +msgid "Ability to select posts by date ranges" +msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren" + +#: include/features.php:41 +msgid "Group Filter" +msgstr "Gruppen Filter" + +#: include/features.php:41 +msgid "Enable widget to display Network posts only from selected group" +msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren." + +#: include/features.php:42 +msgid "Network Filter" +msgstr "Netzwerk Filter" + +#: include/features.php:42 +msgid "Enable widget to display Network posts only from selected network" +msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren." + +#: include/features.php:43 +msgid "Save search terms for re-use" +msgstr "Speichere Suchanfragen für spätere Wiederholung." + +#: include/features.php:48 +msgid "Network Tabs" +msgstr "Netzwerk Reiter" + +#: include/features.php:49 +msgid "Network Personal Tab" +msgstr "Netzwerk-Reiter: Persönlich" + +#: include/features.php:49 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast" + +#: include/features.php:50 +msgid "Network New Tab" +msgstr "Netzwerk-Reiter: Neue" + +#: include/features.php:50 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden" + +#: include/features.php:51 +msgid "Network Shared Links Tab" +msgstr "Netzwerk-Reiter: Geteilte Links" + +#: include/features.php:51 +msgid "Enable tab to display only Network posts with links in them" +msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält" + +#: include/features.php:56 +msgid "Post/Comment Tools" +msgstr "Werkzeuge für Beiträge und Kommentare" + +#: include/features.php:57 +msgid "Multiple Deletion" +msgstr "Mehrere Beiträge löschen" + +#: include/features.php:57 +msgid "Select and delete multiple posts/comments at once" +msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen" + +#: include/features.php:58 +msgid "Edit Sent Posts" +msgstr "Gesendete Beiträge editieren" + +#: include/features.php:58 +msgid "Edit and correct posts and comments after sending" +msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren." + +#: include/features.php:59 +msgid "Tagging" +msgstr "Tagging" + +#: include/features.php:59 +msgid "Ability to tag existing posts" +msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen." + +#: include/features.php:60 +msgid "Post Categories" +msgstr "Beitragskategorien" + +#: include/features.php:60 +msgid "Add categories to your posts" +msgstr "Eigene Beiträge mit Kategorien versehen" + +#: include/features.php:61 +msgid "Ability to file posts under folders" +msgstr "Beiträge in Ordnern speichern aktivieren" + +#: include/features.php:62 +msgid "Dislike Posts" +msgstr "Beiträge 'nicht mögen'" + +#: include/features.php:62 +msgid "Ability to dislike posts/comments" +msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'" + +#: include/features.php:63 +msgid "Star Posts" +msgstr "Beiträge Markieren" + +#: include/features.php:63 +msgid "Ability to mark special posts with a star indicator" +msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren" + +#: include/features.php:64 +msgid "Mute Post Notifications" +msgstr "Benachrichtigungen für Beiträge Stumm schalten" + +#: include/features.php:64 +msgid "Ability to mute notifications for a thread" +msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können" + +#: include/follow.php:77 +msgid "Connect URL missing." +msgstr "Connect-URL fehlt" + +#: include/follow.php:104 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann." + +#: include/follow.php:105 include/follow.php:125 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." + +#: include/follow.php:123 +msgid "The profile address specified does not provide adequate information." +msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." + +#: include/follow.php:127 +msgid "An author or name was not found." +msgstr "Es wurde kein Autor oder Name gefunden." + +#: include/follow.php:129 +msgid "No browser URL could be matched to this address." +msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden." + +#: include/follow.php:131 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen." + +#: include/follow.php:132 +msgid "Use mailto: in front of address to force email check." +msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen." + +#: include/follow.php:138 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde." + +#: include/follow.php:148 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können." + +#: include/follow.php:249 +msgid "Unable to retrieve contact information." +msgstr "Konnte die Kontaktinformationen nicht empfangen." + +#: include/follow.php:302 +msgid "following" +msgstr "folgen" + +#: include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen." + +#: include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Voreingestellte Gruppe für neue Kontakte" + +#: include/group.php:226 +msgid "Everybody" +msgstr "Alle Kontakte" + +#: include/group.php:249 +msgid "edit" +msgstr "bearbeiten" + +#: include/group.php:271 +msgid "Edit group" +msgstr "Gruppe bearbeiten" + +#: include/group.php:272 +msgid "Create a new group" +msgstr "Neue Gruppe erstellen" + +#: include/group.php:275 +msgid "Contacts not in any group" +msgstr "Kontakte in keiner Gruppe" + +#: include/datetime.php:43 include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Verschiedenes" + +#: include/datetime.php:141 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD oder MM-DD" + +#: include/datetime.php:256 +msgid "never" +msgstr "nie" + +#: include/datetime.php:262 +msgid "less than a second ago" +msgstr "vor weniger als einer Sekunde" + +#: include/datetime.php:272 +msgid "year" +msgstr "Jahr" + +#: include/datetime.php:272 +msgid "years" +msgstr "Jahre" + +#: include/datetime.php:273 +msgid "months" +msgstr "Monate" + +#: include/datetime.php:274 +msgid "weeks" +msgstr "Wochen" + +#: include/datetime.php:275 +msgid "days" +msgstr "Tage" + +#: include/datetime.php:276 +msgid "hour" +msgstr "Stunde" + +#: include/datetime.php:276 +msgid "hours" +msgstr "Stunden" + +#: include/datetime.php:277 +msgid "minute" +msgstr "Minute" + +#: include/datetime.php:277 +msgid "minutes" +msgstr "Minuten" + +#: include/datetime.php:278 +msgid "second" +msgstr "Sekunde" + +#: include/datetime.php:278 +msgid "seconds" +msgstr "Sekunden" + +#: include/datetime.php:287 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s her" + +#: include/datetime.php:459 include/items.php:2484 +#, php-format +msgid "%s's birthday" +msgstr "%ss Geburtstag" + +#: include/datetime.php:460 include/items.php:2485 +#, php-format +msgid "Happy Birthday %s" +msgstr "Herzlichen Glückwunsch %s" + +#: include/identity.php:38 +msgid "Requested account is not available." +msgstr "Das angefragte Profil ist nicht vorhanden." + +#: include/identity.php:121 include/identity.php:255 include/identity.php:608 +msgid "Edit profile" +msgstr "Profil bearbeiten" + +#: include/identity.php:220 +msgid "Message" +msgstr "Nachricht" + +#: include/identity.php:226 include/nav.php:186 +msgid "Profiles" +msgstr "Profile" + +#: include/identity.php:226 +msgid "Manage/edit profiles" +msgstr "Profile verwalten/editieren" + +#: include/identity.php:342 +msgid "Network:" +msgstr "Netzwerk" + +#: include/identity.php:374 include/identity.php:460 +msgid "g A l F d" +msgstr "l, d. F G \\U\\h\\r" + +#: include/identity.php:375 include/identity.php:461 +msgid "F d" +msgstr "d. F" + +#: include/identity.php:420 include/identity.php:507 +msgid "[today]" +msgstr "[heute]" + +#: include/identity.php:432 +msgid "Birthday Reminders" +msgstr "Geburtstagserinnerungen" + +#: include/identity.php:433 +msgid "Birthdays this week:" +msgstr "Geburtstage diese Woche:" + +#: include/identity.php:494 +msgid "[No description]" +msgstr "[keine Beschreibung]" + +#: include/identity.php:518 +msgid "Event Reminders" +msgstr "Veranstaltungserinnerungen" + +#: include/identity.php:519 +msgid "Events this week:" +msgstr "Veranstaltungen diese Woche" + +#: include/identity.php:546 +msgid "j F, Y" +msgstr "j F, Y" + +#: include/identity.php:547 +msgid "j F" +msgstr "j F" + +#: include/identity.php:554 +msgid "Birthday:" +msgstr "Geburtstag:" + +#: include/identity.php:558 +msgid "Age:" +msgstr "Alter:" + +#: include/identity.php:567 +#, php-format +msgid "for %1$d %2$s" +msgstr "für %1$d %2$s" + +#: include/identity.php:580 +msgid "Religion:" +msgstr "Religion:" + +#: include/identity.php:584 +msgid "Hobbies/Interests:" +msgstr "Hobbies/Interessen:" + +#: include/identity.php:591 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformationen und Soziale Netzwerke:" + +#: include/identity.php:593 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" + +#: include/identity.php:595 +msgid "Books, literature:" +msgstr "Literatur/Bücher:" + +#: include/identity.php:597 +msgid "Television:" +msgstr "Fernsehen:" + +#: include/identity.php:599 +msgid "Film/dance/culture/entertainment:" +msgstr "Filme/Tänze/Kultur/Unterhaltung:" + +#: include/identity.php:601 +msgid "Love/Romance:" +msgstr "Liebesleben:" + +#: include/identity.php:603 +msgid "Work/employment:" +msgstr "Arbeit/Beschäftigung:" + +#: include/identity.php:605 +msgid "School/education:" +msgstr "Schule/Ausbildung:" + +#: include/identity.php:633 include/nav.php:76 +msgid "Status" +msgstr "Status" + +#: include/identity.php:636 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" + +#: include/identity.php:644 +msgid "Profile Details" +msgstr "Profildetails" + +#: include/identity.php:657 include/identity.php:660 include/nav.php:79 +msgid "Videos" +msgstr "Videos" + +#: include/identity.php:672 include/nav.php:141 +msgid "Events and Calendar" +msgstr "Ereignisse und Kalender" + +#: include/identity.php:680 +msgid "Only You Can See This" +msgstr "Nur Du kannst das sehen" + +#: include/acl_selectors.php:324 +msgid "Post to Email" +msgstr "An E-Mail senden" + +#: include/acl_selectors.php:329 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist." + +#: include/acl_selectors.php:335 +msgid "Visible to everybody" +msgstr "Für jeden sichtbar" + +#: include/acl_selectors.php:336 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103 +msgid "show" +msgstr "zeigen" + +#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 +#: view/theme/diabook/theme.php:621 view/theme/vier/config.php:103 +msgid "don't show" +msgstr "nicht zeigen" #: include/message.php:15 include/message.php:173 msgid "[no subject]" msgstr "[kein Betreff]" -#: include/Scrape.php:603 -msgid " on Last.fm" -msgstr " bei Last.fm" +#: include/Contact.php:119 +msgid "stopped following" +msgstr "wird nicht mehr gefolgt" + +#: include/Contact.php:236 include/conversation.php:890 +msgid "View Status" +msgstr "Pinnwand anschauen" + +#: include/Contact.php:238 include/conversation.php:892 +msgid "View Photos" +msgstr "Bilder anschauen" + +#: include/Contact.php:239 include/Contact.php:264 +#: include/conversation.php:893 +msgid "Network Posts" +msgstr "Netzwerkbeiträge" + +#: include/Contact.php:240 include/Contact.php:264 +#: include/conversation.php:894 +msgid "Edit Contact" +msgstr "Kontakt bearbeiten" + +#: include/Contact.php:241 +msgid "Drop Contact" +msgstr "Kontakt löschen" + +#: include/Contact.php:242 include/Contact.php:264 +#: include/conversation.php:895 +msgid "Send PM" +msgstr "Private Nachricht senden" + +#: include/Contact.php:243 include/conversation.php:899 +msgid "Poke" +msgstr "Anstupsen" + +#: include/security.php:22 +msgid "Welcome " +msgstr "Willkommen " + +#: include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Bitte lade ein Profilbild hoch." + +#: include/security.php:26 +msgid "Welcome back " +msgstr "Willkommen zurück " + +#: include/security.php:375 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)." + +#: include/conversation.php:118 include/conversation.php:245 +#: include/text.php:2029 view/theme/diabook/theme.php:463 +msgid "event" +msgstr "Veranstaltung" + +#: include/conversation.php:206 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s" + +#: include/conversation.php:290 +msgid "post/item" +msgstr "Nachricht/Beitrag" + +#: include/conversation.php:291 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert" + +#: include/conversation.php:771 +msgid "remove" +msgstr "löschen" + +#: include/conversation.php:775 +msgid "Delete Selected Items" +msgstr "Lösche die markierten Beiträge" + +#: include/conversation.php:889 +msgid "Follow Thread" +msgstr "Folge der Unterhaltung" + +#: include/conversation.php:965 +#, php-format +msgid "%s likes this." +msgstr "%s mag das." + +#: include/conversation.php:965 +#, php-format +msgid "%s doesn't like this." +msgstr "%s mag das nicht." + +#: include/conversation.php:970 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d Personen mögen das" + +#: include/conversation.php:973 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d Personen mögen das nicht" + +#: include/conversation.php:987 +msgid "and" +msgstr "und" + +#: include/conversation.php:993 +#, php-format +msgid ", and %d other people" +msgstr " und %d andere" + +#: include/conversation.php:995 +#, php-format +msgid "%s like this." +msgstr "%s mögen das." + +#: include/conversation.php:995 +#, php-format +msgid "%s don't like this." +msgstr "%s mögen das nicht." + +#: include/conversation.php:1022 include/conversation.php:1040 +msgid "Visible to everybody" +msgstr "Für jedermann sichtbar" + +#: include/conversation.php:1024 include/conversation.php:1042 +msgid "Please enter a video link/URL:" +msgstr "Bitte Link/URL zum Video einfügen:" + +#: include/conversation.php:1025 include/conversation.php:1043 +msgid "Please enter an audio link/URL:" +msgstr "Bitte Link/URL zum Audio einfügen:" + +#: include/conversation.php:1026 include/conversation.php:1044 +msgid "Tag term:" +msgstr "Tag:" + +#: include/conversation.php:1028 include/conversation.php:1046 +msgid "Where are you right now?" +msgstr "Wo hältst Du Dich jetzt gerade auf?" + +#: include/conversation.php:1029 +msgid "Delete item(s)?" +msgstr "Einträge löschen?" + +#: include/conversation.php:1098 +msgid "permissions" +msgstr "Zugriffsrechte" + +#: include/conversation.php:1121 +msgid "Post to Groups" +msgstr "Poste an Gruppe" + +#: include/conversation.php:1122 +msgid "Post to Contacts" +msgstr "Poste an Kontakte" + +#: include/conversation.php:1123 +msgid "Private post" +msgstr "Privater Beitrag" + +#: include/network.php:968 +msgid "view full size" +msgstr "Volle Größe anzeigen" #: include/text.php:299 msgid "newer" @@ -6580,114 +7062,340 @@ msgstr "entspannt" msgid "surprised" msgstr "überrascht" -#: include/text.php:1266 -msgid "Monday" -msgstr "Montag" - -#: include/text.php:1266 -msgid "Tuesday" -msgstr "Dienstag" - -#: include/text.php:1266 -msgid "Wednesday" -msgstr "Mittwoch" - -#: include/text.php:1266 -msgid "Thursday" -msgstr "Donnerstag" - -#: include/text.php:1266 -msgid "Friday" -msgstr "Freitag" - -#: include/text.php:1266 -msgid "Saturday" -msgstr "Samstag" - -#: include/text.php:1266 -msgid "Sunday" -msgstr "Sonntag" - -#: include/text.php:1270 -msgid "January" -msgstr "Januar" - -#: include/text.php:1270 -msgid "February" -msgstr "Februar" - -#: include/text.php:1270 -msgid "March" -msgstr "März" - -#: include/text.php:1270 -msgid "April" -msgstr "April" - -#: include/text.php:1270 -msgid "May" -msgstr "Mai" - -#: include/text.php:1270 -msgid "June" -msgstr "Juni" - -#: include/text.php:1270 -msgid "July" -msgstr "Juli" - -#: include/text.php:1270 -msgid "August" -msgstr "August" - -#: include/text.php:1270 -msgid "September" -msgstr "September" - -#: include/text.php:1270 -msgid "October" -msgstr "Oktober" - -#: include/text.php:1270 -msgid "November" -msgstr "November" - -#: include/text.php:1270 -msgid "December" -msgstr "Dezember" - -#: include/text.php:1492 +#: include/text.php:1489 msgid "bytes" msgstr "Byte" -#: include/text.php:1524 include/text.php:1536 +#: include/text.php:1521 include/text.php:1533 msgid "Click to open/close" msgstr "Zum öffnen/schließen klicken" -#: include/text.php:1710 +#: include/text.php:1707 msgid "View on separate page" msgstr "Auf separater Seite ansehen" -#: include/text.php:1711 +#: include/text.php:1708 msgid "view on separate page" msgstr "auf separater Seite ansehen" -#: include/text.php:1780 +#: include/text.php:1765 include/user.php:255 +#: view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "Standard" + +#: include/text.php:1777 msgid "Select an alternate language" msgstr "Alternative Sprache auswählen" -#: include/text.php:2036 +#: include/text.php:2033 msgid "activity" msgstr "Aktivität" -#: include/text.php:2039 +#: include/text.php:2036 msgid "post" msgstr "Beitrag" -#: include/text.php:2207 +#: include/text.php:2204 msgid "Item filed" msgstr "Beitrag abgelegt" +#: include/bbcode.php:474 include/bbcode.php:1132 include/bbcode.php:1133 +msgid "Image/photo" +msgstr "Bild/Foto" + +#: include/bbcode.php:572 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:606 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s schrieb den folgenden Beitrag" + +#: include/bbcode.php:1092 include/bbcode.php:1112 +msgid "$1 wrote:" +msgstr "$1 hat geschrieben:" + +#: include/bbcode.php:1141 include/bbcode.php:1142 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" + +#: include/notifier.php:840 include/delivery.php:456 +msgid "(no subject)" +msgstr "(kein Betreff)" + +#: include/notifier.php:850 include/delivery.php:467 include/enotify.php:33 +msgid "noreply" +msgstr "noreply" + +#: include/dba_pdo.php:72 include/dba.php:56 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln." + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Unbekannt | Nicht kategorisiert" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Sofort blockieren" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Zwielichtig, Spammer, Selbstdarsteller" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Ist mir bekannt, hab aber keine Meinung" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, wahrscheinlich harmlos" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Seriös, hat mein Vertrauen" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wöchentlich" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Monatlich" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zott" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/Chat" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Diaspora" + +#: include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "StatusNet" + +#: include/contact_selectors.php:92 +msgid "App.net" +msgstr "App.net" + +#: include/contact_selectors.php:103 +msgid "Redmatrix" +msgstr "Redmatrix" + +#: include/Scrape.php:603 +msgid " on Last.fm" +msgstr " bei Last.fm" + +#: include/bb2diaspora.php:154 include/event.php:22 +msgid "Starts:" +msgstr "Beginnt:" + +#: include/bb2diaspora.php:162 include/event.php:32 +msgid "Finishes:" +msgstr "Endet:" + +#: include/plugin.php:458 include/plugin.php:460 +msgid "Click here to upgrade." +msgstr "Zum Upgraden hier klicken." + +#: include/plugin.php:466 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements." + +#: include/plugin.php:471 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar." + +#: include/nav.php:73 +msgid "End this session" +msgstr "Diese Sitzung beenden" + +#: include/nav.php:76 include/nav.php:158 view/theme/diabook/theme.php:123 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" + +#: include/nav.php:77 view/theme/diabook/theme.php:124 +msgid "Your profile page" +msgstr "Deine Profilseite" + +#: include/nav.php:78 view/theme/diabook/theme.php:126 +msgid "Your photos" +msgstr "Deine Fotos" + +#: include/nav.php:79 +msgid "Your videos" +msgstr "Deine Videos" + +#: include/nav.php:80 view/theme/diabook/theme.php:127 +msgid "Your events" +msgstr "Deine Ereignisse" + +#: include/nav.php:81 view/theme/diabook/theme.php:128 +msgid "Personal notes" +msgstr "Persönliche Notizen" + +#: include/nav.php:81 +msgid "Your personal notes" +msgstr "Deine persönlichen Notizen" + +#: include/nav.php:92 +msgid "Sign in" +msgstr "Anmelden" + +#: include/nav.php:105 +msgid "Home Page" +msgstr "Homepage" + +#: include/nav.php:109 +msgid "Create an account" +msgstr "Nutzerkonto erstellen" + +#: include/nav.php:114 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: include/nav.php:117 +msgid "Apps" +msgstr "Apps" + +#: include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "Addon Anwendungen, Dienstprogramme, Spiele" + +#: include/nav.php:119 +msgid "Search site content" +msgstr "Inhalt der Seite durchsuchen" + +#: include/nav.php:137 +msgid "Conversations on this site" +msgstr "Unterhaltungen auf dieser Seite" + +#: include/nav.php:139 +msgid "Conversations on the network" +msgstr "Unterhaltungen im Netzwerk" + +#: include/nav.php:143 +msgid "Directory" +msgstr "Verzeichnis" + +#: include/nav.php:143 +msgid "People directory" +msgstr "Nutzerverzeichnis" + +#: include/nav.php:145 +msgid "Information" +msgstr "Information" + +#: include/nav.php:145 +msgid "Information about this friendica instance" +msgstr "Informationen zu dieser Friendica Instanz" + +#: include/nav.php:155 +msgid "Conversations from your friends" +msgstr "Unterhaltungen Deiner Kontakte" + +#: include/nav.php:156 +msgid "Network Reset" +msgstr "Netzwerk zurücksetzen" + +#: include/nav.php:156 +msgid "Load Network page with no filters" +msgstr "Netzwerk-Seite ohne Filter laden" + +#: include/nav.php:163 +msgid "Friend Requests" +msgstr "Kontaktanfragen" + +#: include/nav.php:167 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen anzeigen" + +#: include/nav.php:168 +msgid "Mark all system notifications seen" +msgstr "Markiere alle Systembenachrichtigungen als gelesen" + +#: include/nav.php:172 +msgid "Private mail" +msgstr "Private E-Mail" + +#: include/nav.php:173 +msgid "Inbox" +msgstr "Eingang" + +#: include/nav.php:174 +msgid "Outbox" +msgstr "Ausgang" + +#: include/nav.php:178 +msgid "Manage" +msgstr "Verwalten" + +#: include/nav.php:178 +msgid "Manage other pages" +msgstr "Andere Seiten verwalten" + +#: include/nav.php:183 +msgid "Account settings" +msgstr "Kontoeinstellungen" + +#: include/nav.php:186 +msgid "Manage/Edit Profiles" +msgstr "Profile Verwalten/Editieren" + +#: include/nav.php:188 +msgid "Manage/edit friends and contacts" +msgstr "Freunde und Kontakte verwalten/editieren" + +#: include/nav.php:195 +msgid "Site setup and configuration" +msgstr "Einstellungen der Seite und Konfiguration" + +#: include/nav.php:199 +msgid "Navigation" +msgstr "Navigation" + +#: include/nav.php:199 +msgid "Site map" +msgstr "Sitemap" + #: include/api.php:321 include/api.php:332 include/api.php:441 #: include/api.php:1141 include/api.php:1143 msgid "User not found." @@ -6728,258 +7436,130 @@ msgstr "Ungültige Aktion" msgid "DB error" msgstr "DB Error" -#: include/dba.php:56 include/dba_pdo.php:72 +#: include/user.php:48 +msgid "An invitation is required." +msgstr "Du benötigst eine Einladung." + +#: include/user.php:53 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht überprüft werden." + +#: include/user.php:61 +msgid "Invalid OpenID url" +msgstr "Ungültige OpenID URL" + +#: include/user.php:82 +msgid "Please enter the required information." +msgstr "Bitte trage die erforderlichen Informationen ein." + +#: include/user.php:96 +msgid "Please use a shorter name." +msgstr "Bitte verwende einen kürzeren Namen." + +#: include/user.php:98 +msgid "Name too short." +msgstr "Der Name ist zu kurz." + +#: include/user.php:113 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein." + +#: include/user.php:118 +msgid "Your email domain is not among those allowed on this site." +msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt." + +#: include/user.php:121 +msgid "Not a valid email address." +msgstr "Keine gültige E-Mail-Adresse." + +#: include/user.php:134 +msgid "Cannot use that email." +msgstr "Konnte diese E-Mail-Adresse nicht verwenden." + +#: include/user.php:140 +msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." +msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen." + +#: include/user.php:146 include/user.php:244 +msgid "Nickname is already registered. Please choose another." +msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." + +#: include/user.php:156 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." + +#: include/user.php:172 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." + +#: include/user.php:230 +msgid "An error occurred during registration. Please try again." +msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal." + +#: include/user.php:265 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal." + +#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42 +msgid "Friends" +msgstr "Freunde" + +#: include/user.php:385 #, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln." +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t" +msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet." -#: include/items.php:2445 include/datetime.php:459 +#: include/user.php:389 #, php-format -msgid "%s's birthday" -msgstr "%ss Geburtstag" +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t%1$s\n" +"\t\t\tPassword:\t%5$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\n" +"\t\tThank you and welcome to %2$s." +msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s." -#: include/items.php:2446 include/datetime.php:460 -#, php-format -msgid "Happy Birthday %s" -msgstr "Herzlichen Glückwunsch %s" - -#: include/items.php:4866 -msgid "Do you really want to delete this item?" -msgstr "Möchtest Du wirklich dieses Item löschen?" - -#: include/items.php:5141 -msgid "Archives" -msgstr "Archiv" - -#: include/delivery.php:456 include/notifier.php:834 -msgid "(no subject)" -msgstr "(kein Betreff)" - -#: include/delivery.php:467 include/notifier.php:844 include/enotify.php:33 -msgid "noreply" -msgstr "noreply" - -#: include/diaspora.php:716 +#: include/diaspora.php:719 msgid "Sharing notification from Diaspora network" msgstr "Freigabe-Benachrichtigung von Diaspora" -#: include/diaspora.php:2567 +#: include/diaspora.php:2573 msgid "Attachments:" msgstr "Anhänge:" -#: include/identity.php:38 -msgid "Requested account is not available." -msgstr "Das angefragte Profil ist nicht vorhanden." +#: include/items.php:4905 +msgid "Do you really want to delete this item?" +msgstr "Möchtest Du wirklich dieses Item löschen?" -#: include/identity.php:121 include/identity.php:255 include/identity.php:608 -msgid "Edit profile" -msgstr "Profil bearbeiten" - -#: include/identity.php:220 -msgid "Message" -msgstr "Nachricht" - -#: include/identity.php:226 include/nav.php:184 -msgid "Profiles" -msgstr "Profile" - -#: include/identity.php:226 -msgid "Manage/edit profiles" -msgstr "Profile verwalten/editieren" - -#: include/identity.php:342 -msgid "Network:" -msgstr "Netzwerk" - -#: include/identity.php:374 include/identity.php:460 -msgid "g A l F d" -msgstr "l, d. F G \\U\\h\\r" - -#: include/identity.php:375 include/identity.php:461 -msgid "F d" -msgstr "d. F" - -#: include/identity.php:420 include/identity.php:507 -msgid "[today]" -msgstr "[heute]" - -#: include/identity.php:432 -msgid "Birthday Reminders" -msgstr "Geburtstagserinnerungen" - -#: include/identity.php:433 -msgid "Birthdays this week:" -msgstr "Geburtstage diese Woche:" - -#: include/identity.php:494 -msgid "[No description]" -msgstr "[keine Beschreibung]" - -#: include/identity.php:518 -msgid "Event Reminders" -msgstr "Veranstaltungserinnerungen" - -#: include/identity.php:519 -msgid "Events this week:" -msgstr "Veranstaltungen diese Woche" - -#: include/identity.php:546 -msgid "j F, Y" -msgstr "j F, Y" - -#: include/identity.php:547 -msgid "j F" -msgstr "j F" - -#: include/identity.php:554 -msgid "Birthday:" -msgstr "Geburtstag:" - -#: include/identity.php:558 -msgid "Age:" -msgstr "Alter:" - -#: include/identity.php:567 -#, php-format -msgid "for %1$d %2$s" -msgstr "für %1$d %2$s" - -#: include/identity.php:580 -msgid "Religion:" -msgstr "Religion:" - -#: include/identity.php:584 -msgid "Hobbies/Interests:" -msgstr "Hobbies/Interessen:" - -#: include/identity.php:591 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformationen und Soziale Netzwerke:" - -#: include/identity.php:593 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" - -#: include/identity.php:595 -msgid "Books, literature:" -msgstr "Literatur/Bücher:" - -#: include/identity.php:597 -msgid "Television:" -msgstr "Fernsehen:" - -#: include/identity.php:599 -msgid "Film/dance/culture/entertainment:" -msgstr "Filme/Tänze/Kultur/Unterhaltung:" - -#: include/identity.php:601 -msgid "Love/Romance:" -msgstr "Liebesleben:" - -#: include/identity.php:603 -msgid "Work/employment:" -msgstr "Arbeit/Beschäftigung:" - -#: include/identity.php:605 -msgid "School/education:" -msgstr "Schule/Ausbildung:" - -#: include/identity.php:633 include/nav.php:76 -msgid "Status" -msgstr "Status" - -#: include/identity.php:636 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" - -#: include/identity.php:644 -msgid "Profile Details" -msgstr "Profildetails" - -#: include/identity.php:657 include/identity.php:660 include/nav.php:79 -msgid "Videos" -msgstr "Videos" - -#: include/identity.php:671 -msgid "Events and Calendar" -msgstr "Ereignisse und Kalender" - -#: include/identity.php:679 -msgid "Only You Can See This" -msgstr "Nur Du kannst das sehen" - -#: include/follow.php:75 -msgid "Connect URL missing." -msgstr "Connect-URL fehlt" - -#: include/follow.php:102 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann." - -#: include/follow.php:103 include/follow.php:123 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." - -#: include/follow.php:121 -msgid "The profile address specified does not provide adequate information." -msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." - -#: include/follow.php:125 -msgid "An author or name was not found." -msgstr "Es wurde kein Autor oder Name gefunden." - -#: include/follow.php:127 -msgid "No browser URL could be matched to this address." -msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden." - -#: include/follow.php:129 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen." - -#: include/follow.php:130 -msgid "Use mailto: in front of address to force email check." -msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen." - -#: include/follow.php:136 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde." - -#: include/follow.php:146 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können." - -#: include/follow.php:253 -msgid "Unable to retrieve contact information." -msgstr "Konnte die Kontaktinformationen nicht empfangen." - -#: include/follow.php:306 -msgid "following" -msgstr "folgen" - -#: include/security.php:22 -msgid "Welcome " -msgstr "Willkommen " - -#: include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Bitte lade ein Profilbild hoch." - -#: include/security.php:26 -msgid "Welcome back " -msgstr "Willkommen zurück " - -#: include/security.php:375 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)." +#: include/items.php:5180 +msgid "Archives" +msgstr "Archiv" #: include/profile_selectors.php:6 msgid "Male" @@ -7125,10 +7705,6 @@ msgstr "Untreu" msgid "Sex Addict" msgstr "Sexbesessen" -#: include/profile_selectors.php:42 include/user.php:297 include/user.php:301 -msgid "Friends" -msgstr "Freunde" - #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Freunde/Zuwendungen" @@ -7213,461 +7789,6 @@ msgstr "Ist mir nicht wichtig" msgid "Ask me" msgstr "Frag mich" -#: include/uimport.php:94 -msgid "Error decoding account file" -msgstr "Fehler beim Verarbeiten der Account Datei" - -#: include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?" - -#: include/uimport.php:116 include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "Fehler! Konnte den Nickname nicht überprüfen." - -#: include/uimport.php:120 include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "Nutzer '%s' existiert bereits auf diesem Server!" - -#: include/uimport.php:153 -msgid "User creation error" -msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten" - -#: include/uimport.php:173 -msgid "User profile creation error" -msgstr "Fehler beim Anlegen des Nutzerkontos" - -#: include/uimport.php:222 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d Kontakt nicht importiert" -msgstr[1] "%d Kontakte nicht importiert" - -#: include/uimport.php:292 -msgid "Done. You can now login with your username and password" -msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden" - -#: include/plugin.php:458 include/plugin.php:460 -msgid "Click here to upgrade." -msgstr "Zum Upgraden hier klicken." - -#: include/plugin.php:466 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements." - -#: include/plugin.php:471 -msgid "This action is not available under your subscription plan." -msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar." - -#: include/conversation.php:206 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s" - -#: include/conversation.php:290 -msgid "post/item" -msgstr "Nachricht/Beitrag" - -#: include/conversation.php:291 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert" - -#: include/conversation.php:771 -msgid "remove" -msgstr "löschen" - -#: include/conversation.php:775 -msgid "Delete Selected Items" -msgstr "Lösche die markierten Beiträge" - -#: include/conversation.php:874 -msgid "Follow Thread" -msgstr "Folge der Unterhaltung" - -#: include/conversation.php:875 include/Contact.php:233 -msgid "View Status" -msgstr "Pinnwand anschauen" - -#: include/conversation.php:876 include/Contact.php:234 -msgid "View Profile" -msgstr "Profil anschauen" - -#: include/conversation.php:877 include/Contact.php:235 -msgid "View Photos" -msgstr "Bilder anschauen" - -#: include/conversation.php:878 include/Contact.php:236 -#: include/Contact.php:259 -msgid "Network Posts" -msgstr "Netzwerkbeiträge" - -#: include/conversation.php:879 include/Contact.php:237 -#: include/Contact.php:259 -msgid "Edit Contact" -msgstr "Kontakt bearbeiten" - -#: include/conversation.php:880 include/Contact.php:239 -#: include/Contact.php:259 -msgid "Send PM" -msgstr "Private Nachricht senden" - -#: include/conversation.php:881 include/Contact.php:232 -msgid "Poke" -msgstr "Anstupsen" - -#: include/conversation.php:943 -#, php-format -msgid "%s likes this." -msgstr "%s mag das." - -#: include/conversation.php:943 -#, php-format -msgid "%s doesn't like this." -msgstr "%s mag das nicht." - -#: include/conversation.php:948 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d Personen mögen das" - -#: include/conversation.php:951 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d Personen mögen das nicht" - -#: include/conversation.php:965 -msgid "and" -msgstr "und" - -#: include/conversation.php:971 -#, php-format -msgid ", and %d other people" -msgstr " und %d andere" - -#: include/conversation.php:973 -#, php-format -msgid "%s like this." -msgstr "%s mögen das." - -#: include/conversation.php:973 -#, php-format -msgid "%s don't like this." -msgstr "%s mögen das nicht." - -#: include/conversation.php:1000 include/conversation.php:1018 -msgid "Visible to everybody" -msgstr "Für jedermann sichtbar" - -#: include/conversation.php:1002 include/conversation.php:1020 -msgid "Please enter a video link/URL:" -msgstr "Bitte Link/URL zum Video einfügen:" - -#: include/conversation.php:1003 include/conversation.php:1021 -msgid "Please enter an audio link/URL:" -msgstr "Bitte Link/URL zum Audio einfügen:" - -#: include/conversation.php:1004 include/conversation.php:1022 -msgid "Tag term:" -msgstr "Tag:" - -#: include/conversation.php:1006 include/conversation.php:1024 -msgid "Where are you right now?" -msgstr "Wo hältst Du Dich jetzt gerade auf?" - -#: include/conversation.php:1007 -msgid "Delete item(s)?" -msgstr "Einträge löschen?" - -#: include/conversation.php:1076 -msgid "permissions" -msgstr "Zugriffsrechte" - -#: include/conversation.php:1099 -msgid "Post to Groups" -msgstr "Poste an Gruppe" - -#: include/conversation.php:1100 -msgid "Post to Contacts" -msgstr "Poste an Kontakte" - -#: include/conversation.php:1101 -msgid "Private post" -msgstr "Privater Beitrag" - -#: include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Neuen Kontakt hinzufügen" - -#: include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Adresse oder Web-Link eingeben" - -#: include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Beispiel: bob@example.com, http://example.com/barbara" - -#: include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d Einladung verfügbar" -msgstr[1] "%d Einladungen verfügbar" - -#: include/contact_widgets.php:30 -msgid "Find People" -msgstr "Leute finden" - -#: include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" - -#: include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" - -#: include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiel: Robert Morgenstein, Angeln" - -#: include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Zufälliges Profil" - -#: include/contact_widgets.php:71 -msgid "Networks" -msgstr "Netzwerke" - -#: include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Alle Netzwerke" - -#: include/contact_widgets.php:107 include/contact_widgets.php:139 -msgid "Everything" -msgstr "Alles" - -#: include/contact_widgets.php:136 -msgid "Categories" -msgstr "Kategorien" - -#: include/nav.php:73 -msgid "End this session" -msgstr "Diese Sitzung beenden" - -#: include/nav.php:79 -msgid "Your videos" -msgstr "Deine Videos" - -#: include/nav.php:81 -msgid "Your personal notes" -msgstr "Deine persönlichen Notizen" - -#: include/nav.php:92 -msgid "Sign in" -msgstr "Anmelden" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "Homepage" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "Nutzerkonto erstellen" - -#: include/nav.php:114 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: include/nav.php:117 -msgid "Apps" -msgstr "Apps" - -#: include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Addon Anwendungen, Dienstprogramme, Spiele" - -#: include/nav.php:119 -msgid "Search site content" -msgstr "Inhalt der Seite durchsuchen" - -#: include/nav.php:137 -msgid "Conversations on this site" -msgstr "Unterhaltungen auf dieser Seite" - -#: include/nav.php:139 -msgid "Conversations on the network" -msgstr "Unterhaltungen im Netzwerk" - -#: include/nav.php:141 -msgid "Directory" -msgstr "Verzeichnis" - -#: include/nav.php:141 -msgid "People directory" -msgstr "Nutzerverzeichnis" - -#: include/nav.php:143 -msgid "Information" -msgstr "Information" - -#: include/nav.php:143 -msgid "Information about this friendica instance" -msgstr "Informationen zu dieser Friendica Instanz" - -#: include/nav.php:153 -msgid "Conversations from your friends" -msgstr "Unterhaltungen Deiner Kontakte" - -#: include/nav.php:154 -msgid "Network Reset" -msgstr "Netzwerk zurücksetzen" - -#: include/nav.php:154 -msgid "Load Network page with no filters" -msgstr "Netzwerk-Seite ohne Filter laden" - -#: include/nav.php:161 -msgid "Friend Requests" -msgstr "Kontaktanfragen" - -#: include/nav.php:165 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen anzeigen" - -#: include/nav.php:166 -msgid "Mark all system notifications seen" -msgstr "Markiere alle Systembenachrichtigungen als gelesen" - -#: include/nav.php:170 -msgid "Private mail" -msgstr "Private E-Mail" - -#: include/nav.php:171 -msgid "Inbox" -msgstr "Eingang" - -#: include/nav.php:172 -msgid "Outbox" -msgstr "Ausgang" - -#: include/nav.php:176 -msgid "Manage" -msgstr "Verwalten" - -#: include/nav.php:176 -msgid "Manage other pages" -msgstr "Andere Seiten verwalten" - -#: include/nav.php:181 -msgid "Account settings" -msgstr "Kontoeinstellungen" - -#: include/nav.php:184 -msgid "Manage/Edit Profiles" -msgstr "Profile Verwalten/Editieren" - -#: include/nav.php:186 -msgid "Manage/edit friends and contacts" -msgstr "Freunde und Kontakte verwalten/editieren" - -#: include/nav.php:193 -msgid "Site setup and configuration" -msgstr "Einstellungen der Seite und Konfiguration" - -#: include/nav.php:197 -msgid "Navigation" -msgstr "Navigation" - -#: include/nav.php:197 -msgid "Site map" -msgstr "Sitemap" - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Unbekannt | Nicht kategorisiert" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Sofort blockieren" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Zwielichtig, Spammer, Selbstdarsteller" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Ist mir bekannt, hab aber keine Meinung" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, wahrscheinlich harmlos" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Seriös, hat mein Vertrauen" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wöchentlich" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Monatlich" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zott" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/Chat" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Diaspora" - -#: include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "StatusNet" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - -#: include/contact_selectors.php:103 -msgid "Redmatrix" -msgstr "Redmatrix" - #: include/enotify.php:18 msgid "Friendica Notification" msgstr "Friendica-Benachrichtigung" @@ -7951,148 +8072,6 @@ msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s) msgid "Please visit %s to approve or reject the request." msgstr "Bitte besuche %s um die Anfrage zu bearbeiten." -#: include/user.php:48 -msgid "An invitation is required." -msgstr "Du benötigst eine Einladung." - -#: include/user.php:53 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht überprüft werden." - -#: include/user.php:61 -msgid "Invalid OpenID url" -msgstr "Ungültige OpenID URL" - -#: include/user.php:82 -msgid "Please enter the required information." -msgstr "Bitte trage die erforderlichen Informationen ein." - -#: include/user.php:96 -msgid "Please use a shorter name." -msgstr "Bitte verwende einen kürzeren Namen." - -#: include/user.php:98 -msgid "Name too short." -msgstr "Der Name ist zu kurz." - -#: include/user.php:113 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein." - -#: include/user.php:118 -msgid "Your email domain is not among those allowed on this site." -msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt." - -#: include/user.php:121 -msgid "Not a valid email address." -msgstr "Keine gültige E-Mail-Adresse." - -#: include/user.php:134 -msgid "Cannot use that email." -msgstr "Konnte diese E-Mail-Adresse nicht verwenden." - -#: include/user.php:140 -msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." -msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen." - -#: include/user.php:146 include/user.php:244 -msgid "Nickname is already registered. Please choose another." -msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." - -#: include/user.php:156 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." - -#: include/user.php:172 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." - -#: include/user.php:230 -msgid "An error occurred during registration. Please try again." -msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal." - -#: include/user.php:265 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal." - -#: include/user.php: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 "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet." - -#: 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 "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s." - -#: include/acl_selectors.php:324 -msgid "Post to Email" -msgstr "An E-Mail senden" - -#: include/acl_selectors.php:329 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist." - -#: include/acl_selectors.php:335 -msgid "Visible to everybody" -msgstr "Für jeden sichtbar" - -#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 -msgid "Image/photo" -msgstr "Bild/Foto" - -#: 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 schrieb den folgenden Beitrag" - -#: include/bbcode.php:1076 include/bbcode.php:1096 -msgid "$1 wrote:" -msgstr "$1 hat geschrieben:" - -#: include/bbcode.php:1121 include/bbcode.php:1122 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" - #: include/oembed.php:220 msgid "Embedded content" msgstr "Eingebetteter Inhalt" @@ -8101,147 +8080,221 @@ msgstr "Eingebetteter Inhalt" msgid "Embedding disabled" msgstr "Einbettungen deaktiviert" -#: include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen." +#: include/uimport.php:94 +msgid "Error decoding account file" +msgstr "Fehler beim Verarbeiten der Account Datei" -#: include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Voreingestellte Gruppe für neue Kontakte" +#: include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?" -#: include/group.php:226 -msgid "Everybody" -msgstr "Alle Kontakte" +#: include/uimport.php:116 include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "Fehler! Konnte den Nickname nicht überprüfen." -#: include/group.php:249 -msgid "edit" -msgstr "bearbeiten" - -#: include/group.php:271 -msgid "Edit group" -msgstr "Gruppe bearbeiten" - -#: include/group.php:272 -msgid "Create a new group" -msgstr "Neue Gruppe erstellen" - -#: include/group.php:275 -msgid "Contacts not in any group" -msgstr "Kontakte in keiner Gruppe" - -#: include/Contact.php:119 -msgid "stopped following" -msgstr "wird nicht mehr gefolgt" - -#: include/Contact.php:238 -msgid "Drop Contact" -msgstr "Kontakt löschen" - -#: include/datetime.php:43 include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Verschiedenes" - -#: include/datetime.php:141 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD oder MM-DD" - -#: include/datetime.php:256 -msgid "never" -msgstr "nie" - -#: include/datetime.php:262 -msgid "less than a second ago" -msgstr "vor weniger als einer Sekunde" - -#: include/datetime.php:272 -msgid "year" -msgstr "Jahr" - -#: include/datetime.php:272 -msgid "years" -msgstr "Jahre" - -#: include/datetime.php:273 -msgid "month" -msgstr "Monat" - -#: include/datetime.php:273 -msgid "months" -msgstr "Monate" - -#: include/datetime.php:274 -msgid "week" -msgstr "Woche" - -#: include/datetime.php:274 -msgid "weeks" -msgstr "Wochen" - -#: include/datetime.php:275 -msgid "day" -msgstr "Tag" - -#: include/datetime.php:275 -msgid "days" -msgstr "Tage" - -#: include/datetime.php:276 -msgid "hour" -msgstr "Stunde" - -#: include/datetime.php:276 -msgid "hours" -msgstr "Stunden" - -#: include/datetime.php:277 -msgid "minute" -msgstr "Minute" - -#: include/datetime.php:277 -msgid "minutes" -msgstr "Minuten" - -#: include/datetime.php:278 -msgid "second" -msgstr "Sekunde" - -#: include/datetime.php:278 -msgid "seconds" -msgstr "Sekunden" - -#: include/datetime.php:287 +#: include/uimport.php:120 include/uimport.php:131 #, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s her" +msgid "User '%s' already exists on this server!" +msgstr "Nutzer '%s' existiert bereits auf diesem Server!" -#: include/network.php:959 -msgid "view full size" -msgstr "Volle Größe anzeigen" +#: include/uimport.php:153 +msgid "User creation error" +msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten" -#: include/dbstructure.php:26 +#: include/uimport.php:173 +msgid "User profile creation error" +msgstr "Fehler beim Anlegen des Nutzerkontos" + +#: include/uimport.php:222 #, php-format -msgid "" -"\n" -"\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein." +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d Kontakt nicht importiert" +msgstr[1] "%d Kontakte nicht importiert" -#: include/dbstructure.php:31 -#, php-format -msgid "" -"The error message is\n" -"[pre]%s[/pre]" -msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" +#: include/uimport.php:292 +msgid "Done. You can now login with your username and password" +msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden" -#: include/dbstructure.php:152 -msgid "Errors encountered creating database tables." -msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." +#: index.php:441 +msgid "toggle mobile" +msgstr "auf/von Mobile Ansicht wechseln" -#: include/dbstructure.php:210 -msgid "Errors encountered performing database changes." -msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." +#: view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)" + +#: view/theme/cleanzero/config.php:84 view/theme/dispy/config.php:73 +#: view/theme/diabook/config.php:151 +msgid "Set font-size for posts and comments" +msgstr "Schriftgröße für Beiträge und Kommentare festlegen" + +#: view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Theme Breite festlegen" + +#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 +msgid "Color scheme" +msgstr "Farbschema" + +#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152 +msgid "Set line-height for posts and comments" +msgstr "Liniengröße für Beiträge und Kommantare festlegen" + +#: view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Farbschema wählen" + +#: view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Ausrichtung" + +#: view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Links" + +#: view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Mitte" + +#: view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Schriftgröße in Beiträgen" + +#: view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Schriftgröße in Eingabefeldern" + +#: view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Auflösung für die Mittelspalte setzen" + +#: view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Wähle Farbschema" + +#: view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Zoomfaktor der Earth Layer" + +#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585 +msgid "Set longitude (X) for Earth Layers" +msgstr "Longitude (X) der Earth Layer" + +#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Latitude (Y) der Earth Layer" + +#: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130 +#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 +#: view/theme/vier/config.php:111 view/theme/vier/theme.php:216 +msgid "Community Pages" +msgstr "Foren" + +#: view/theme/diabook/config.php:159 view/theme/diabook/theme.php:579 +#: view/theme/diabook/theme.php:625 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 +#: view/theme/diabook/theme.php:626 view/theme/vier/config.php:112 +#: view/theme/vier/theme.php:128 +msgid "Community Profiles" +msgstr "Community-Profile" + +#: 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 "Hilfe oder @NewHere" + +#: 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:331 +msgid "Connect Services" +msgstr "Verbinde Dienste" + +#: 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:175 +msgid "Find Friends" +msgstr "Freunde finden" + +#: 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:157 +msgid "Last users" +msgstr "Letzte Nutzer" + +#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 +#: view/theme/diabook/theme.php:631 +msgid "Last photos" +msgstr "Letzte Fotos" + +#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 +#: view/theme/diabook/theme.php:632 +msgid "Last likes" +msgstr "Zuletzt gemocht" + +#: view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "Deine Kontakte" + +#: view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Deine privaten Fotos" + +#: view/theme/diabook/theme.php:524 view/theme/vier/theme.php:176 +msgid "Local Directory" +msgstr "Lokales Verzeichnis" + +#: view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Zoomfaktor der Earth Layer" + +#: view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Rahmen auf der rechten Seite anzeigen/verbergen" + +#: view/theme/vier/config.php:64 +msgid "Comma separated list of helper forums" +msgstr "Komma-Separierte Liste der Helfer-Foren" + +#: view/theme/vier/config.php:110 +msgid "Set style" +msgstr "Stil auswählen" + +#: view/theme/vier/theme.php:220 +msgid "External link to forum" +msgstr "Externer Link zum Forum" + +#: view/theme/vier/theme.php:252 +msgid "Quick Start" +msgstr "Schnell-Start" + +#: view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "greenzero" + +#: view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "purplezero" + +#: view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "easterbunny" + +#: view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "darkzero" + +#: view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "slackr" + +#: view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "Variationen" diff --git a/view/de/strings.php b/view/de/strings.php index 5557162450..620e0e5511 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -5,123 +5,295 @@ function string_plural_select_de($n){ return ($n != 1);; }} ; -$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet."; -$a->strings["Private Message"] = "Private Nachricht"; -$a->strings["Edit"] = "Bearbeiten"; -$a->strings["Select"] = "Auswählen"; -$a->strings["Delete"] = "Löschen"; -$a->strings["save to folder"] = "In Ordner speichern"; -$a->strings["add star"] = "markieren"; -$a->strings["remove star"] = "Markierung entfernen"; -$a->strings["toggle star status"] = "Markierung umschalten"; -$a->strings["starred"] = "markiert"; -$a->strings["ignore thread"] = "Thread ignorieren"; -$a->strings["unignore thread"] = "Thread nicht mehr ignorieren"; -$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten"; -$a->strings["ignored"] = "Ignoriert"; -$a->strings["add tag"] = "Tag hinzufügen"; -$a->strings["I like this (toggle)"] = "Ich mag das (toggle)"; -$a->strings["like"] = "mag ich"; -$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)"; -$a->strings["dislike"] = "mag ich nicht"; -$a->strings["Share this"] = "Weitersagen"; -$a->strings["share"] = "Teilen"; -$a->strings["Categories:"] = "Kategorien:"; -$a->strings["Filed under:"] = "Abgelegt unter:"; -$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten."; -$a->strings["to"] = "zu"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; -$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; -$a->strings["%s from %s"] = "%s von %s"; -$a->strings["Comment"] = "Kommentar"; -$a->strings["Please wait"] = "Bitte warten"; -$a->strings["%d comment"] = array( - 0 => "%d Kommentar", - 1 => "%d Kommentare", +$a->strings["%d contact edited."] = array( + 0 => "%d Kontakt bearbeitet.", + 1 => "%d Kontakte bearbeitet", ); -$a->strings["comment"] = array( - 0 => "Kommentar", - 1 => "Kommentare", -); -$a->strings["show more"] = "mehr anzeigen"; -$a->strings["This is you"] = "Das bist Du"; -$a->strings["Submit"] = "Senden"; -$a->strings["Bold"] = "Fett"; -$a->strings["Italic"] = "Kursiv"; -$a->strings["Underline"] = "Unterstrichen"; -$a->strings["Quote"] = "Zitat"; -$a->strings["Code"] = "Code"; -$a->strings["Image"] = "Bild"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Preview"] = "Vorschau"; -$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können."; -$a->strings["Not Found"] = "Nicht gefunden"; -$a->strings["Page not found."] = "Seite nicht gefunden."; -$a->strings["Permission denied"] = "Zugriff verweigert"; -$a->strings["Permission denied."] = "Zugriff verweigert."; -$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln"; -$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"; -$a->strings["Contact not found."] = "Kontakt nicht gefunden."; -$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet."; -$a->strings["Suggest Friends"] = "Kontakte vorschlagen"; -$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor"; -$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert."; -$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."; -$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden", - 1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden", -); -$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen."; -$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler."; -$a->strings["Profile unavailable."] = "Profil nicht verfügbar."; -$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten."; -$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."; -$a->strings["Invalid locator"] = "Ungültiger Locator"; -$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse."; -$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."; -$a->strings["Unable to resolve your name at the provided location."] = "Konnte Deinen Namen an der angegebenen Stelle nicht finden."; -$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt."; -$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s befreundet bist."; -$a->strings["Invalid profile URL."] = "Ungültige Profil-URL."; -$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL."; +$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen."; +$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden."; +$a->strings["Contact updated."] = "Kontakt aktualisiert."; $a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen."; -$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet."; -$a->strings["Please login to confirm introduction."] = "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an."; -$a->strings["Confirm"] = "Bestätigen"; -$a->strings["Hide this contact"] = "Verberge diesen Kontakt"; -$a->strings["Welcome home %s."] = "Willkommen zurück %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s."; -$a->strings["[Name Withheld]"] = "[Name unterdrückt]"; +$a->strings["Permission denied."] = "Zugriff verweigert."; +$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert"; +$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben"; +$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert"; +$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert"; +$a->strings["Contact has been archived"] = "Kontakt wurde archiviert"; +$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt"; +$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?"; +$a->strings["Yes"] = "Ja"; +$a->strings["Cancel"] = "Abbrechen"; +$a->strings["Contact has been removed."] = "Kontakt wurde entfernt."; +$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft"; +$a->strings["You are sharing with %s"] = "Du teilst mit %s"; +$a->strings["%s is sharing with you"] = "%s teilt mit Dir"; +$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar."; +$a->strings["Never"] = "Niemals"; +$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)"; +$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)"; +$a->strings["Suggest friends"] = "Kontakte vorschlagen"; +$a->strings["Network type: %s"] = "Netzwerktyp: %s"; +$a->strings["%d contact in common"] = array( + 0 => "%d gemeinsamer Kontakt", + 1 => "%d gemeinsame Kontakte", +); +$a->strings["View all contacts"] = "Alle Kontakte anzeigen"; +$a->strings["Unblock"] = "Entsperren"; +$a->strings["Block"] = "Sperren"; +$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten"; +$a->strings["Unignore"] = "Ignorieren aufheben"; +$a->strings["Ignore"] = "Ignorieren"; +$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten"; +$a->strings["Unarchive"] = "Aus Archiv zurückholen"; +$a->strings["Archive"] = "Archivieren"; +$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten"; +$a->strings["Repair"] = "Reparieren"; +$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen"; +$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!"; +$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen"; +$a->strings["Disabled"] = "Deaktiviert"; +$a->strings["Fetch information"] = "Beziehe Information"; +$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte"; +$a->strings["Contact Editor"] = "Kontakt Editor"; +$a->strings["Submit"] = "Senden"; +$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."; +$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen"; +$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten"; +$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]"; +$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten"; +$a->strings["Ignore contact"] = "Ignoriere den Kontakt"; +$a->strings["Repair URL settings"] = "URL Einstellungen reparieren"; +$a->strings["View conversations"] = "Unterhaltungen anzeigen"; +$a->strings["Delete contact"] = "Lösche den Kontakt"; +$a->strings["Last update:"] = "Letzte Aktualisierung: "; +$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; +$a->strings["Update now"] = "Jetzt aktualisieren"; +$a->strings["Connect/Follow"] = "Verbinden/Folgen"; +$a->strings["Currently blocked"] = "Derzeit geblockt"; +$a->strings["Currently ignored"] = "Derzeit ignoriert"; +$a->strings["Currently archived"] = "Momentan archiviert"; +$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor andere"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein"; +$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen"; +$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."; +$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte "; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"; +$a->strings["Profile URL"] = "Profil URL"; +$a->strings["Suggestions"] = "Kontaktvorschläge"; +$a->strings["Suggest potential friends"] = "Freunde vorschlagen"; +$a->strings["All Contacts"] = "Alle Kontakte"; +$a->strings["Show all contacts"] = "Alle Kontakte anzeigen"; +$a->strings["Unblocked"] = "Ungeblockt"; +$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen"; +$a->strings["Blocked"] = "Geblockt"; +$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen"; +$a->strings["Ignored"] = "Ignoriert"; +$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen"; +$a->strings["Archived"] = "Archiviert"; +$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen"; +$a->strings["Hidden"] = "Verborgen"; +$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen"; +$a->strings["Contacts"] = "Kontakte"; +$a->strings["Search your contacts"] = "Suche in deinen Kontakten"; +$a->strings["Finding: "] = "Funde: "; +$a->strings["Find"] = "Finde"; +$a->strings["Update"] = "Aktualisierungen"; +$a->strings["Delete"] = "Löschen"; +$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft"; +$a->strings["is a fan of yours"] = "ist ein Fan von dir"; +$a->strings["you are a fan of"] = "Du bist Fan von"; +$a->strings["Edit contact"] = "Kontakt bearbeiten"; +$a->strings["No profile"] = "Kein Profil"; +$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."; +$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: "; +$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht."; +$a->strings["Permission denied"] = "Zugriff verweigert"; +$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner."; +$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit"; +$a->strings["Profile"] = "Profil"; +$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"; +$a->strings["Visible To"] = "Sichtbar für"; +$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)"; +$a->strings["Item not found."] = "Beitrag nicht gefunden."; $a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert."; -$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten."; -$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt."; +$a->strings["Item has been removed."] = "Eintrag wurde entfernt."; +$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica"; +$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."; +$a->strings["Getting Started"] = "Einstieg"; +$a->strings["Friendica Walk-Through"] = "Friendica Rundgang"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."; +$a->strings["Settings"] = "Einstellungen"; +$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können."; +$a->strings["Upload Profile Photo"] = "Profilbild hochladen"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."; +$a->strings["Edit Your Profile"] = "Editiere dein Profil"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein Standard Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils."; +$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."; +$a->strings["Connecting"] = "Verbindungen knüpfen"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn Du im Augenblick ein Facebook-Konto hast und (optional) Deine Facebook-Freunde und -Unterhaltungen importieren willst."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Wenn dies Dein privater Server ist, könnte die Installation des Facebook Connectors Deinen Umzug ins freie soziale Netz angenehmer gestalten."; +$a->strings["Importing Emails"] = "Emails Importieren"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willst."; +$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein."; +$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis Deiner Friendica Instanz"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."; +$a->strings["Finding New People"] = "Neue Leute kennenlernen"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."; +$a->strings["Groups"] = "Gruppen"; +$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald Du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."; +$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."; +$a->strings["Getting Help"] = "Hilfe bekommen"; +$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."; +$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."; +$a->strings["Login failed."] = "Anmeldung fehlgeschlagen."; +$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl."; +$a->strings["Profile Photos"] = "Profilbilder"; +$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."; +$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden"; +$a->strings["Image exceeds size limit of %s"] = "Bildgröße überschreitet das Limit von %s"; +$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten."; +$a->strings["Upload File:"] = "Datei hochladen:"; +$a->strings["Select a profile:"] = "Profil auswählen:"; +$a->strings["Upload"] = "Hochladen"; +$a->strings["or"] = "oder"; +$a->strings["skip this step"] = "diesen Schritt überspringen"; +$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben"; +$a->strings["Crop Image"] = "Bild zurechtschneiden"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."; +$a->strings["Done Editing"] = "Bearbeitung abgeschlossen"; +$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen."; +$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert."; +$a->strings["photo"] = "Foto"; +$a->strings["status"] = "Status"; +$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s"; +$a->strings["Tag removed"] = "Tag entfernt"; +$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen"; +$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: "; +$a->strings["Remove"] = "Entfernen"; +$a->strings["Subsribing to OStatus contacts"] = "OStatus Kontakten folgen"; +$a->strings["No contact provided."] = "Keine Kontakte gefunden."; +$a->strings["Couldn't fetch information for contact."] = "Konnte die Kontaktinformationen nicht einholen."; +$a->strings["Couldn't fetch friends for contact."] = "Konnte die Kontaktliste des Kontakts nicht abfragen."; +$a->strings["Done"] = "Erledigt"; +$a->strings["success"] = "Erfolg"; +$a->strings["failed"] = "Fehlgeschlagen"; +$a->strings["ignored"] = "Ignoriert"; +$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."; +$a->strings["Save to Folder:"] = "In diesem Ordner speichern:"; +$a->strings["- select -"] = "- auswählen -"; +$a->strings["Save"] = "Speichern"; +$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt."; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "Der Netzwerktype wurde nicht erkannt. Der Kontakt kann nicht hinzugefügt werden."; $a->strings["Please answer the following:"] = "Bitte beantworte folgendes:"; $a->strings["Does %s know you?"] = "Kennt %s Dich?"; $a->strings["No"] = "Nein"; -$a->strings["Yes"] = "Ja"; $a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste."; $a->strings["Your Identity Address:"] = "Adresse Deines Profils:"; $a->strings["Submit Request"] = "Anfrage abschicken"; -$a->strings["Cancel"] = "Abbrechen"; -$a->strings["View Video"] = "Video ansehen"; +$a->strings["Location:"] = "Ort:"; +$a->strings["About:"] = "Über:"; +$a->strings["Tags:"] = "Tags"; +$a->strings["Contact added"] = "Kontakt hinzugefügt"; +$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden."; +$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen."; +$a->strings["Wall Photos"] = "Pinnwand-Bilder"; +$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."; +$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest."; +$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht."; +$a->strings["Group created."] = "Gruppe erstellt."; +$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen."; +$a->strings["Group not found."] = "Gruppe nicht gefunden."; +$a->strings["Group name changed."] = "Gruppenname geändert."; +$a->strings["Save Group"] = "Gruppe speichern"; +$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen."; +$a->strings["Group Name: "] = "Gruppenname:"; +$a->strings["Group removed."] = "Gruppe entfernt."; +$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen."; +$a->strings["Group Editor"] = "Gruppeneditor"; +$a->strings["Members"] = "Mitglieder"; +$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können."; +$a->strings["Applications"] = "Anwendungen"; +$a->strings["No installed applications."] = "Keine Applikationen installiert."; +$a->strings["Profile not found."] = "Profil nicht gefunden."; +$a->strings["Contact not found."] = "Kontakt nicht gefunden."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."; +$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich."; +$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: "; +$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen."; +$a->strings["Remote site reported: "] = "Gegenstelle meldet: "; +$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."; +$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen."; +$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet"; +$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden"; +$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."; +$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."; +$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."; +$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."; +$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden"; +$a->strings["[Name Withheld]"] = "[Name unterdrückt]"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten"; $a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden."; -$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt."; $a->strings["Tips for New Members"] = "Tipps für neue Nutzer"; +$a->strings["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?"; +$a->strings["Delete Video"] = "Video Löschen"; +$a->strings["No videos selected"] = "Keine Videos ausgewählt"; +$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt."; +$a->strings["View Video"] = "Video ansehen"; +$a->strings["View Album"] = "Album betrachten"; +$a->strings["Recent Videos"] = "Neueste Videos"; +$a->strings["Upload New Videos"] = "Neues Video hochladen"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt"; +$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet."; +$a->strings["Suggest Friends"] = "Kontakte vorschlagen"; +$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor"; +$a->strings["Invalid request."] = "Ungültige Anfrage"; +$a->strings["No valid account found."] = "Kein gültiges Konto gefunden."; +$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast."; +$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s"; +$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."; +$a->strings["Password Reset"] = "Passwort zurücksetzen"; +$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt."; +$a->strings["Your new password is"] = "Dein neues Passwort lautet"; +$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann"; +$a->strings["click here to login"] = "hier klicken, um Dich anzumelden"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Du kannst das Passwort in den Einstellungen ändern, sobald Du Dich erfolgreich angemeldet hast."; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)."; +$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."; +$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert"; +$a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."; +$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:"; +$a->strings["Reset"] = "Zurücksetzen"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht"; +$a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten"; +$a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht"; +$a->strings["{0} requested registration"] = "{0} möchte sich registrieren"; +$a->strings["No contacts."] = "Keine Kontakte."; +$a->strings["View Contacts"] = "Kontakte anzeigen"; $a->strings["Invalid request identifier."] = "Invalid request identifier."; $a->strings["Discard"] = "Verwerfen"; -$a->strings["Ignore"] = "Ignorieren"; $a->strings["System"] = "System"; $a->strings["Network"] = "Netzwerk"; $a->strings["Personal"] = "Persönlich"; @@ -132,7 +304,6 @@ $a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen"; $a->strings["Notification type: "] = "Benachrichtigungstyp: "; $a->strings["Friend Suggestion"] = "Kontaktvorschlag"; $a->strings["suggested by %s"] = "vorgeschlagen von %s"; -$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt vor andere"; $a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden"; $a->strings["if applicable"] = "falls anwendbar"; $a->strings["Approve"] = "Genehmigen"; @@ -146,9 +317,6 @@ $a->strings["Sharer"] = "Teilenden"; $a->strings["Fan/Admirer"] = "Fan/Verehrer"; $a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage"; $a->strings["New Follower"] = "Neuer Bewunderer"; -$a->strings["Location:"] = "Ort:"; -$a->strings["About:"] = "Über:"; -$a->strings["Tags:"] = "Tags"; $a->strings["Gender:"] = "Geschlecht:"; $a->strings["No introductions."] = "Keine Kontaktanfragen."; $a->strings["Notifications"] = "Benachrichtigungen"; @@ -165,13 +333,6 @@ $a->strings["No more personal notifications."] = "Keine weiteren persönlichen B $a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen"; $a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen"; $a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen"; -$a->strings["photo"] = "Foto"; -$a->strings["status"] = "Status"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht"; -$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; -$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."; -$a->strings["Login failed."] = "Anmeldung fehlgeschlagen."; $a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:"; $a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"; $a->strings["Source input: "] = "Originaltext:"; @@ -184,6 +345,73 @@ $a->strings["bb2dia2bb: "] = "bb2dia2bb: "; $a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; $a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): "; $a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Nothing new here"] = "Keine Neuigkeiten"; +$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen"; +$a->strings["New Message"] = "Neue Nachricht"; +$a->strings["No recipient selected."] = "Kein Empfänger gewählt."; +$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden."; +$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden."; +$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen."; +$a->strings["Message sent."] = "Nachricht gesendet."; +$a->strings["Messages"] = "Nachrichten"; +$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?"; +$a->strings["Message deleted."] = "Nachricht gelöscht."; +$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; +$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:"; +$a->strings["Send Private Message"] = "Private Nachricht senden"; +$a->strings["To:"] = "An:"; +$a->strings["Subject:"] = "Betreff:"; +$a->strings["Your message:"] = "Deine Nachricht:"; +$a->strings["Upload photo"] = "Foto hochladen"; +$a->strings["Insert web link"] = "Einen Link einfügen"; +$a->strings["Please wait"] = "Bitte warten"; +$a->strings["No messages."] = "Keine Nachrichten."; +$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s"; +$a->strings["You and %s"] = "Du und %s"; +$a->strings["%s and You"] = "%s und Du"; +$a->strings["Delete conversation"] = "Unterhaltung löschen"; +$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d Nachricht", + 1 => "%d Nachrichten", +); +$a->strings["Message not available."] = "Nachricht nicht verfügbar."; +$a->strings["Delete message"] = "Nachricht löschen"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; +$a->strings["Send Reply"] = "Antwort senden"; +$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"; +$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt."; +$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren."; +$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst."; +$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor"; +$a->strings["No mirroring"] = "Kein Spiegeln"; +$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge"; +$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge"; +$a->strings["Refetch contact data"] = "Kontaktdaten neu laden"; +$a->strings["Name"] = "Name"; +$a->strings["Account Nickname"] = "Konto-Spitzname"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname"; +$a->strings["Account URL"] = "Konto-URL"; +$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen"; +$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen"; +$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen"; +$a->strings["Poll/Feed URL"] = "Pull/Feed-URL"; +$a->strings["New photo from this URL"] = "Neues Foto von dieser URL"; +$a->strings["Remote Self"] = "Entfernte Konten"; +$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."; +$a->strings["Login"] = "Anmeldung"; +$a->strings["The post was created"] = "Der Beitrag wurde angelegt"; +$a->strings["Access denied."] = "Zugriff verweigert."; +$a->strings["People Search - %s"] = "Personensuche - %s"; +$a->strings["Connect"] = "Verbinden"; +$a->strings["View Profile"] = "Profil anschauen"; +$a->strings["No matches"] = "Keine Übereinstimmungen"; +$a->strings["Photos"] = "Bilder"; +$a->strings["Files"] = "Dateien"; +$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind"; $a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert."; $a->strings["Site"] = "Seite"; $a->strings["Users"] = "Nutzer"; @@ -198,7 +426,6 @@ $a->strings["Admin"] = "Administration"; $a->strings["Plugin Features"] = "Plugin Features"; $a->strings["diagnostics"] = "Diagnose"; $a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten"; -$a->strings["Item not found."] = "Beitrag nicht gefunden."; $a->strings["Administration"] = "Administration"; $a->strings["ID"] = "ID"; $a->strings["Recipient Name"] = "Empfänger Name"; @@ -225,13 +452,11 @@ $a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für $a->strings["No community page"] = "Keine Gemeinschaftsseite"; $a->strings["Public postings from users of this site"] = "Öffentliche Beiträge von Nutzer_innen dieser Seite"; $a->strings["Global community page"] = "Globale Gemeinschaftsseite"; -$a->strings["Never"] = "Niemals"; $a->strings["At post arrival"] = "Beim Empfang von Nachrichten"; $a->strings["Frequently"] = "immer wieder"; $a->strings["Hourly"] = "Stündlich"; $a->strings["Twice daily"] = "Zweimal täglich"; $a->strings["Daily"] = "Täglich"; -$a->strings["Disabled"] = "Deaktiviert"; $a->strings["Users, Global Contacts"] = "Nutzer, globale Kontakte"; $a->strings["Users, Global Contacts/fallback"] = "Nutzer, globale Kontakte / Fallback"; $a->strings["One month"] = "ein Monat"; @@ -422,12 +647,9 @@ $a->strings["select all"] = "Alle auswählen"; $a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten"; $a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung"; $a->strings["Request date"] = "Anfragedatum"; -$a->strings["Name"] = "Name"; $a->strings["Email"] = "E-Mail"; $a->strings["No registrations."] = "Keine Neuanmeldungen."; $a->strings["Deny"] = "Verwehren"; -$a->strings["Block"] = "Sperren"; -$a->strings["Unblock"] = "Entsperren"; $a->strings["Site admin"] = "Seitenadministrator"; $a->strings["Account expired"] = "Account ist abgelaufen"; $a->strings["New User"] = "Neuer Nutzer"; @@ -447,7 +669,6 @@ $a->strings["Plugin %s enabled."] = "Plugin %s aktiviert."; $a->strings["Disable"] = "Ausschalten"; $a->strings["Enable"] = "Einschalten"; $a->strings["Toggle"] = "Umschalten"; -$a->strings["Settings"] = "Einstellungen"; $a->strings["Author: "] = "Autor:"; $a->strings["Maintainer: "] = "Betreuer:"; $a->strings["No themes found."] = "Keine Themen gefunden."; @@ -460,85 +681,82 @@ $a->strings["Enable Debugging"] = "Protokoll führen"; $a->strings["Log file"] = "Protokolldatei"; $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."; $a->strings["Log level"] = "Protokoll-Level"; -$a->strings["Update now"] = "Jetzt aktualisieren"; $a->strings["Close"] = "Schließen"; $a->strings["FTP Host"] = "FTP Host"; $a->strings["FTP Path"] = "FTP Pfad"; $a->strings["FTP User"] = "FTP Nutzername"; $a->strings["FTP Password"] = "FTP Passwort"; -$a->strings["New Message"] = "Neue Nachricht"; -$a->strings["No recipient selected."] = "Kein Empfänger gewählt."; -$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden."; -$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden."; -$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen."; -$a->strings["Message sent."] = "Nachricht gesendet."; -$a->strings["Messages"] = "Nachrichten"; -$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?"; -$a->strings["Message deleted."] = "Nachricht gelöscht."; -$a->strings["Conversation removed."] = "Unterhaltung gelöscht."; -$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:"; -$a->strings["Send Private Message"] = "Private Nachricht senden"; -$a->strings["To:"] = "An:"; -$a->strings["Subject:"] = "Betreff:"; -$a->strings["Your message:"] = "Deine Nachricht:"; -$a->strings["Upload photo"] = "Foto hochladen"; -$a->strings["Insert web link"] = "Einen Link einfügen"; -$a->strings["No messages."] = "Keine Nachrichten."; -$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s"; -$a->strings["You and %s"] = "Du und %s"; -$a->strings["%s and You"] = "%s und Du"; -$a->strings["Delete conversation"] = "Unterhaltung löschen"; -$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A"; -$a->strings["%d message"] = array( - 0 => "%d Nachricht", - 1 => "%d Nachrichten", +$a->strings["Search Results For: %s"] = "Suchergebnisse für: %s"; +$a->strings["Remove term"] = "Begriff entfernen"; +$a->strings["Saved Searches"] = "Gespeicherte Suchen"; +$a->strings["add"] = "hinzufügen"; +$a->strings["Commented Order"] = "Neueste Kommentare"; +$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren"; +$a->strings["Posted Order"] = "Neueste Beiträge"; +$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren"; +$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht"; +$a->strings["New"] = "Neue"; +$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum"; +$a->strings["Shared Links"] = "Geteilte Links"; +$a->strings["Interesting Links"] = "Interessante Links"; +$a->strings["Starred"] = "Markierte"; +$a->strings["Favourite Posts"] = "Favorisierte Beiträge"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.", + 1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.", ); -$a->strings["Message not available."] = "Nachricht nicht verfügbar."; -$a->strings["Delete message"] = "Nachricht löschen"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; -$a->strings["Send Reply"] = "Antwort senden"; -$a->strings["Item not found"] = "Beitrag nicht gefunden"; -$a->strings["Edit post"] = "Beitrag bearbeiten"; -$a->strings["Save"] = "Speichern"; -$a->strings["upload photo"] = "Bild hochladen"; -$a->strings["Attach file"] = "Datei anhängen"; -$a->strings["attach file"] = "Datei anhängen"; -$a->strings["web link"] = "Weblink"; -$a->strings["Insert video link"] = "Video-Adresse einfügen"; -$a->strings["video link"] = "Video-Link"; -$a->strings["Insert audio link"] = "Audio-Adresse einfügen"; -$a->strings["audio link"] = "Audio-Link"; -$a->strings["Set your location"] = "Deinen Standort festlegen"; -$a->strings["set location"] = "Ort setzen"; -$a->strings["Clear browser location"] = "Browser-Standort leeren"; -$a->strings["clear location"] = "Ort löschen"; -$a->strings["Permission settings"] = "Berechtigungseinstellungen"; -$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen"; -$a->strings["Public post"] = "Öffentlicher Beitrag"; -$a->strings["Set title"] = "Titel setzen"; -$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com"; -$a->strings["Profile not found."] = "Profil nicht gefunden."; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."; -$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich."; -$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: "; -$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen."; -$a->strings["Remote site reported: "] = "Gegenstelle meldet: "; -$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."; -$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen."; -$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet"; -$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden"; -$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."; -$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."; -$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."; -$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."; -$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden"; -$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten"; +$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."; +$a->strings["No such group"] = "Es gibt keine solche Gruppe"; +$a->strings["Group is empty"] = "Gruppe ist leer"; +$a->strings["Group: %s"] = "Gruppe: %s"; +$a->strings["Contact: %s"] = "Kontakt: %s"; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."; +$a->strings["Invalid contact."] = "Ungültiger Kontakt."; +$a->strings["Friends of %s"] = "Freunde von %s"; +$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen."; $a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt."; $a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."; +$a->strings["Sun"] = "So"; +$a->strings["Mon"] = "Mo"; +$a->strings["Tue"] = "Di"; +$a->strings["Wed"] = "Mi"; +$a->strings["Thu"] = "Do"; +$a->strings["Fri"] = "Fr"; +$a->strings["Sat"] = "Sa"; +$a->strings["Sunday"] = "Sonntag"; +$a->strings["Monday"] = "Montag"; +$a->strings["Tuesday"] = "Dienstag"; +$a->strings["Wednesday"] = "Mittwoch"; +$a->strings["Thursday"] = "Donnerstag"; +$a->strings["Friday"] = "Freitag"; +$a->strings["Saturday"] = "Samstag"; +$a->strings["Jan"] = "Jan"; +$a->strings["Feb"] = "Feb"; +$a->strings["Mar"] = "März"; +$a->strings["Apr"] = "Apr"; +$a->strings["May"] = "Mai"; +$a->strings["Jun"] = "Jun"; +$a->strings["Jul"] = "Juli"; +$a->strings["Aug"] = "Aug"; +$a->strings["Sept"] = "Sep"; +$a->strings["Oct"] = "Okt"; +$a->strings["Nov"] = "Nov"; +$a->strings["Dec"] = "Dez"; +$a->strings["January"] = "Januar"; +$a->strings["February"] = "Februar"; +$a->strings["March"] = "März"; +$a->strings["April"] = "April"; +$a->strings["June"] = "Juni"; +$a->strings["July"] = "Juli"; +$a->strings["August"] = "August"; +$a->strings["September"] = "September"; +$a->strings["October"] = "Oktober"; +$a->strings["November"] = "November"; +$a->strings["December"] = "Dezember"; +$a->strings["today"] = "Heute"; +$a->strings["month"] = "Monat"; +$a->strings["week"] = "Woche"; +$a->strings["day"] = "Tag"; $a->strings["l, F j"] = "l, F j"; $a->strings["Edit event"] = "Veranstaltung bearbeiten"; $a->strings["link to source"] = "Link zum Originalbeitrag"; @@ -556,306 +774,136 @@ $a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpasse $a->strings["Description:"] = "Beschreibung"; $a->strings["Title:"] = "Titel:"; $a->strings["Share this event"] = "Veranstaltung teilen"; -$a->strings["Photos"] = "Bilder"; -$a->strings["Files"] = "Dateien"; -$a->strings["Welcome to %s"] = "Willkommen zu %s"; -$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar."; -$a->strings["Visible to:"] = "Sichtbar für:"; +$a->strings["Preview"] = "Vorschau"; +$a->strings["Select"] = "Auswählen"; +$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten."; +$a->strings["%s from %s"] = "%s von %s"; +$a->strings["View in context"] = "Im Zusammenhang betrachten"; +$a->strings["%d comment"] = array( + 0 => "%d Kommentar", + 1 => "%d Kommentare", +); +$a->strings["comment"] = array( + 0 => "Kommentar", + 1 => "Kommentare", +); +$a->strings["show more"] = "mehr anzeigen"; +$a->strings["Private Message"] = "Private Nachricht"; +$a->strings["I like this (toggle)"] = "Ich mag das (toggle)"; +$a->strings["like"] = "mag ich"; +$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)"; +$a->strings["dislike"] = "mag ich nicht"; +$a->strings["Share this"] = "Weitersagen"; +$a->strings["share"] = "Teilen"; +$a->strings["This is you"] = "Das bist Du"; +$a->strings["Comment"] = "Kommentar"; +$a->strings["Bold"] = "Fett"; +$a->strings["Italic"] = "Kursiv"; +$a->strings["Underline"] = "Unterstrichen"; +$a->strings["Quote"] = "Zitat"; +$a->strings["Code"] = "Code"; +$a->strings["Image"] = "Bild"; +$a->strings["Link"] = "Link"; +$a->strings["Video"] = "Video"; +$a->strings["Edit"] = "Bearbeiten"; +$a->strings["add star"] = "markieren"; +$a->strings["remove star"] = "Markierung entfernen"; +$a->strings["toggle star status"] = "Markierung umschalten"; +$a->strings["starred"] = "markiert"; +$a->strings["add tag"] = "Tag hinzufügen"; +$a->strings["save to folder"] = "In Ordner speichern"; +$a->strings["to"] = "zu"; +$a->strings["Wall-to-Wall"] = "Wall-to-Wall"; +$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:"; +$a->strings["Remove My Account"] = "Konto löschen"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."; +$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup"; +$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert."; +$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden."; +$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\"."; +$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet."; +$a->strings["System check"] = "Systemtest"; +$a->strings["Check again"] = "Noch einmal testen"; +$a->strings["Database connection"] = "Datenbankverbindung"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."; +$a->strings["Database Server Name"] = "Datenbank-Server"; +$a->strings["Database Login Name"] = "Datenbank-Nutzer"; +$a->strings["Database Login Password"] = "Datenbank-Passwort"; +$a->strings["Database Name"] = "Datenbank-Name"; +$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."; +$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite"; +$a->strings["Site settings"] = "Server-Einstellungen"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'"; +$a->strings["PHP executable path"] = "Pfad zu PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."; +$a->strings["Command line PHP"] = "Kommandozeilen-PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"; +$a->strings["Found PHP version: "] = "Gefundene PHP Version:"; +$a->strings["PHP cli binary"] = "PHP CLI Binary"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."; +$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."; +$a->strings["Generate encryption keys"] = "Schlüssel erzeugen"; +$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul"; +$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul"; +$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul"; +$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul"; +$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul"; +$a->strings["mcrypt PHP module"] = "PHP mcrypt Modul"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."; +$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."; +$a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das mcrypt Modul von PHP ist nicht installiert"; +$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."; +$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."; +$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."; +$a->strings["Url rewrite is working"] = "URL rewrite funktioniert"; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."; +$a->strings["

    What next

    "] = "

    Wie geht es weiter?

    "; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."; $a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."; $a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen."; $a->strings["No recipient."] = "Kein Empfänger."; $a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."; -$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]"; -$a->strings["Edit contact"] = "Kontakt bearbeiten"; -$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind"; -$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version"; -$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist"; -$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren."; -$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; -$a->strings["the bugtracker at github"] = "dem Bugtracker auf github"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"; -$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps"; -$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert"; -$a->strings["Remove My Account"] = "Konto löschen"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."; -$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:"; -$a->strings["Invalid request."] = "Ungültige Anfrage"; -$a->strings["Image exceeds size limit of %s"] = "Bildgröße überschreitet das Limit von %s"; -$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten."; -$a->strings["Wall Photos"] = "Pinnwand-Bilder"; -$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert."; -$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren"; -$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"; -$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt"; -$a->strings["Contact Photos"] = "Kontaktbilder"; -$a->strings["Photo Albums"] = "Fotoalben"; -$a->strings["Recent Photos"] = "Neueste Fotos"; -$a->strings["Upload New Photos"] = "Neue Fotos hochladen"; -$a->strings["everybody"] = "jeder"; -$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar"; -$a->strings["Profile Photos"] = "Profilbilder"; -$a->strings["Album not found."] = "Album nicht gefunden."; -$a->strings["Delete Album"] = "Album löschen"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"; -$a->strings["Delete Photo"] = "Foto löschen"; -$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt"; -$a->strings["a photo"] = "einem Foto"; -$a->strings["Image file is empty."] = "Bilddatei ist leer."; -$a->strings["No photos selected"] = "Keine Bilder ausgewählt"; -$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt."; -$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."; -$a->strings["Upload Photos"] = "Bilder hochladen"; -$a->strings["New album name: "] = "Name des neuen Albums: "; -$a->strings["or existing album name: "] = "oder existierender Albumname: "; -$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen"; -$a->strings["Permissions"] = "Berechtigungen"; -$a->strings["Show to Groups"] = "Zeige den Gruppen"; -$a->strings["Show to Contacts"] = "Zeige den Kontakten"; -$a->strings["Private Photo"] = "Privates Foto"; -$a->strings["Public Photo"] = "Öffentliches Foto"; -$a->strings["Edit Album"] = "Album bearbeiten"; -$a->strings["Show Newest First"] = "Zeige neueste zuerst"; -$a->strings["Show Oldest First"] = "Zeige älteste zuerst"; -$a->strings["View Photo"] = "Foto betrachten"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."; -$a->strings["Photo not available"] = "Foto nicht verfügbar"; -$a->strings["View photo"] = "Fotos ansehen"; -$a->strings["Edit photo"] = "Foto bearbeiten"; -$a->strings["Use as profile photo"] = "Als Profilbild verwenden"; -$a->strings["View Full Size"] = "Betrachte Originalgröße"; -$a->strings["Tags: "] = "Tags: "; -$a->strings["[Remove any tag]"] = "[Tag entfernen]"; -$a->strings["New album name"] = "Name des neuen Albums"; -$a->strings["Caption"] = "Bildunterschrift"; -$a->strings["Add a Tag"] = "Tag hinzufügen"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["Do not rotate"] = "Nicht rotieren"; -$a->strings["Rotate CW (right)"] = "Drehen US (rechts)"; -$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; -$a->strings["Private photo"] = "Privates Foto"; -$a->strings["Public photo"] = "Öffentliches Foto"; -$a->strings["Share"] = "Teilen"; -$a->strings["View Album"] = "Album betrachten"; -$a->strings["No profile"] = "Kein Profil"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; -$a->strings["Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."; -$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; -$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."; -$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): "; -$a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"; -$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; -$a->strings["Your invitation ID: "] = "ID Deiner Einladung: "; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): "; -$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: "; -$a->strings["New Password:"] = "Neues Passwort:"; -$a->strings["Leave empty for an auto generated password."] = "Leer lassen um das Passwort automatisch zu generieren."; -$a->strings["Confirm:"] = "Bestätigen:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@\$sitename' sein."; -$a->strings["Choose a nickname: "] = "Spitznamen wählen: "; -$a->strings["Register"] = "Registrieren"; -$a->strings["Import"] = "Import"; -$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz"; -$a->strings["No valid account found."] = "Kein gültiges Konto gefunden."; -$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast."; -$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s"; -$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."; -$a->strings["Password Reset"] = "Passwort zurücksetzen"; -$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt."; -$a->strings["Your new password is"] = "Dein neues Passwort lautet"; -$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann"; -$a->strings["click here to login"] = "hier klicken, um Dich anzumelden"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Du kannst das Passwort in den Einstellungen ändern, sobald Du Dich erfolgreich angemeldet hast."; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)."; -$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."; -$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert"; -$a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."; -$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:"; -$a->strings["Reset"] = "Zurücksetzen"; -$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet"; -$a->strings["Item not available."] = "Beitrag nicht verfügbar."; -$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden."; -$a->strings["Applications"] = "Anwendungen"; -$a->strings["No installed applications."] = "Keine Applikationen installiert."; $a->strings["Help:"] = "Hilfe:"; $a->strings["Help"] = "Hilfe"; -$a->strings["%d contact edited."] = array( - 0 => "%d Kontakt bearbeitet.", - 1 => "%d Kontakte bearbeitet", -); -$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen."; -$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden."; -$a->strings["Contact updated."] = "Kontakt aktualisiert."; -$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert"; -$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben"; -$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert"; -$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert"; -$a->strings["Contact has been archived"] = "Kontakt wurde archiviert"; -$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt"; -$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?"; -$a->strings["Contact has been removed."] = "Kontakt wurde entfernt."; -$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft"; -$a->strings["You are sharing with %s"] = "Du teilst mit %s"; -$a->strings["%s is sharing with you"] = "%s teilt mit Dir"; -$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar."; -$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)"; -$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)"; -$a->strings["Suggest friends"] = "Kontakte vorschlagen"; -$a->strings["Network type: %s"] = "Netzwerktyp: %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d gemeinsamer Kontakt", - 1 => "%d gemeinsame Kontakte", -); -$a->strings["View all contacts"] = "Alle Kontakte anzeigen"; -$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten"; -$a->strings["Unignore"] = "Ignorieren aufheben"; -$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten"; -$a->strings["Unarchive"] = "Aus Archiv zurückholen"; -$a->strings["Archive"] = "Archivieren"; -$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten"; -$a->strings["Repair"] = "Reparieren"; -$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen"; -$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!"; -$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen"; -$a->strings["Fetch information"] = "Beziehe Information"; -$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte"; -$a->strings["Contact Editor"] = "Kontakt Editor"; -$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."; -$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen"; -$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten"; -$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten"; -$a->strings["Ignore contact"] = "Ignoriere den Kontakt"; -$a->strings["Repair URL settings"] = "URL Einstellungen reparieren"; -$a->strings["View conversations"] = "Unterhaltungen anzeigen"; -$a->strings["Delete contact"] = "Lösche den Kontakt"; -$a->strings["Last update:"] = "Letzte Aktualisierung: "; -$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; -$a->strings["Currently blocked"] = "Derzeit geblockt"; -$a->strings["Currently ignored"] = "Derzeit ignoriert"; -$a->strings["Currently archived"] = "Momentan archiviert"; -$a->strings["Replies/likes to your public posts may still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein"; -$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen"; -$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."; -$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte "; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"; -$a->strings["Profile URL"] = "Profil URL"; -$a->strings["Suggestions"] = "Kontaktvorschläge"; -$a->strings["Suggest potential friends"] = "Freunde vorschlagen"; -$a->strings["All Contacts"] = "Alle Kontakte"; -$a->strings["Show all contacts"] = "Alle Kontakte anzeigen"; -$a->strings["Unblocked"] = "Ungeblockt"; -$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen"; -$a->strings["Blocked"] = "Geblockt"; -$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen"; -$a->strings["Ignored"] = "Ignoriert"; -$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen"; -$a->strings["Archived"] = "Archiviert"; -$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen"; -$a->strings["Hidden"] = "Verborgen"; -$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen"; -$a->strings["Contacts"] = "Kontakte"; -$a->strings["Search your contacts"] = "Suche in deinen Kontakten"; -$a->strings["Finding: "] = "Funde: "; -$a->strings["Find"] = "Finde"; -$a->strings["Update"] = "Aktualisierungen"; -$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft"; -$a->strings["is a fan of yours"] = "ist ein Fan von dir"; -$a->strings["you are a fan of"] = "Du bist Fan von"; -$a->strings["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?"; -$a->strings["Delete Video"] = "Video Löschen"; -$a->strings["No videos selected"] = "Keine Videos ausgewählt"; -$a->strings["Recent Videos"] = "Neueste Videos"; -$a->strings["Upload New Videos"] = "Neues Video hochladen"; -$a->strings["Common Friends"] = "Gemeinsame Freunde"; -$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; -$a->strings["You already added this contact."] = "Du hast den Kontakt bereits hinzugefügt."; -$a->strings["Contact added"] = "Kontakt hinzugefügt"; -$a->strings["Login"] = "Anmeldung"; -$a->strings["The post was created"] = "Der Beitrag wurde angelegt"; -$a->strings["Move account"] = "Account umziehen"; -$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"; -$a->strings["Account file"] = "Account Datei"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s"; -$a->strings["Friends of %s"] = "Freunde von %s"; -$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen."; -$a->strings["Tag removed"] = "Tag entfernt"; -$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen"; -$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: "; -$a->strings["Remove"] = "Entfernen"; -$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica"; -$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."; -$a->strings["Getting Started"] = "Einstieg"; -$a->strings["Friendica Walk-Through"] = "Friendica Rundgang"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der Quick Start Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."; -$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter Einstellungen dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können."; -$a->strings["Profile"] = "Profil"; -$a->strings["Upload Profile Photo"] = "Profilbild hochladen"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."; -$a->strings["Edit Your Profile"] = "Editiere dein Profil"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein Standard Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils."; -$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."; -$a->strings["Connecting"] = "Verbindungen knüpfen"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn Du im Augenblick ein Facebook-Konto hast und (optional) Deine Facebook-Freunde und -Unterhaltungen importieren willst."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Wenn dies Dein privater Server ist, könnte die Installation des Facebook Connectors Deinen Umzug ins freie soziale Netz angenehmer gestalten."; -$a->strings["Importing Emails"] = "Emails Importieren"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willst."; -$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten Neuen Kontakt hinzufügen ein."; -$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis Deiner Friendica Instanz"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."; -$a->strings["Finding New People"] = "Neue Leute kennenlernen"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."; -$a->strings["Groups"] = "Gruppen"; -$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald Du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."; -$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."; -$a->strings["Getting Help"] = "Hilfe bekommen"; -$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."; -$a->strings["Remove term"] = "Begriff entfernen"; -$a->strings["Saved Searches"] = "Gespeicherte Suchen"; -$a->strings["Search"] = "Suche"; +$a->strings["Not Found"] = "Nicht gefunden"; +$a->strings["Page not found."] = "Seite nicht gefunden."; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen"; +$a->strings["Welcome to %s"] = "Willkommen zu %s"; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."; +$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?"; +$a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s"; +$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen."; +$a->strings["Profile Match"] = "Profilübereinstimmungen"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."; +$a->strings["is interested in:"] = "ist interessiert an:"; +$a->strings["link"] = "Link"; +$a->strings["Not available."] = "Nicht verfügbar."; +$a->strings["Community"] = "Gemeinschaft"; $a->strings["No results."] = "Keine Ergebnisse."; -$a->strings["Items tagged with: %s"] = "Beiträge markiert mit: %s"; -$a->strings["Search results for: %s"] = "Suchergebnisse für: %s"; -$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht."; -$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse."; -$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."; -$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen."; -$a->strings["%d message sent."] = array( - 0 => "%d Nachricht gesendet.", - 1 => "%d Nachrichten gesendet.", -); -$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."; -$a->strings["Send invitations"] = "Einladungen senden"; -$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"; +$a->strings["everybody"] = "jeder"; $a->strings["Additional features"] = "Zusätzliche Features"; $a->strings["Display"] = "Anzeige"; $a->strings["Social Networks"] = "Soziale Netzwerke"; @@ -905,6 +953,7 @@ $a->strings["Your legacy GNU Social account"] = "Dein alter 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."] = "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden."; $a->strings["Repair OStatus subscriptions"] = "OStatus Abonnements reparieren"; $a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s"; +$a->strings["Diaspora"] = "Diaspora"; $a->strings["enabled"] = "eingeschaltet"; $a->strings["disabled"] = "ausgeschaltet"; $a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)"; @@ -933,6 +982,8 @@ $a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die p $a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge"; $a->strings["Number of items to display per page when viewed from mobile device:"] = "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"; $a->strings["Don't show emoticons"] = "Keine Smilies anzeigen"; +$a->strings["Calendar"] = "Kalender"; +$a->strings["Beginning of week:"] = "Wochenbeginn:"; $a->strings["Don't show notices"] = "Info-Popups nicht anzeigen"; $a->strings["Infinite scroll"] = "Endloses Scrollen"; $a->strings["Automatic updates only at the top of the network page"] = "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist."; @@ -973,6 +1024,8 @@ $a->strings["Expire photos:"] = "Fotos verfallen lassen:"; $a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen:"; $a->strings["Account Settings"] = "Kontoeinstellungen"; $a->strings["Password Settings"] = "Passwort-Einstellungen"; +$a->strings["New Password:"] = "Neues Passwort:"; +$a->strings["Confirm:"] = "Bestätigen:"; $a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"; $a->strings["Current Password:"] = "Aktuelles Passwort:"; $a->strings["Your current password to confirm the changes"] = "Dein aktuelles Passwort um die Änderungen zu bestätigen"; @@ -988,6 +1041,8 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Freundschafts $a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)"; $a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge"; $a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)"; +$a->strings["Show to Groups"] = "Zeige den Gruppen"; +$a->strings["Show to Contacts"] = "Zeige den Kontakten"; $a->strings["Default Private Post"] = "Privater Standardbeitrag"; $a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag"; $a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge"; @@ -1015,10 +1070,97 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ve $a->strings["Relocate"] = "Umziehen"; $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button."; $a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden"; -$a->strings["Item has been removed."] = "Eintrag wurde entfernt."; -$a->strings["People Search - %s"] = "Personensuche - %s"; -$a->strings["Connect"] = "Verbinden"; -$a->strings["No matches"] = "Keine Übereinstimmungen"; +$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."; +$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden", + 1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden", +); +$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen."; +$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler."; +$a->strings["Profile unavailable."] = "Profil nicht verfügbar."; +$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten."; +$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."; +$a->strings["Invalid locator"] = "Ungültiger Locator"; +$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse."; +$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."; +$a->strings["Unable to resolve your name at the provided location."] = "Konnte Deinen Namen an der angegebenen Stelle nicht finden."; +$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt."; +$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s befreundet bist."; +$a->strings["Invalid profile URL."] = "Ungültige Profil-URL."; +$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL."; +$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet."; +$a->strings["Please login to confirm introduction."] = "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an."; +$a->strings["Confirm"] = "Bestätigen"; +$a->strings["Hide this contact"] = "Verberge diesen Kontakt"; +$a->strings["Welcome home %s."] = "Willkommen zurück %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s."; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten."; +$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste."; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; +$a->strings["Failed to send email message. Here your accout details:
    login: %s
    password: %s

    You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."; +$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; +$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."; +$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): "; +$a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"; +$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; +$a->strings["Your invitation ID: "] = "ID Deiner Einladung: "; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): "; +$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: "; +$a->strings["Leave empty for an auto generated password."] = "Leer lassen um das Passwort automatisch zu generieren."; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird 'spitzname@\$sitename' sein."; +$a->strings["Choose a nickname: "] = "Spitznamen wählen: "; +$a->strings["Register"] = "Registrieren"; +$a->strings["Import"] = "Import"; +$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz"; +$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet"; +$a->strings["Only logged in users are permitted to perform a search."] = "Nur eingeloggten Benutzern ist das Suchen gestattet."; +$a->strings["Too Many Requests"] = "Zu viele Abfragen"; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet."; +$a->strings["Search"] = "Suche"; +$a->strings["Items tagged with: %s"] = "Beiträge markiert mit: %s"; +$a->strings["Search results for: %s"] = "Suchergebnisse für: %s"; +$a->strings["Global Directory"] = "Weltweites Verzeichnis"; +$a->strings["Find on this site"] = "Auf diesem Server suchen"; +$a->strings["Site Directory"] = "Verzeichnis"; +$a->strings["Age: "] = "Alter: "; +$a->strings["Gender: "] = "Geschlecht:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein)."; +$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden."; +$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite"; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"; +$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager"; +$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite"; +$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte"; +$a->strings["Add"] = "Hinzufügen"; +$a->strings["No entries."] = "Keine Einträge."; +$a->strings["Common Friends"] = "Gemeinsame Freunde"; +$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; +$a->strings["Export account"] = "Account exportieren"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."; +$a->strings["Export all"] = "Alles exportieren"; +$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s"; +$a->strings["Mood"] = "Stimmung"; +$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden"; +$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?"; +$a->strings["Friend Suggestions"] = "Kontaktvorschläge"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."; +$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen"; $a->strings["Profile deleted."] = "Profil gelöscht."; $a->strings["Profile-"] = "Profil-"; $a->strings["New profile created."] = "Neues Profil angelegt."; @@ -1093,78 +1235,47 @@ $a->strings["Love/romance"] = "Liebe/Romantik"; $a->strings["Work/employment"] = "Arbeit/Anstellung"; $a->strings["School/education"] = "Schule/Ausbildung"; $a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Dies ist Dein öffentliches Profil.
    Es könnte für jeden Nutzer des Internets sichtbar sein."; -$a->strings["Age: "] = "Alter: "; $a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile"; $a->strings["Change profile photo"] = "Profilbild ändern"; $a->strings["Create New Profile"] = "Neues Profil anlegen"; $a->strings["Profile Image"] = "Profilbild"; $a->strings["visible to everybody"] = "sichtbar für jeden"; $a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten"; -$a->strings["link"] = "Link"; -$a->strings["Export account"] = "Account exportieren"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."; -$a->strings["Export all"] = "Alles exportieren"; -$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."; -$a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten"; -$a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht"; -$a->strings["{0} requested registration"] = "{0} möchte sich registrieren"; -$a->strings["Nothing new here"] = "Keine Neuigkeiten"; -$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen"; -$a->strings["Not available."] = "Nicht verfügbar."; -$a->strings["Community"] = "Gemeinschaft"; -$a->strings["Save to Folder:"] = "In diesem Ordner speichern:"; -$a->strings["- select -"] = "- auswählen -"; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."; -$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?"; -$a->strings["File exceeds size limit of %s"] = "Die Datei ist größer als das erlaubte Limit von %s"; -$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen."; -$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner."; -$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit"; -$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"; -$a->strings["Visible To"] = "Sichtbar für"; -$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)"; -$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?"; -$a->strings["Friend Suggestions"] = "Kontaktvorschläge"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."; -$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen"; -$a->strings["Access denied."] = "Zugriff verweigert."; -$a->strings["Resubsribing to OStatus contacts"] = "Erneuern der OStatus Abonements"; -$a->strings["Error"] = "Fehler"; -$a->strings["Done"] = "Erledigt"; -$a->strings["Keep this window open until done."] = "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist."; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen"; -$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."; -$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: "; -$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden."; -$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite"; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"; -$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager"; -$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite"; -$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte"; -$a->strings["Add"] = "Hinzufügen"; -$a->strings["No entries."] = "Keine Einträge."; -$a->strings["No contacts."] = "Keine Kontakte."; -$a->strings["View Contacts"] = "Kontakte anzeigen"; +$a->strings["Item not found"] = "Beitrag nicht gefunden"; +$a->strings["Edit post"] = "Beitrag bearbeiten"; +$a->strings["upload photo"] = "Bild hochladen"; +$a->strings["Attach file"] = "Datei anhängen"; +$a->strings["attach file"] = "Datei anhängen"; +$a->strings["web link"] = "Weblink"; +$a->strings["Insert video link"] = "Video-Adresse einfügen"; +$a->strings["video link"] = "Video-Link"; +$a->strings["Insert audio link"] = "Audio-Adresse einfügen"; +$a->strings["audio link"] = "Audio-Link"; +$a->strings["Set your location"] = "Deinen Standort festlegen"; +$a->strings["set location"] = "Ort setzen"; +$a->strings["Clear browser location"] = "Browser-Standort leeren"; +$a->strings["clear location"] = "Ort löschen"; +$a->strings["Permission settings"] = "Berechtigungseinstellungen"; +$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen"; +$a->strings["Public post"] = "Öffentlicher Beitrag"; +$a->strings["Set title"] = "Titel setzen"; +$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com"; +$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version"; +$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren."; +$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; +$a->strings["the bugtracker at github"] = "dem Bugtracker auf github"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"; +$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps"; +$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert"; +$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren"; +$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"; +$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"; +$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar."; +$a->strings["Visible to:"] = "Sichtbar für:"; $a->strings["Personal Notes"] = "Persönliche Notizen"; -$a->strings["Poke/Prod"] = "Anstupsen"; -$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen"; -$a->strings["Recipient"] = "Empfänger"; -$a->strings["Choose what you wish to do to recipient"] = "Was willst Du mit dem Empfänger machen:"; -$a->strings["Make this post private"] = "Diesen Beitrag privat machen"; -$a->strings["Global Directory"] = "Weltweites Verzeichnis"; -$a->strings["Find on this site"] = "Auf diesem Server suchen"; -$a->strings["Site Directory"] = "Verzeichnis"; -$a->strings["Gender: "] = "Geschlecht:"; -$a->strings["Status:"] = "Status:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein)."; -$a->strings["Subsribing to OStatus contacts"] = "OStatus Kontakten folgen"; -$a->strings["No contact provided."] = "Keine Kontakte gefunden."; -$a->strings["Couldn't fetch information for contact."] = "Konnte die Kontaktinformationen nicht einholen."; -$a->strings["Couldn't fetch friends for contact."] = "Konnte die Kontaktliste des Kontakts nicht abfragen."; -$a->strings["success"] = "Erfolg"; -$a->strings["failed"] = "Fehlgeschlagen"; $a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i"; $a->strings["Time Conversion"] = "Zeitumrechnung"; $a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."; @@ -1172,226 +1283,90 @@ $a->strings["UTC time: %s"] = "UTC Zeit: %s"; $a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s"; $a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s"; $a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:"; -$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht."; -$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl."; -$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."; -$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden"; -$a->strings["Upload File:"] = "Datei hochladen:"; -$a->strings["Select a profile:"] = "Profil auswählen:"; -$a->strings["Upload"] = "Hochladen"; -$a->strings["or"] = "oder"; -$a->strings["skip this step"] = "diesen Schritt überspringen"; -$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben"; -$a->strings["Crop Image"] = "Bild zurechtschneiden"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."; -$a->strings["Done Editing"] = "Bearbeitung abgeschlossen"; -$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen."; -$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup"; -$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert."; -$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden."; -$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\"."; -$a->strings["Database already in use."] = "Die Datenbank wird bereits verwendet."; -$a->strings["System check"] = "Systemtest"; -$a->strings["Check again"] = "Noch einmal testen"; -$a->strings["Database connection"] = "Datenbankverbindung"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."; -$a->strings["Database Server Name"] = "Datenbank-Server"; -$a->strings["Database Login Name"] = "Datenbank-Nutzer"; -$a->strings["Database Login Password"] = "Datenbank-Passwort"; -$a->strings["Database Name"] = "Datenbank-Name"; -$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."; -$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite"; -$a->strings["Site settings"] = "Server-Einstellungen"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."; -$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe 'Activating scheduled tasks'"; -$a->strings["PHP executable path"] = "Pfad zu PHP"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."; -$a->strings["Command line PHP"] = "Kommandozeilen-PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"; -$a->strings["Found PHP version: "] = "Gefundene PHP Version:"; -$a->strings["PHP cli binary"] = "PHP CLI Binary"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."; -$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."; -$a->strings["Generate encryption keys"] = "Schlüssel erzeugen"; -$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul"; -$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul"; -$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul"; -$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul"; -$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul"; -$a->strings["mcrypt PHP module"] = "PHP mcrypt Modul"; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."; -$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."; -$a->strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das mcrypt Modul von PHP ist nicht installiert"; -$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."; -$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."; -$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar"; -$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."; -$a->strings["Url rewrite is working"] = "URL rewrite funktioniert"; -$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."; -$a->strings["

    What next

    "] = "

    Wie geht es weiter?

    "; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."; +$a->strings["Poke/Prod"] = "Anstupsen"; +$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen"; +$a->strings["Recipient"] = "Empfänger"; +$a->strings["Choose what you wish to do to recipient"] = "Was willst Du mit dem Empfänger machen:"; +$a->strings["Make this post private"] = "Diesen Beitrag privat machen"; +$a->strings["Resubsribing to OStatus contacts"] = "Erneuern der OStatus Abonements"; +$a->strings["Error"] = "Fehler"; +$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht."; +$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse."; +$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."; +$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen."; +$a->strings["%d message sent."] = array( + 0 => "%d Nachricht gesendet.", + 1 => "%d Nachrichten gesendet.", +); +$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."; +$a->strings["Send invitations"] = "Einladungen senden"; +$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"; +$a->strings["Contact Photos"] = "Kontaktbilder"; +$a->strings["Photo Albums"] = "Fotoalben"; +$a->strings["Recent Photos"] = "Neueste Fotos"; +$a->strings["Upload New Photos"] = "Neue Fotos hochladen"; +$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar"; +$a->strings["Album not found."] = "Album nicht gefunden."; +$a->strings["Delete Album"] = "Album löschen"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"; +$a->strings["Delete Photo"] = "Foto löschen"; +$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt"; +$a->strings["a photo"] = "einem Foto"; +$a->strings["Image file is empty."] = "Bilddatei ist leer."; +$a->strings["No photos selected"] = "Keine Bilder ausgewählt"; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."; +$a->strings["Upload Photos"] = "Bilder hochladen"; +$a->strings["New album name: "] = "Name des neuen Albums: "; +$a->strings["or existing album name: "] = "oder existierender Albumname: "; +$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen"; +$a->strings["Permissions"] = "Berechtigungen"; +$a->strings["Private Photo"] = "Privates Foto"; +$a->strings["Public Photo"] = "Öffentliches Foto"; +$a->strings["Edit Album"] = "Album bearbeiten"; +$a->strings["Show Newest First"] = "Zeige neueste zuerst"; +$a->strings["Show Oldest First"] = "Zeige älteste zuerst"; +$a->strings["View Photo"] = "Foto betrachten"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."; +$a->strings["Photo not available"] = "Foto nicht verfügbar"; +$a->strings["View photo"] = "Fotos ansehen"; +$a->strings["Edit photo"] = "Foto bearbeiten"; +$a->strings["Use as profile photo"] = "Als Profilbild verwenden"; +$a->strings["View Full Size"] = "Betrachte Originalgröße"; +$a->strings["Tags: "] = "Tags: "; +$a->strings["[Remove any tag]"] = "[Tag entfernen]"; +$a->strings["New album name"] = "Name des neuen Albums"; +$a->strings["Caption"] = "Bildunterschrift"; +$a->strings["Add a Tag"] = "Tag hinzufügen"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["Do not rotate"] = "Nicht rotieren"; +$a->strings["Rotate CW (right)"] = "Drehen US (rechts)"; +$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; +$a->strings["Private photo"] = "Privates Foto"; +$a->strings["Public photo"] = "Öffentliches Foto"; +$a->strings["Share"] = "Teilen"; +$a->strings["Map"] = "Karte"; $a->strings["Not Extended"] = "Nicht erweitert."; -$a->strings["Group created."] = "Gruppe erstellt."; -$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen."; -$a->strings["Group not found."] = "Gruppe nicht gefunden."; -$a->strings["Group name changed."] = "Gruppenname geändert."; -$a->strings["Save Group"] = "Gruppe speichern"; -$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen."; -$a->strings["Group Name: "] = "Gruppenname:"; -$a->strings["Group removed."] = "Gruppe entfernt."; -$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen."; -$a->strings["Group Editor"] = "Gruppeneditor"; -$a->strings["Members"] = "Mitglieder"; -$a->strings["No such group"] = "Es gibt keine solche Gruppe"; -$a->strings["Group is empty"] = "Gruppe ist leer"; -$a->strings["Group: %s"] = "Gruppe: %s"; -$a->strings["View in context"] = "Im Zusammenhang betrachten"; $a->strings["Account approved."] = "Konto freigegeben."; $a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen"; $a->strings["Please login."] = "Bitte melde Dich an."; -$a->strings["Profile Match"] = "Profilübereinstimmungen"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."; -$a->strings["is interested in:"] = "ist interessiert an:"; -$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden."; -$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen."; -$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden."; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."; -$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest."; -$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht."; -$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s"; -$a->strings["Mood"] = "Stimmung"; -$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden"; -$a->strings["Search Results For: %s"] = "Suchergebnisse für: %s"; -$a->strings["add"] = "hinzufügen"; -$a->strings["Commented Order"] = "Neueste Kommentare"; -$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren"; -$a->strings["Posted Order"] = "Neueste Beiträge"; -$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren"; -$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht"; -$a->strings["New"] = "Neue"; -$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum"; -$a->strings["Shared Links"] = "Geteilte Links"; -$a->strings["Interesting Links"] = "Interessante Links"; -$a->strings["Starred"] = "Markierte"; -$a->strings["Favourite Posts"] = "Favorisierte Beiträge"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.", - 1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."; -$a->strings["Contact: %s"] = "Kontakt: %s"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."; -$a->strings["Invalid contact."] = "Ungültiger Kontakt."; -$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt."; -$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren."; -$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst."; -$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor"; -$a->strings["No mirroring"] = "Kein Spiegeln"; -$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge"; -$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge"; -$a->strings["Refetch contact data"] = "Kontaktdaten neu laden"; -$a->strings["Account Nickname"] = "Konto-Spitzname"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname"; -$a->strings["Account URL"] = "Konto-URL"; -$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen"; -$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen"; -$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen"; -$a->strings["Poll/Feed URL"] = "Pull/Feed-URL"; -$a->strings["New photo from this URL"] = "Neues Foto von dieser URL"; -$a->strings["Remote Self"] = "Entfernte Konten"; -$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."; -$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; -$a->strings["Your profile page"] = "Deine Profilseite"; -$a->strings["Your contacts"] = "Deine Kontakte"; -$a->strings["Your photos"] = "Deine Fotos"; -$a->strings["Your events"] = "Deine Ereignisse"; -$a->strings["Personal notes"] = "Persönliche Notizen"; -$a->strings["Your personal photos"] = "Deine privaten Fotos"; -$a->strings["Community Pages"] = "Foren"; -$a->strings["Community Profiles"] = "Community-Profile"; -$a->strings["Last users"] = "Letzte Nutzer"; -$a->strings["Last likes"] = "Zuletzt gemocht"; -$a->strings["event"] = "Veranstaltung"; -$a->strings["Last photos"] = "Letzte Fotos"; -$a->strings["Find Friends"] = "Freunde finden"; -$a->strings["Local Directory"] = "Lokales Verzeichnis"; -$a->strings["Similar Interests"] = "Ähnliche Interessen"; -$a->strings["Invite Friends"] = "Freunde einladen"; -$a->strings["Earth Layers"] = "Earth Layers"; -$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer"; -$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer"; -$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer"; -$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere"; -$a->strings["Connect Services"] = "Verbinde Dienste"; -$a->strings["don't show"] = "nicht zeigen"; -$a->strings["show"] = "zeigen"; -$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen"; -$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen"; -$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen"; -$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen"; -$a->strings["Set color scheme"] = "Wähle Farbschema"; -$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer"; -$a->strings["Set style"] = "Stil auswählen"; -$a->strings["Set colour scheme"] = "Farbschema wählen"; -$a->strings["default"] = "Standard"; -$a->strings["greenzero"] = "greenzero"; -$a->strings["purplezero"] = "purplezero"; -$a->strings["easterbunny"] = "easterbunny"; -$a->strings["darkzero"] = "darkzero"; -$a->strings["comix"] = "comix"; -$a->strings["slackr"] = "slackr"; -$a->strings["Variations"] = "Variationen"; -$a->strings["Alignment"] = "Ausrichtung"; -$a->strings["Left"] = "Links"; -$a->strings["Center"] = "Mitte"; -$a->strings["Color scheme"] = "Farbschema"; -$a->strings["Posts font size"] = "Schriftgröße in Beiträgen"; -$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern"; -$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"; -$a->strings["Set theme width"] = "Theme Breite festlegen"; -$a->strings["Click here to download"] = "Zum Download hier klicken"; -$a->strings["Create new pull request"] = "Neuer Pull Request"; -$a->strings["Reload active plugins"] = "Aktive Plugins neu laden"; -$a->strings["Drop contact"] = "Kontakt löschen"; -$a->strings["Public projects on this node"] = "Öffentliche Beiträge von Nutzer_innen dieser Seite"; -$a->strings["Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone."] = "Möchtest du das Projekt '%s' löschen?\\n\\nDies kann nicht rückgängig gemacht werden."; -$a->strings["Visibility"] = "Sichtbarkeit"; -$a->strings["Create"] = "Erstellen"; -$a->strings["No pull requests to show"] = "Keine Pull Requests zum Anzeigen vorhanden"; -$a->strings["opened by"] = "geöffnet von"; -$a->strings["closed"] = "Geschlossen"; -$a->strings["merged"] = "merged"; -$a->strings["Projects"] = "Projekte"; -$a->strings["add new"] = "neue hinzufügen"; -$a->strings["delete"] = "löschen"; -$a->strings["Clone this project:"] = "Dieses Projekt clonen"; -$a->strings["New pull request"] = "Neuer Pull Request"; -$a->strings["Can't show you the diff at the moment. Sorry"] = "Entschuldigung, aber ich kann dir die Unterschiede gerade nicht anzeigen."; +$a->strings["Move account"] = "Account umziehen"; +$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"; +$a->strings["Account file"] = "Account Datei"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""; +$a->strings["Item not available."] = "Beitrag nicht verfügbar."; +$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden."; $a->strings["Delete this item?"] = "Diesen Beitrag löschen?"; $a->strings["show fewer"] = "weniger anzeigen"; $a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."; @@ -1406,9 +1381,43 @@ $a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen"; $a->strings["terms of service"] = "Nutzungsbedingungen"; $a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung"; $a->strings["privacy policy"] = "Datenschutzerklärung"; +$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet."; +$a->strings["ignore thread"] = "Thread ignorieren"; +$a->strings["unignore thread"] = "Thread nicht mehr ignorieren"; +$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten"; +$a->strings["Categories:"] = "Kategorien:"; +$a->strings["Filed under:"] = "Abgelegt unter:"; +$a->strings["via"] = "via"; +$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."; +$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]"; +$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."; +$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."; +$a->strings["Logged out."] = "Abgemeldet."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."; +$a->strings["The error message was:"] = "Die Fehlermeldung lautete:"; +$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen"; +$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d Einladung verfügbar", + 1 => "%d Einladungen verfügbar", +); +$a->strings["Find People"] = "Leute finden"; +$a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln"; +$a->strings["Similar Interests"] = "Ähnliche Interessen"; +$a->strings["Random Profile"] = "Zufälliges Profil"; +$a->strings["Invite Friends"] = "Freunde einladen"; +$a->strings["Networks"] = "Netzwerke"; +$a->strings["All Networks"] = "Alle Netzwerke"; +$a->strings["Saved Folders"] = "Gespeicherte Ordner"; +$a->strings["Everything"] = "Alles"; +$a->strings["Categories"] = "Kategorien"; $a->strings["General Features"] = "Allgemeine Features"; $a->strings["Multiple Profiles"] = "Mehrere Profile"; $a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen"; +$a->strings["Photo Location"] = "Aufnahmeort"; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "Die Foto-Metadaten werden ausgelesen. Dadurch kann der Aufnahmeort (wenn vorhanden) in einer Karte angezeigt werden."; $a->strings["Post Composition Features"] = "Beitragserstellung Features"; $a->strings["Richtext Editor"] = "Web-Editor"; $a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren"; @@ -1440,7 +1449,6 @@ $a->strings["Tagging"] = "Tagging"; $a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."; $a->strings["Post Categories"] = "Beitragskategorien"; $a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen"; -$a->strings["Saved Folders"] = "Gespeicherte Ordner"; $a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren"; $a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'"; $a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"; @@ -1448,13 +1456,122 @@ $a->strings["Star Posts"] = "Beiträge Markieren"; $a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"; $a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten"; $a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"; -$a->strings["Logged out."] = "Abgemeldet."; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."; -$a->strings["The error message was:"] = "Die Fehlermeldung lautete:"; -$a->strings["Starts:"] = "Beginnt:"; -$a->strings["Finishes:"] = "Endet:"; +$a->strings["Connect URL missing."] = "Connect-URL fehlt"; +$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."; +$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen."; +$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden."; +$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."; +$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."; +$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen."; +$a->strings["following"] = "folgen"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."; +$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte"; +$a->strings["Everybody"] = "Alle Kontakte"; +$a->strings["edit"] = "bearbeiten"; +$a->strings["Edit group"] = "Gruppe bearbeiten"; +$a->strings["Create a new group"] = "Neue Gruppe erstellen"; +$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe"; +$a->strings["Miscellaneous"] = "Verschiedenes"; +$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD"; +$a->strings["never"] = "nie"; +$a->strings["less than a second ago"] = "vor weniger als einer Sekunde"; +$a->strings["year"] = "Jahr"; +$a->strings["years"] = "Jahre"; +$a->strings["months"] = "Monate"; +$a->strings["weeks"] = "Wochen"; +$a->strings["days"] = "Tage"; +$a->strings["hour"] = "Stunde"; +$a->strings["hours"] = "Stunden"; +$a->strings["minute"] = "Minute"; +$a->strings["minutes"] = "Minuten"; +$a->strings["second"] = "Sekunde"; +$a->strings["seconds"] = "Sekunden"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her"; +$a->strings["%s's birthday"] = "%ss Geburtstag"; +$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s"; +$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden."; +$a->strings["Edit profile"] = "Profil bearbeiten"; +$a->strings["Message"] = "Nachricht"; +$a->strings["Profiles"] = "Profile"; +$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren"; +$a->strings["Network:"] = "Netzwerk"; +$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r"; +$a->strings["F d"] = "d. F"; +$a->strings["[today]"] = "[heute]"; +$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen"; +$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:"; +$a->strings["[No description]"] = "[keine Beschreibung]"; +$a->strings["Event Reminders"] = "Veranstaltungserinnerungen"; +$a->strings["Events this week:"] = "Veranstaltungen diese Woche"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Geburtstag:"; +$a->strings["Age:"] = "Alter:"; +$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s"; +$a->strings["Religion:"] = "Religion:"; +$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:"; +$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:"; +$a->strings["Musical interests:"] = "Musikalische Interessen:"; +$a->strings["Books, literature:"] = "Literatur/Bücher:"; +$a->strings["Television:"] = "Fernsehen:"; +$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:"; +$a->strings["Love/Romance:"] = "Liebesleben:"; +$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:"; +$a->strings["School/education:"] = "Schule/Ausbildung:"; +$a->strings["Status"] = "Status"; +$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; +$a->strings["Profile Details"] = "Profildetails"; +$a->strings["Videos"] = "Videos"; +$a->strings["Events and Calendar"] = "Ereignisse und Kalender"; +$a->strings["Only You Can See This"] = "Nur Du kannst das sehen"; +$a->strings["Post to Email"] = "An E-Mail senden"; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."; +$a->strings["Visible to everybody"] = "Für jeden sichtbar"; +$a->strings["show"] = "zeigen"; +$a->strings["don't show"] = "nicht zeigen"; $a->strings["[no subject]"] = "[kein Betreff]"; -$a->strings[" on Last.fm"] = " bei Last.fm"; +$a->strings["stopped following"] = "wird nicht mehr gefolgt"; +$a->strings["View Status"] = "Pinnwand anschauen"; +$a->strings["View Photos"] = "Bilder anschauen"; +$a->strings["Network Posts"] = "Netzwerkbeiträge"; +$a->strings["Edit Contact"] = "Kontakt bearbeiten"; +$a->strings["Drop Contact"] = "Kontakt löschen"; +$a->strings["Send PM"] = "Private Nachricht senden"; +$a->strings["Poke"] = "Anstupsen"; +$a->strings["Welcome "] = "Willkommen "; +$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch."; +$a->strings["Welcome back "] = "Willkommen zurück "; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."; +$a->strings["event"] = "Veranstaltung"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; +$a->strings["post/item"] = "Nachricht/Beitrag"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert"; +$a->strings["remove"] = "löschen"; +$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; +$a->strings["Follow Thread"] = "Folge der Unterhaltung"; +$a->strings["%s likes this."] = "%s mag das."; +$a->strings["%s doesn't like this."] = "%s mag das nicht."; +$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; +$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; +$a->strings["and"] = "und"; +$a->strings[", and %d other people"] = " und %d andere"; +$a->strings["%s like this."] = "%s mögen das."; +$a->strings["%s don't like this."] = "%s mögen das nicht."; +$a->strings["Visible to everybody"] = "Für jedermann sichtbar"; +$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:"; +$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:"; +$a->strings["Tag term:"] = "Tag:"; +$a->strings["Where are you right now?"] = "Wo hältst Du Dich jetzt gerade auf?"; +$a->strings["Delete item(s)?"] = "Einträge löschen?"; +$a->strings["permissions"] = "Zugriffsrechte"; +$a->strings["Post to Groups"] = "Poste an Gruppe"; +$a->strings["Post to Contacts"] = "Poste an Kontakte"; +$a->strings["Private post"] = "Privater Beitrag"; +$a->strings["view full size"] = "Volle Größe anzeigen"; $a->strings["newer"] = "neuer"; $a->strings["older"] = "älter"; $a->strings["prev"] = "vorige"; @@ -1503,33 +1620,88 @@ $a->strings["frustrated"] = "frustriert"; $a->strings["motivated"] = "motiviert"; $a->strings["relaxed"] = "entspannt"; $a->strings["surprised"] = "überrascht"; -$a->strings["Monday"] = "Montag"; -$a->strings["Tuesday"] = "Dienstag"; -$a->strings["Wednesday"] = "Mittwoch"; -$a->strings["Thursday"] = "Donnerstag"; -$a->strings["Friday"] = "Freitag"; -$a->strings["Saturday"] = "Samstag"; -$a->strings["Sunday"] = "Sonntag"; -$a->strings["January"] = "Januar"; -$a->strings["February"] = "Februar"; -$a->strings["March"] = "März"; -$a->strings["April"] = "April"; -$a->strings["May"] = "Mai"; -$a->strings["June"] = "Juni"; -$a->strings["July"] = "Juli"; -$a->strings["August"] = "August"; -$a->strings["September"] = "September"; -$a->strings["October"] = "Oktober"; -$a->strings["November"] = "November"; -$a->strings["December"] = "Dezember"; $a->strings["bytes"] = "Byte"; $a->strings["Click to open/close"] = "Zum öffnen/schließen klicken"; $a->strings["View on separate page"] = "Auf separater Seite ansehen"; $a->strings["view on separate page"] = "auf separater Seite ansehen"; +$a->strings["default"] = "Standard"; $a->strings["Select an alternate language"] = "Alternative Sprache auswählen"; $a->strings["activity"] = "Aktivität"; $a->strings["post"] = "Beitrag"; $a->strings["Item filed"] = "Beitrag abgelegt"; +$a->strings["Image/photo"] = "Bild/Foto"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["%s wrote the following post"] = "%s schrieb den folgenden Beitrag"; +$a->strings["$1 wrote:"] = "$1 hat geschrieben:"; +$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; +$a->strings["(no subject)"] = "(kein Betreff)"; +$a->strings["noreply"] = "noreply"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."; +$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert"; +$a->strings["Block immediately"] = "Sofort blockieren"; +$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller"; +$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung"; +$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos"; +$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen"; +$a->strings["Weekly"] = "Wöchentlich"; +$a->strings["Monthly"] = "Monatlich"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = "Zott"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/Chat"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Diaspora"; +$a->strings["Statusnet"] = "StatusNet"; +$a->strings["App.net"] = "App.net"; +$a->strings["Redmatrix"] = "Redmatrix"; +$a->strings[" on Last.fm"] = " bei Last.fm"; +$a->strings["Starts:"] = "Beginnt:"; +$a->strings["Finishes:"] = "Endet:"; +$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze Deines Abonnements."; +$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Deinem Abonnement nicht verfügbar."; +$a->strings["End this session"] = "Diese Sitzung beenden"; +$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; +$a->strings["Your profile page"] = "Deine Profilseite"; +$a->strings["Your photos"] = "Deine Fotos"; +$a->strings["Your videos"] = "Deine Videos"; +$a->strings["Your events"] = "Deine Ereignisse"; +$a->strings["Personal notes"] = "Persönliche Notizen"; +$a->strings["Your personal notes"] = "Deine persönlichen Notizen"; +$a->strings["Sign in"] = "Anmelden"; +$a->strings["Home Page"] = "Homepage"; +$a->strings["Create an account"] = "Nutzerkonto erstellen"; +$a->strings["Help and documentation"] = "Hilfe und Dokumentation"; +$a->strings["Apps"] = "Apps"; +$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele"; +$a->strings["Search site content"] = "Inhalt der Seite durchsuchen"; +$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite"; +$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk"; +$a->strings["Directory"] = "Verzeichnis"; +$a->strings["People directory"] = "Nutzerverzeichnis"; +$a->strings["Information"] = "Information"; +$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz"; +$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte"; +$a->strings["Network Reset"] = "Netzwerk zurücksetzen"; +$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden"; +$a->strings["Friend Requests"] = "Kontaktanfragen"; +$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen"; +$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen"; +$a->strings["Private mail"] = "Private E-Mail"; +$a->strings["Inbox"] = "Eingang"; +$a->strings["Outbox"] = "Ausgang"; +$a->strings["Manage"] = "Verwalten"; +$a->strings["Manage other pages"] = "Andere Seiten verwalten"; +$a->strings["Account settings"] = "Kontoeinstellungen"; +$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren"; +$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren"; +$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration"; +$a->strings["Navigation"] = "Navigation"; +$a->strings["Site map"] = "Sitemap"; $a->strings["User not found."] = "Nutzer nicht gefunden."; $a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; $a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."; @@ -1539,66 +1711,29 @@ $a->strings["There is no conversation with this id."] = "Es existiert keine Unte $a->strings["Invalid item."] = "Ungültiges Objekt"; $a->strings["Invalid action. "] = "Ungültige Aktion"; $a->strings["DB error"] = "DB Error"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."; -$a->strings["%s's birthday"] = "%ss Geburtstag"; -$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s"; -$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?"; -$a->strings["Archives"] = "Archiv"; -$a->strings["(no subject)"] = "(kein Betreff)"; -$a->strings["noreply"] = "noreply"; +$a->strings["An invitation is required."] = "Du benötigst eine Einladung."; +$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden."; +$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL"; +$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein."; +$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen."; +$a->strings["Name too short."] = "Der Name ist zu kurz."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."; +$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."; +$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse."; +$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."; +$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."; +$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; +$a->strings["Friends"] = "Freunde"; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet."; +$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s."; $a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora"; $a->strings["Attachments:"] = "Anhänge:"; -$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden."; -$a->strings["Edit profile"] = "Profil bearbeiten"; -$a->strings["Message"] = "Nachricht"; -$a->strings["Profiles"] = "Profile"; -$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren"; -$a->strings["Network:"] = "Netzwerk"; -$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r"; -$a->strings["F d"] = "d. F"; -$a->strings["[today]"] = "[heute]"; -$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen"; -$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:"; -$a->strings["[No description]"] = "[keine Beschreibung]"; -$a->strings["Event Reminders"] = "Veranstaltungserinnerungen"; -$a->strings["Events this week:"] = "Veranstaltungen diese Woche"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Birthday:"] = "Geburtstag:"; -$a->strings["Age:"] = "Alter:"; -$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s"; -$a->strings["Religion:"] = "Religion:"; -$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:"; -$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:"; -$a->strings["Musical interests:"] = "Musikalische Interessen:"; -$a->strings["Books, literature:"] = "Literatur/Bücher:"; -$a->strings["Television:"] = "Fernsehen:"; -$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:"; -$a->strings["Love/Romance:"] = "Liebesleben:"; -$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:"; -$a->strings["School/education:"] = "Schule/Ausbildung:"; -$a->strings["Status"] = "Status"; -$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; -$a->strings["Profile Details"] = "Profildetails"; -$a->strings["Videos"] = "Videos"; -$a->strings["Events and Calendar"] = "Ereignisse und Kalender"; -$a->strings["Only You Can See This"] = "Nur Du kannst das sehen"; -$a->strings["Connect URL missing."] = "Connect-URL fehlt"; -$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."; -$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen."; -$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden."; -$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."; -$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."; -$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen."; -$a->strings["following"] = "folgen"; -$a->strings["Welcome "] = "Willkommen "; -$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch."; -$a->strings["Welcome back "] = "Willkommen zurück "; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."; +$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?"; +$a->strings["Archives"] = "Archiv"; $a->strings["Male"] = "Männlich"; $a->strings["Female"] = "Weiblich"; $a->strings["Currently Male"] = "Momentan männlich"; @@ -1635,7 +1770,6 @@ $a->strings["Infatuated"] = "verliebt"; $a->strings["Dating"] = "Dating"; $a->strings["Unfaithful"] = "Untreu"; $a->strings["Sex Addict"] = "Sexbesessen"; -$a->strings["Friends"] = "Freunde"; $a->strings["Friends/Benefits"] = "Freunde/Zuwendungen"; $a->strings["Casual"] = "Casual"; $a->strings["Engaged"] = "Verlobt"; @@ -1657,121 +1791,6 @@ $a->strings["Uncertain"] = "Unsicher"; $a->strings["It's complicated"] = "Ist kompliziert"; $a->strings["Don't care"] = "Ist mir nicht wichtig"; $a->strings["Ask me"] = "Frag mich"; -$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"; -$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen."; -$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!"; -$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten"; -$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos"; -$a->strings["%d contact not imported"] = array( - 0 => "%d Kontakt nicht importiert", - 1 => "%d Kontakte nicht importiert", -); -$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"; -$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken."; -$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze Deines Abonnements."; -$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Deinem Abonnement nicht verfügbar."; -$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; -$a->strings["post/item"] = "Nachricht/Beitrag"; -$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert"; -$a->strings["remove"] = "löschen"; -$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; -$a->strings["Follow Thread"] = "Folge der Unterhaltung"; -$a->strings["View Status"] = "Pinnwand anschauen"; -$a->strings["View Profile"] = "Profil anschauen"; -$a->strings["View Photos"] = "Bilder anschauen"; -$a->strings["Network Posts"] = "Netzwerkbeiträge"; -$a->strings["Edit Contact"] = "Kontakt bearbeiten"; -$a->strings["Send PM"] = "Private Nachricht senden"; -$a->strings["Poke"] = "Anstupsen"; -$a->strings["%s likes this."] = "%s mag das."; -$a->strings["%s doesn't like this."] = "%s mag das nicht."; -$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; -$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; -$a->strings["and"] = "und"; -$a->strings[", and %d other people"] = " und %d andere"; -$a->strings["%s like this."] = "%s mögen das."; -$a->strings["%s don't like this."] = "%s mögen das nicht."; -$a->strings["Visible to everybody"] = "Für jedermann sichtbar"; -$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:"; -$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Where are you right now?"] = "Wo hältst Du Dich jetzt gerade auf?"; -$a->strings["Delete item(s)?"] = "Einträge löschen?"; -$a->strings["permissions"] = "Zugriffsrechte"; -$a->strings["Post to Groups"] = "Poste an Gruppe"; -$a->strings["Post to Contacts"] = "Poste an Kontakte"; -$a->strings["Private post"] = "Privater Beitrag"; -$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen"; -$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d Einladung verfügbar", - 1 => "%d Einladungen verfügbar", -); -$a->strings["Find People"] = "Leute finden"; -$a->strings["Enter name or interest"] = "Name oder Interessen eingeben"; -$a->strings["Connect/Follow"] = "Verbinden/Folgen"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln"; -$a->strings["Random Profile"] = "Zufälliges Profil"; -$a->strings["Networks"] = "Netzwerke"; -$a->strings["All Networks"] = "Alle Netzwerke"; -$a->strings["Everything"] = "Alles"; -$a->strings["Categories"] = "Kategorien"; -$a->strings["End this session"] = "Diese Sitzung beenden"; -$a->strings["Your videos"] = "Deine Videos"; -$a->strings["Your personal notes"] = "Deine persönlichen Notizen"; -$a->strings["Sign in"] = "Anmelden"; -$a->strings["Home Page"] = "Homepage"; -$a->strings["Create an account"] = "Nutzerkonto erstellen"; -$a->strings["Help and documentation"] = "Hilfe und Dokumentation"; -$a->strings["Apps"] = "Apps"; -$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele"; -$a->strings["Search site content"] = "Inhalt der Seite durchsuchen"; -$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite"; -$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk"; -$a->strings["Directory"] = "Verzeichnis"; -$a->strings["People directory"] = "Nutzerverzeichnis"; -$a->strings["Information"] = "Information"; -$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz"; -$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte"; -$a->strings["Network Reset"] = "Netzwerk zurücksetzen"; -$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden"; -$a->strings["Friend Requests"] = "Kontaktanfragen"; -$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen"; -$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen"; -$a->strings["Private mail"] = "Private E-Mail"; -$a->strings["Inbox"] = "Eingang"; -$a->strings["Outbox"] = "Ausgang"; -$a->strings["Manage"] = "Verwalten"; -$a->strings["Manage other pages"] = "Andere Seiten verwalten"; -$a->strings["Account settings"] = "Kontoeinstellungen"; -$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren"; -$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren"; -$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration"; -$a->strings["Navigation"] = "Navigation"; -$a->strings["Site map"] = "Sitemap"; -$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert"; -$a->strings["Block immediately"] = "Sofort blockieren"; -$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller"; -$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung"; -$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos"; -$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen"; -$a->strings["Weekly"] = "Wöchentlich"; -$a->strings["Monthly"] = "Monatlich"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Zot!"] = "Zott"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/Chat"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Diaspora"; -$a->strings["Statusnet"] = "StatusNet"; -$a->strings["App.net"] = "App.net"; -$a->strings["Redmatrix"] = "Redmatrix"; $a->strings["Friendica Notification"] = "Friendica-Benachrichtigung"; $a->strings["Thank You,"] = "Danke,"; $a->strings["%s Administrator"] = "der Administrator von %s"; @@ -1829,64 +1848,58 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "D $a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten."; $a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"; $a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten."; -$a->strings["An invitation is required."] = "Du benötigst eine Einladung."; -$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden."; -$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL"; -$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein."; -$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen."; -$a->strings["Name too short."] = "Der Name ist zu kurz."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."; -$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."; -$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse."; -$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."; -$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; -$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."; -$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet."; -$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s."; -$a->strings["Post to Email"] = "An E-Mail senden"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."; -$a->strings["Visible to everybody"] = "Für jeden sichtbar"; -$a->strings["Image/photo"] = "Bild/Foto"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["%s wrote the following post"] = "%s schrieb den folgenden Beitrag"; -$a->strings["$1 wrote:"] = "$1 hat geschrieben:"; -$a->strings["Encrypted content"] = "Verschlüsselter Inhalt"; $a->strings["Embedded content"] = "Eingebetteter Inhalt"; $a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."; -$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte"; -$a->strings["Everybody"] = "Alle Kontakte"; -$a->strings["edit"] = "bearbeiten"; -$a->strings["Edit group"] = "Gruppe bearbeiten"; -$a->strings["Create a new group"] = "Neue Gruppe erstellen"; -$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe"; -$a->strings["stopped following"] = "wird nicht mehr gefolgt"; -$a->strings["Drop Contact"] = "Kontakt löschen"; -$a->strings["Miscellaneous"] = "Verschiedenes"; -$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD oder MM-DD"; -$a->strings["never"] = "nie"; -$a->strings["less than a second ago"] = "vor weniger als einer Sekunde"; -$a->strings["year"] = "Jahr"; -$a->strings["years"] = "Jahre"; -$a->strings["month"] = "Monat"; -$a->strings["months"] = "Monate"; -$a->strings["week"] = "Woche"; -$a->strings["weeks"] = "Wochen"; -$a->strings["day"] = "Tag"; -$a->strings["days"] = "Tage"; -$a->strings["hour"] = "Stunde"; -$a->strings["hours"] = "Stunden"; -$a->strings["minute"] = "Minute"; -$a->strings["minutes"] = "Minuten"; -$a->strings["second"] = "Sekunde"; -$a->strings["seconds"] = "Sekunden"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her"; -$a->strings["view full size"] = "Volle Größe anzeigen"; -$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."; -$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]"; -$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."; -$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."; +$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"; +$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen."; +$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!"; +$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten"; +$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos"; +$a->strings["%d contact not imported"] = array( + 0 => "%d Kontakt nicht importiert", + 1 => "%d Kontakte nicht importiert", +); +$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"; +$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"; +$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen"; +$a->strings["Set theme width"] = "Theme Breite festlegen"; +$a->strings["Color scheme"] = "Farbschema"; +$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen"; +$a->strings["Set colour scheme"] = "Farbschema wählen"; +$a->strings["Alignment"] = "Ausrichtung"; +$a->strings["Left"] = "Links"; +$a->strings["Center"] = "Mitte"; +$a->strings["Posts font size"] = "Schriftgröße in Beiträgen"; +$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern"; +$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen"; +$a->strings["Set color scheme"] = "Wähle Farbschema"; +$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer"; +$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer"; +$a->strings["Community Pages"] = "Foren"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Community Profiles"] = "Community-Profile"; +$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere"; +$a->strings["Connect Services"] = "Verbinde Dienste"; +$a->strings["Find Friends"] = "Freunde finden"; +$a->strings["Last users"] = "Letzte Nutzer"; +$a->strings["Last photos"] = "Letzte Fotos"; +$a->strings["Last likes"] = "Zuletzt gemocht"; +$a->strings["Your contacts"] = "Deine Kontakte"; +$a->strings["Your personal photos"] = "Deine privaten Fotos"; +$a->strings["Local Directory"] = "Lokales Verzeichnis"; +$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer"; +$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen"; +$a->strings["Comma separated list of helper forums"] = "Komma-Separierte Liste der Helfer-Foren"; +$a->strings["Set style"] = "Stil auswählen"; +$a->strings["External link to forum"] = "Externer Link zum Forum"; +$a->strings["Quick Start"] = "Schnell-Start"; +$a->strings["greenzero"] = "greenzero"; +$a->strings["purplezero"] = "purplezero"; +$a->strings["easterbunny"] = "easterbunny"; +$a->strings["darkzero"] = "darkzero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = "slackr"; +$a->strings["Variations"] = "Variationen"; From fd8e8d005a9f037a77316524a839450aa24169f7 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Mon, 12 Oct 2015 20:09:33 +0200 Subject: [PATCH 095/443] attend functionality for duepuntozero --- images/icons.png | Bin 12608 -> 13806 bytes view/templates/wall_thread.tpl | 30 +++++++++++++++++++----------- view/theme/duepuntozero/style.css | 13 +++++++++++++ 3 files changed, 32 insertions(+), 11 deletions(-) diff --git a/images/icons.png b/images/icons.png index 0ff5c430c5c3a33b92556249ccb6af1b80f84f8a..e255316e6d93662af07237a4e9fd7f2a46490a07 100644 GIT binary patch literal 13806 zcmYLQb8ubH7k_DNCyi~ZandA>8Z~&aZQI6+8XFB8n=iJ_#rOz?V_V`cD6_3M#B*K1*?q~Yyc!B*H@>E z&?h~$B7Irc0k*GS#Gaor7AlULCIt^xm75A#{esK=A>r<<#B1&_ z-eE8cQD9Aj@aF%JqXD2`p_C1o$mTE*o(b>IHAI{TB`MQs!(y{AIthikDJWpLqz}59 zoS?r~y=2>6^S-kT#boh|`{$70GV4-OQU>Sck;`WaB6dZUD1RudA?lPM|BQqlAZ^34 z{La&Dv;!g_yGs)NvgL#h#NyBsru?rERg1krXIj zg*#H9&~S4|>F*&TB6dECzn=);v%&<7XmGZ&I%^V`%20mGAZ@Bn+()mdE@ck<@}+Ah zWbnuV4QC;HmC!6fzLvwIla_XfhO#fPVE%0%_rJYsixN8QU_$gg(%a8Nu|OXJojMuw z>vAOXttP{q4nV~@RV&-npDfrnYirYa({a0?uhB#mTE8?|yCi}56_yHr+Hd!x3cvmM zuFpEETGcDOB^T$P|}JGjdIbeiUAvCR)-fe|3yux&Q;OFKPsG~ZLtmOthC zrX?|B;}HJ-HIv%W(Gd;-L9}c>Z{G5_-g6J<{AU5K6x~icHwUp4K#|1TrJMJC*^DZs z1{nZBjY%?5v6kZacpOwWZQv3@DN2K_?0rZ|)gSUTh^ste2HwAE!%q(jjtITtUwo1W zij@XDP9$`O+<-7Cz<;|6XB8XO#~=_6Y*OFj^XMlu)>?2a<$Uni}1{s@Ks zsVrY^fKKAJt7vXcSV6(KY&vJs{6_gsVQ1&h>j_9Ge8?#TWSkFs=XjF$0knEs3PmPS zG<>z7=#R|jG9Hg>N}R|Le}8~8ACW}7u}fgcWkiWGRoEyHv8OEL zVlQP8#4e47t!mbyo@7f`KH!IOmox^bkV z8xsQpWvMwn*}J}LBzbaOhT|i^p60rhs+lC?$Pbh%zXTb-^rwYs6 z{t!OZ%hpoy!Iz1Flv|E`(??mxCRr5h^!1uXAIsPIw2X9Hk&`KG_EW!nc^?tCwzi;P zVRtSrVkxD0vSK#MZ(uvJ7%ZQI+rRSxdfZliWKObkLg~q&VXk{fCW@I)9W`q{h9VP8 ztg8^gv|qKpT->*ah&mn3g>8BFwusf{;uym7Q3K8#)1+1=ejT4ko8PQXhT z4puGeH*ouvn9@JO()p~jC1uf7tD02R@mxB=(j$f{NXgZxchK!GdGVvzCUTw9;iUqy zMzgNjr)!OeFfezMb!24ZH>YO3CKF#)%*>1uK)|ug64_IhdiT`2UK2SWK;$vQ* zUFfAyjg!xp`T4%}%NR+50zWI;cdc?~YFSn#BS{&TSvzfV6{;Eo10}r3J)Fe*GGJ(U zce_>l0c_hDILZM!<0D6N62pFop2J<(=`Ii)7N)GJscA5L9PdPvz*|(RJvO$x$x`Az$3AAtQOigX+;!w^ zsAi*PJYNabaYY&p8@xzjjq%ABLzwOI%SGg9KsB|uher#5P(YoaT{|#Svxq)e`kRGyZHD+=~$|%U@oq)q(tlHqx38V zQvKcS>|eu7y~XSgIV&~h*JD=#mvv6)#yLV}ox2!tz`NZ@>w*zn|~ zlkIV&NrrSDmxvpNqzhBI_~)JYAhNXbri_#nT88WCrEj>TAJxezd?rd&PB~vDma)z) z%2w;~5kuIT{4XhWmol!7l*D)*-BN^=$3Cp>oo)Qvo6nv;re)Rq>2j+V+mGMnnDU$T zl7CK)URD({!MCXrWg10b@pkDgJ|rKelspA<3U-Bjm~NG1{&a3By=@ag-EveOZS$Io z*j%Fy0|J7Reak8q4o+S&LSSGZ;PU3CmjcQ*_Q37x1EsG&qPZDM3FGAciSl>wBEkZl z3=SijW(7f*wp-U#-(1N|?Zbv0R#)G_7cG@gLnGcO~>bd9-{4Xn@JSk9~N*~M~i@4&*16Q-&!9aA*GHUd~ZdT;Y z*DDUNq6#+z1Vmy|l0l6+Ei-c^kA;sA>GvjPA_m)$Eu-T8JaLk(>J^7H*>$Pqv-ff4 z4*cdF<#ep8pLeH=k4<(;eJ?*CooXT`(?aASZLCdWbiei~mL*gPGgwr&|5detP=~0u zC6*kq`L2jlSUg*!Fz?JyH9Kf5aVDrS=n)Xpa|H2~foD zb4Z|(Nx?K`^!o5o#0|f?!FqP%o~jUB#oF1vi~Wgja}g2On+A4dqU&?G$mRLOk);M+ zG%W}8GqA40NQ_O=`|4v+uXCYO+n$KT6QQHGw>H!0vzGj(w1i*}X~5~FWbUA_l#GUk zNInQ6kAbC)-Cv`M$^2GSAqz~K%&a5&aK7ktZ%E7{>!Z|~PWy z`}}bK2^m!#Itq%n$WVU^-6!5fQ(SE{?)pbI-uSE}y7zGE1W?soIvyWrb${1#sD)Q` z{)?pINza)@!63#4<#ZBDS{Mg`m>;A)H!#N5+&Y#EP_lRu=V-3P#qcHBr%o-(dMS1d4*6(`iu5%# zrX?kw;vpg1i#97$#QdS32es)V*5D9y=QWq$fqnxd_!8GP^C7Y~yVb7e+UpOB;fW?t zF^+YdfBUTNQu%&D=XNP!`m+D%S))%+YurWwJ&bqJ%Nb9I-aTPD&OzKOeO<*8ZL_i`H>jknovvk&f=T9C?VJx z-KGwX73NZBfY%iH1lktXGYjVnlfcuJ>3f5rUjD(^_2#JP%rRS7(y){2fg>BMp>YaHA%zhd796blGv>` z>4ybhwA`~PGLbu?mG0NEblfo24&ATb z;%K@{os|oX-}85~Kw9lJQf+nHNFd9+RP(&N{9khP8d%EK>}(zu3g4)-hM3tQbm5eh zlRyfE+9diz6m^HZw=J5_1RF<^s!GECme2j-;yus9G)t$h2pQZo`V)kDe*eM}5c6d-y>zp#E=B068^Mk|K8qmT`eUPKY9C7wKqR#l=?C5 zAS)8L`f?czGud!osQ4o|bd$MN>SSoY?a^FMT9ruD5%HEdK$m&ziOeTs?jov6FXfwe zPM_Gt1ts`L1=}i@&o_p>K>F=tTJtl{QJ+=J9hM^iP9-m7>aZ$fxfF7@;jsQuIz&NX zs6GOO3IJL*>0|N+LJg>Q>=jJ*rt+-=bF?6Y>rUj@3rYo>wsdNv?$cpEk#F7{O}S{Q z(Cfi+W1?+U+u?Lxt)-(rF-NQZyVpUMx@uLChXvh}*8>KZ{iYqCY`TxC=iBq$>A!|Z zmX623L1M2cSQ77Q{BSwE?6N@4vwTinAA!)6lwuGTDEHs>XI-FWi!t z7NV`=3R_odiO#qw5;Ys2lxzPa$&|QIHkyjP`O53T!LdYY+!<|Uq-*Nr)qMwSn5_xy z>iY9=GiKABxGdF(wJ7b=&59)sMti@43XyT}-k`gw**vv6aGf|4j=8;R@| ziA`DCcwbf({Vy3M6|Qmt9J*n0L4is`x=`1#hEBVw_dfbJ=DT+iB5Wl&lCDNS;WJKr zP;c*%u(NpsB0ViFTA1lL`S}bLN~5KCN{MoW^|Yww$LmdA5@Ukbq&Z{NJgKSU$$iXdbN zpeBmzF5-J(y*lx(aeu-EoWkO$)i~Rsq9(0Z7GI>#smxogl@6sFr`C}N7fRP4MTD41 z8rR$|tH9ir)qD1rexbMCs0>ekR@#`A@@d}_BRFv1lHsqdX%y0DW~5xQ9ze$qnKmyc zbT!d9^|%smB@~d7_zpPJbq^TAVWI?>x$}GilBBQD2QnQkt^Q~-(|;Hw@VFU7$m>|p z4fhnV=otLn1X0N$8SISv`!(`%m?azpmK-HG0xS@-^#Y8XC51h z*EAk4uA)txHclJapi7-GI!s<@@g;2x6XFOV79WiZ7Xh#_?u(yb;J3fLhjOn*{X(TZ z4`(tDzgeG9>R~wIRVQcC{PM-z0mY6LvT056C8IvfQ7UgO*+wlWHGV6{ng0+-flnT&x~QI)&%in zp`zEc3|v{W3Zi<8mvJr-rm(f`FK8i{ehK;Q_9|&A>s!9?>v{dyh`dPb>mLz`qL{-z zt5N0Z6@(==zueoQE>~nj;*8GsHyut*!Ho&uC>$J)6c9G`hm}dceVhG>^xXC-es^%uM27}Z^b06`X(^q0 z9yU2IKDiX52amA`33LgA9XD;kn3)FZ-v)0%TJ1vv`?BwaWDXkw1&v^5I4m8rp6_!> z;gBfj)C_i<`T9fCI3kuBBF8T689xO;-5Lr#G$C=|Or9b8QDMw6p3Y@-dpJ!f|UJFCw4>9SHTkGY2G@)On7>~z70gemNl?(hEdBUgf6eQtIg!!8-z z`Oh!2uN6(r%#E!%i8(1WdGgtPe@d6CTK3(-Sjfo(4SGXsEM}>bnY1K6EdX6~4&leP z1QXhuSH1pvY5thcwP!tk1l~UFXYua8(A*pR)Vj3!kHco@vUcl?wjdq-) z2=?dc%y4`0>A$wE6d?mRq?C?NE}y{gGR?WVRvs^<{fjWBJDZR_jrTW`jA?vqMh<6R z4pf;6{gs~`Bv>~|df&Hjs9N|g+l9rBf?4f6B=NaSZ9&(!=EE)NcDCJWI!^0xBUkxZ zJ)JY`zNlzAoGw8IB6i9n2N!R68fw_t$N>#3q0*6AYEq_cPz&} zsFGkZ^^TqLq>gGCRUIe=jEy~&!9^YZ*jj!osCtoX|9+QKt8s`d5e2h`ZPMP$=sR-@ zEp2FVZO~YhCH9fROTHZ;et4e7D!$h6T@LDOEq$^^D=bJDb^7~Q0z4|@uNm}GkR@iN zsD=&cz5{VolsSrc{Lbvtii%N$$62${=Tjoj+iPy(2lbqq!NH{dm`xiKn;CYMNioY! z=IBJ7PcU-&q%Cgi(hpO=N-9g5UoJXxgnXXuXXUsdE{7;$e<>-6PG$=dv<28UWo&Nh zhoX{9?8FLBR2%e8SvEu$>E4^}-W){{w46QL7ct82ExxV5gW4LU#f~OWVf5~tM_-2_ z3;cYZ>fAl#*yR(1&7C)0(e}&uvTv^>1l~oKsF0=b6WavV{S0ZxGoIA4!4mpxS1~aH z4kt*mo@c<{lgGYX@B4Tv&| z=%!gQbq^bpf>mwgZwvi!{r&x!JPv`Mb*Y}7o^cvx){Oif5325^X=>xz?0fMd7Zxyfw;e)slnR)Cisq$$G5voRRYxJy zMKx6v*k5uPn|xC^9<-F-?>#DcYEM=yS3aG{+(g9kEyyl#!OQ zu;-W(F+sxBWT8N6%(P^}j2U1mgh7WtlX6cwAG|O*sX))bfJuN`lc^BdOvP0UO&sND%i{VU3dhecMls1&S5B>GQ6t5rF6d8tw`@_f~eIc zszmNV-H)(}trxblz~%RZN&}Hv(bJ*As4Px@X~?_`0jLkf zKVDvYBIsUnU)^pkJ;Z%hT{rWj1hXfj6jQGH@rmpySn->Yn{lck&HRbF9Fw&k=D+eX zbj^H;g>V`%v-RI9ph*Vu7712kJwktlP?uI{tMq<2o-eb~$d99t)V+h9`vs1tgeU6* zLZ}lj<1nEG%O*3I9p=&jD%ET93iD`7N=vhqu}oU?Xd6@Xe0eL#vTPq@?F=pvH4C_5 z?=PDPdrJPHSaGIXgDZ@Ysv*=9JC5Gukh_~K&rGQWd|8abbiKqM%#H@~4X=u=JT}+6 z<$~;;yU6uLDI}RpTU-o7Hh#)_(`<4cMcC@&v0b@t+K{yG1b6^9wO~%actTkDX9LOb z*bIO4a{?_a=!j#(=F8L~%L1xvTwyo3QpY#!aPlQ%sqeni*R&g+*pw;cXdMZg^XU8w zon!9PVF&$oz(8#Dx=FFxzctz|7mRXu5YSBCYX{|Fm6qbu zjb2BJh=_<4$);V8d?pZ=o<5!;=w}>NXZRF??p9uoAgqpMmsT4K1Lo19jow@6mGfbt zbfoGMp~pr_l47|7-LF;TAg<$v`lHoIrr|-4Pt8q}2IoV5gIxCpCgQXn{fTDjg>icp53@K=CPW@z3 z6}4BZzS$5iW9Izr6B#zaFgL?AIrf+OFpGK{h3oey#ABOhYQ;A<)7lQb4O{V)(%6(P zczghL=}w60zsoXsyjBX(_7*plW8<%%NweliZDv8~v97q{zu{Veo4Z9lJr0lST_I2& zB}COAQd%jz`T9P=Ch>O`X-!J$?LS_&g~@JE^`kt#%e5v3 zwTu@^SX4U6Cb6ZZES*;a1Sf!URjahpQmS>?u!Zt@yo`^tj+Hyj=wQk3?$z+Z2{Er2 z*s=ajye2%_#J)>c6sX9Z1X|tD{!Dk>i+|*xYS%(?qzA)tY&ZAWNYu2;2G2zE=eHcd ztk9e{5}gY@ARC~WkkG3$xG-c#r><2wZ2E9D@joWfW$@1?X>zo8&Tit|T>*-G*yd>%2=4q~kS@qkOvo!X!5X-b7kZ(~LtujKfK4k9A76 zWL?vGH_h0z=@T7zRc5%`{YuCl0ir=st6ZDOAS3OLyOzibl)zVH>x~W~{{To>B}*rL z_)DDNL+2#vBlcx!--v%`!TAiKYoVKE2nKuh0-CU=FgRN}!?IfZ?SuAhqbZZO$cr+i zJ#LQ53=Y5k7*6LUWN5+zQY0t0=qb9U=b8E%C|Ks%H-NE=7Mb(!#EoipO*_BGG@lPR zZg`U&qWU9KYTPbjlMWab9G`EGEC)^b+WXPLuEq24S!hNK>#+#i#qt0Ew%vbs0aDYV zQZ@EEqICkkg7c{IuUq!WZDn!Ev7pPi*$(Uk-SNkMsvAn& z#5D?ri8=^H!^ObOT`kYP6}q%nJYpPN>Gn6@F$9!J9ula;pZ3Jw{q89XL$qfh+9avZ ze)x-s88mW=jn>h0tadd9xkjm1e{%PfPQP}$2Ustn5L5)%p<#BSG-EcyJjx&^!Fs=M ztIS|d&Rg5{g`>M`hpc){BEzLDvfvOCoUIkYEkYNl@)}#0`H9@11hH&7U&k5)LVZs-3~!6KKgm*j4S~W9rN>+F>3}N~ zmya;|#cuB;;5F$q?X{8RGx;b9LHU#}Y%IY9FP_4w-%@HG zz4vOSlQfSa!u-WLa(8GiAMh<7Amk0VbMC~)u(utwyMW12gK3d6%(v|z`(*_C;gBEB zUSAvjzKi=+N(htZvLj#jVJg6BIMljCHxV}hBTbEU=?j2}RaFUwGG;dq8Oy7MBij)* zHMuHuf4LUbdo>j;?aE3|5sgyL z0rARzbLTVI4!N+Cs|ba1zjS1hUvTjeGOx-*v#NSg_n)cQKiU>ryP=~S4p6j-8S)P8 z*$~{~*L!mChNyKe{VmEqv$|xiQ&T2}61v?(Vv)(bo@e?wr{XhTVPdge%qaJo$m~O0 z{Irei__t}(I&rOv1rOD-yTozR7t!QB zb09FRS-UbutI4+FTi_v*FFJG6)cqNLw;Y?IvnAe`8o&J2!r)0iw=m%oRgq2|Th{?R zi=aPRo&aE3v+`r%aa~FKV4qM}PxeQ63%<8}Q_JTRBAxR3VdNu?ed5C?EnMg{_rUR*V58tIuN_fL?-W- z=8vmElAJQyk*Zq8jcsQ>J4f)^qV-B+#X@>(V^3sQa>XOHgdGYeVl2Uy1AkU26P3-~ zsV`u~Kb1`R#t=rqS2Uh7F<#&kQ9J7_3GAXTnA%gT^$G|_^AEVj=^A)H;et8{CR!p$ zq`2F9ZrlF2h99|k^*tC0pH9z!k8%nwIB(XH^|;~dE&dn`lV>|l>|oIGW$xn7U>H1U z{%kdDA#V=C#p|*<3lTW?Ahevy$^qFSQoW7~Cw-Qq2yjHi17y)0#GioFNBC;^trk9I z?}ld}=D3X}mv%q9XFa!hoqA96)<1jcRN3eR9hBYjWmdx<6>GJOX2Z4CDxZaA*-wE` zm6mp#I`esf*UmEA;r0D-g|q!>IK;7}U46{B@D5)@H3wUZ9=`r1-NXW91EiTafA~vZSMD<2PI|2I=hr z00{NUn{HePZy0AtAsWG}C;E;p;fRQ0gy0@-Ioy*B%=ccY50T#G);pRBTr93r$goiD zwFpb3`EMC#pKt_gtf6~(;jV8W}Nyw}g1GP-f*`k?Uh=ScgA3<2?iK-*QzMg;dy z4xBSg;o=;M{d84h+!0y)moA`OzYq9?@JtKp%ITTcQ)e->iDtq5uTP5$Nj@YFB&PRM z`!iX&?2iZJ?fj!c_?o?qpn_F}hO!{-a^2vI@7~W;!7@jw^#oNmsL3q; z#c!^sOPwRN-jR866C~}s`za6 zCb9jHU$9YB)bA3xg1`2a){Lz)qG$Idm|VG*)ye>u^miwLm$hbED)TS=GV6p2cUgPB z`YmIg6E9yFfy8?1tl zFdwczYQiZb`{s8c3M+N|9vsU*T}t>1^>bh^?ksn^-V9cI#KkF&+xk>I`dfb0-&iZx zY;-NZj-fm=yLXmEqbFm5e=r16UF}uF3rsfsZ)0DhZOd*l7+N4092-od|v4~)1{-YJ) zmv^%gUWwq1eW!iq?`z&XFnHhqHSErFBIw-XUVnyRk7_&hyjB)_4@Gh)g~~nA-D>`3 zx|lY4qz-;`nTC*%8)TkF=gEGge}1hEW0v`7EM6FM1841Ycv`vV)`7HmkCP}Fx<(dZ zpqkevN|UR$pWnvOEFdB;O8N~6jB$g;2{L3K4RFqEbH+Cr@UKIDGdE!zIGX(1mOG0f z6n;tvsv2^|@3MVGB9Mq~J{YfQa;<-x2F$6{cn1L_{%k=z-%5&6V#G<^KG+Zd(HgL-Db(*FW`i(vUZ`N!dn*BQ27^jXf zRD8A^{09SOspx&}2hE;fAe_SkiKo%ACE&O4pCE1;AVNAO{FJ022o^V0Q zWdHcy<7UzA(p7@Tx0COO zH*dSW#xap|+mRm!AK%mNK#C%ZBKlBFlUt+nA{F~aM}Dx`q-q`4oqa{zwgh%wq@Q7{ z9}J11+s6Oh#eejO_TfLWxXa%`tn3B&|525TAKZ9td-$_cyvR=|Z<98T^Ke&0L?V1S zat&gA-dYrzM}2$gSq>2wuR6fR5qy7MeP|MT9Vi}$(3M(U+U_aLth$Z_k&I5TJU*<= zuKSh9Kbm^al^4`IM-1+;{q&zU=dqbOL2MUhFQ^}7V9b7yBn*^HK?Ngst6}%h_gZOM)vK8141q6Z)aUkV6Pd)UD8X zvwNz97^krRX?K6DYn9`>C>a}9PY6#HoUQQAEOmJJ<1AMiE!~Msr$w0IW==R!9vmF3 z1otNI)b0^vQfY)}Y{)CHTxeYkCQrJ7Gk225eJL+h8WZOECk?(Gd$@nM`Xbi=$=ft4 z{dD(|K@eI+9}EoLnVxe0b^SU>;7MIfxNhvm(Z!rYzhElq;kuO1{>a%D*uD5g+gE!8Y z3@sAiYj@0b$nJ!|ZY+N1*0M(N5e`@nojkBAy%p=#xJaC^X}g@$b%=h^xpME+&lC<^ zVV?E~E~pVe$QH{ziz@nH8+Ph&k6)q_4EZiqh|j}}oevtW!?9yeB?ou#yZk!QFIx** zp(t2CdoB3(2S%kBHecS*UN+a6Z-Z_4oZe@IqUT2hVN`mO?y192LV&aXQW)j|I5WoK z6IF@azb*FvTQhUu(ODvrSGDf!3TkTT>4XVpzKAv3fYHsVD#5S_P}T+5F>HK0eG(@b zE`19%Xu9t(8VUEswunCvdRCZRgPnQc&zeB+TbVTG^HJ+0zG8{NSC6}Tw|!6CmekXG z?@5c)$l=Li#`Ir1|Jr=g^(P?j=UtOXRk7O`SCCZ?Y_;h`0?OtS9ZC7qB&@Q;D-`Qi zkjvRAZta_oQQJ!_Ol~7?x*K3kiW7?SipC|n3+2M7JwPl2{4oIS7VvUd!p~We3DfF9 z8F=w!+~K!Ud;i-%R(oR#jkp3s%1PgLdQd8vg#g1w9g@H{Bacq?N9J2h^%SdERim#G zVk9wH+dLsmR7UD^fXaxoPc2>UH2vtD`Z-_hh4eRv~l!@RKh289?}EOVO{z zr)%!Tw(<_^@ej#D(T2cjoOMR|>iNBUl#n_71z1FHszGdJ3$a+ZzT(gO*~;sD$fDZo z-`U1}nG*qGRQzZdVc{FC;s>9U+b~4Y%8}r6r@zlwgN8@t`<^(5@-_HFX|UN42u(vHsd!}~t-TV;pE z@q9eI-ppG~iC%i7;%T0)BA*|k2dY4)r^GY6Lu92-J)`e$p!lX}`^ z|A?^r!@42fy$r#wZ7;(j?Z-NSn~`b*jO~@mw^m#^ZL^jQF;i%x^?i8xja+n+zK@4u zCaNbV#7zWQswXH`rfH6|cUcFo==qx*dnL(5Ka-3YlqibcCNS|stT`Q(n zL*p|0L-xh_XBCOvTfHjnDK`iW%_}Ro6JB!-%4fd}pO>w=Gz(y9>ST^N>AS(tMRuN! z>3(c;X;|fyO}X)%?!0qZ8S2}{MOM79%)#eS(fVr{wh_vDzpt?u_jc?K{X3d1(-pfi zp`E#o5Lb_K76_H56j5WDXs?8_Y)sml9aT$}8E2@D#veO=r|)g$2e@kH^Z8Im-u zNVr{fZ;5EWd<-IGkPhs-_r-qeYvvNX87fd{*TSC2b}GF*``Dq3sxy1S$)0{u{+~xk zlr_I?Y?FZY%(2xG_{>!$1-3$-oTu7Vq=afJwu5aPJ%01(;2^o>?4F9|Tf6%F^%=lU ze_Ex)@f5{B2S><=^9m7LO;d^Nf~)X%hmzCc8JE7o73Va9i|_>lh)y&bNH(JTCW>79PY? z>o39l3>5m_twr=U(4MbrLH1utx=_1_z5C5JQSOkgpoQ>r7&L?kD4rT&EusU0GHtuh z6WC8slWLfHM~(zwJu8BlNxh|zn?w%omr`W?99+{@s1BFu5>1mqlQFpfVNVzM!JW_} zmI-DjuTvR$JHLkgYVaz*v#6^g<|adFxIcq4geyyGd>(h|MIz@v%LPH6F2Bif2OZd` zcK*ulB)|7|U$4z&nPnLuSg`bGwPU&5XgJO5_&$5AWTNCCk>kycFHhpmmDS&NOf!y` z%(hhi-Lb+|FK+5H+mA5lDefllSAD8%7_!xfu%x6H+!yCjZg*njUUC0o=t5n;s#C+|xgDnIVCO`OtIBj)wdt0dz(+h;`CHe{ zV63vIyOHBWky?>PtesvlGTg~;jYIPaRNFuE(3~s`{A~`nn>|fEsz*<|7q40aTpJyN zbo&chcHE&b8E~jq_~9BKsX%IhbE*_y&#HC*o!KmF!nGWs?}OwFSegv^Iw=I#GF!&q zc2#;>_U@MjwAHk5eczcM(%&h3Igc99o9>RT7I}@rI4#EOAUFJWJnt%+nn;Abt~{k@ z%)?gyS#=Q@g%U$AwfmY(|5m&r_&H+jb`%{tF3jwH|7YOeiQ{PXIdLqwPQI)`JT#1n zx7AAQodmsWqyFok`i%YDh1{cfZPIqH1C4`XAzv!eLvW*jtCPPeNU~}a?zMk9f8zC@ zpcBeZPbXY1hPSo6_8gU2)FY04HZk)Tx_H%`xVM~xleySKK?fn$^Q6Uns4s2zBV+9P z(i89Eav;|axPG`a6Jp^M$(csP@$=*9#_AFq_^mg(Z_@DsekzEM8A(Rb z$YLL!;q|Pe;|sdQ{d_qg*D6=2$S?VL3z`hb+UA%Ere=yv+ILoN`RkptXNZEXCkugD zh{toN?H)a>(aY?=cyri?J*};>Vhy-riL@GCEv0pjXGVWEylTYU6~EH?jpSVaf9R}w a6|R@%kp&T(ntcA51&|h(|4}KbANW5Y6|Zmr literal 12608 zcmV-GF~81002Y?1^@s61{yxO00001b5ch_0Itp) z=>Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2iyf0 z2{<1)KpZ0g03ZNKL_t(|+U=crcobFku;1#vvvx?x!X6ee7*G;aKt+XdhQ$#D)NvU_ zVFC!sfQ}oCqM{BCpeP85AT9$g2*R)`5D_%2NdyC7Ujy0q?yBnbet&c)>Fi-~X1?FU zd7gTbRNZsy*6p{?z31FhH&R3(LRP>5ga@>v%zA-9gNX`<1GB-5>QE5~078R8DYupr zZV3l{KD%}cV3C-#!&zU2}J^Sn>fsom+n^4Qj=$BnsPygxXo)^CyJ;{;mY|2%YFIRj+SWJ6* zbZiH}-UC_0_q#=8?fkjXdnY9&i*&!g6B83j1jdc)BLO5PC5!57KuXHE|0>Wrj|Pk( zpmG|GE&`p_hS?I0%_b-)si1XKJFKdUkf0#&c;Rt+97IHPrXb(hqMK|_+arpLiwFy| zAZc}1{2>xkQb0BgEpGChIl|#` zajEd7-x4Q!jUPkh)^FMDst|V_vr9GLB#9q>{+XcQP?oM-Ltv7>^MFEP>Ep7iwpx&_o2Jr;0+Qwc_^4PsI9 zS3LIUU-;+je-P0s2t~CLVA4=lQGm;%dJngq3q?g-C@5<720Qm=iv0Y1LPA2&YPD#! zng*?2m4&+$=>t;wIB#br0m&d5gRdbt$36S3uAjo9mgIV?4QUzaQa5g)vE|Wy~ z#4^eb?5Dh}1Y@X%RWUjN@Xow>qFCsNYS)q6oHJM}%duE2*laR^K|uhN6&7HvC}*k>sRA_9Z8=uMV6o`f?{Fi=?Dv@tXnYq5`)Qf&)CHrfy{7#L2Au zW(_a@Z3b!E_YrIiLMt>_0wd8$0R$Su(7KJpv$&)3A%T*7;%Z2ZiS5}KkNe~lT%+Z`p`C9oz=3_S*=$IXgz!{=B;j&8(dnJ! z=AI!sCcIW<|K9YYC@C-Ji_e!bXz(z8+5ZcXk&%Rkh7uSUh$KlkosKKk_m6er98ZBC_ z7M)H5CY9Q0s;ciYPG1UiVy->wp}s!nzDvf5T;xN zd<{WpRn^Oe4?r(=vGU-J{Jw+06H^19zo<4Vfx#if_391QGE|3?z~B%Zij2W%M5EKw zzvp!vIGuxPvvT6xxl5Zfw*ai<C>fTphN z0?Yv@ih|Q^N5VsCp$)ykfX!w@r_szZd)5m| zvAUNRSETddhqXP=PL@D^vODP5{W>B#bf)O+NdPPnkys)kDZG$Fc}XGI?Ho9rgWeQ? z!Dy^D1TC7PcpWsaW8!l@5}SZ9B|W{?oUzJ@NlZ*6#ph82oH})ixpU_-b?Q_AVq;^8 zii#pCDymj}Uw{2I`T6;rI&})5T1RJ9tQd_(^cn-`TxeV-gisJb>(;F)E-uF7@emmq zNkv6PwIypv&KytUh^lfvCx`vNWZ+RNF`LcEvWyS{r_+gDwOx``yA=4wfiw;f-uYmQ zAoPc?3c989=821eur7Rsg#`fY-(MfTDsQwP=M=Hm_T<8`!#GtL0FyyacuZT=pg@WW za_im4U^LdYY>A1rK&t|%&$txQ8wj_gHxRa|t6TSX|N5%{topfn^=fI#lqsUFwX2e; zQ>XIoyYEW(-g~d8($N5DHCmh=2gSw3xZN@y;XnvMR#q03m6Zq~$jQmUX0zdPHST!) zl9@$XS{elf`5ZiWko^37^78V?&(Ej0xEQ()*9 z>r_9LUSmLK0?BE_<+7sH>Co%-XfzsBRmJUgV>X*n6a}}tVTd|*YDaNNJ}#G=l9CeC z3PDIn2mk>A0eFPK?eY93^S^zGi6SvEo%EE3=X?@K!fOQ^l*RMs3$50TLvGmNcw+Ko zY3aOq%>tP6oLNNNkkBId0Jd!V5kpKDZs?PUtD=Nc*}qa=Qb=g4)&zuDP*oX+T#3`= zLa)=IHwEBSWmHw+#$NI4`hG*xjzoHTv%%)ei3aB6%1l>~>UH#o?&LBOH{Mms4C^jMZvIQ52s8;T=ltc6)=3d3wx4($q=g`FP1eTj)8(dThA)tOZgHUytkaSR;bXu`s`6vCrNy0r*C zfIa*7^Sg)dWy$O}2p{((uJ*k!7>!sfN|7tdD9SreMMVXAoeoo=Hzt^ybB2D2efVJZ zJ5qCwM&fTg-&PbwQWT}yH>f%kMX9>h%QCV4u z#bTkXtgQN`jm-f8dd79F?v#T^PKt#KKg40T<1(4Np0eA0#U8#ExZ~1WhK&>EZj{RSdk>h4u^MMDQToD4qu=2bSe2FJY508AH=bfCP^3LWGtOGPc#H# z(rkqRy$tm147bF)c>TljX6t)m zeb5tU&Wj~W7SpTO^_)Im$cvNzB3+Ib{6Cf*Q>)F(r(1YOvHUlG&bnT3mBp-z1NyHQ{}#y$QeMt7@%2}`u!P34H*-IcG2sLR z>Ty&=H>v1yALpjqLixj8Z?&jF$4=#l-Me>kp}2zQCyu#f0ROM1W_`P6jY!?`GXU}3 zx?GgC`~O)QeaKQph_qCQiBaj@+l16e^tozM-_YD@{dyr{VpI|m%u-ABN=r(_uUodD zJ#vIVSw^GNVTgzz^h>0)%Y%^lQi`R+-diX&%Ffu!Njcizm_ zBj>nKR0bv!RFv@P)A#ZC(4H;2?+s&{_V|BU-16kuZO0Yy>^q-T|K0wk;jA7TEouBM z-m|k$ij1^W1}2=Me?lp-vAOh4PABh7^~>h;0jAGB zS!?Lsx@?(hX%_NIO@J4|j0~mvQ>oGi82ZR` zdJlW9p8ond{mD)34^T_Lth7{EKmHh--A+mC)&#xzCbthCE`?ew)tw~UY=mcJVQ@OJ zI-Ll+ozl&laagSll98I4%Iejt$;`|I;Jfd>WA*CQ?Af!YX~)XtV%@rRj2=Cjv17-w zY}qnYRjsy!mjYrHNDH1x#2+SyQqd?-Z!JG4(he0db=0-Ycs!oD-yFph63x92jc@W^ zt6zSYsPHh{rRQlM-I|vk?I+2qLr89c-XqY<<-9PoUyItE{q^h8y6;nYaNc(E%GEl< zUCURq($A?Pv4Mov9=F}c-SL5v4q(BmQ-GN~#lo_TFf5jAmaG~`W=0sMFhB)Rz*O`5 zY#(s``cl6`4DGM7eog`t7u3}Usox<`RiLz5f9Kk@w7GBrRii;X^9*slde!=N78VqU zBQs`jeMJR(+q6M@*IigvuB3HE1x34d5i@Ae6&)tcJ}bR;?OJy1*ufWHe8FRnJ;nnM zJWvb7mJHASAWiu&lNpc4^U5b#m_nj)D&^e!(0Jx-uf4c`|7$-9#qOq6uz?`6j%OET zQgr+$9{$rPUViwxMsF&s4iR87NC4yC+aewqa18?&gWDysX4)T#X&o#9yuSWbUQFID zWVeg=pBgANH`lAkIZUORKy+yHefLpXg~-TpkkHP+uW3CXLz^-perpEB5dGJymY~aGz%vB5f`h{f8-%j55;hbFnWiXDJwN|Dz_BW zFjCXXC{=_AGfPrxhFVJ>VCD24UNb)J5bKwCe~*m`tECTM+p~vG8VzNUkqj6%tkwe+ z7Z-~I)2EYo;R5^HwIgowWTM-&k=DNOf@mkp6dXKw#R2q}va&MPuV2ruUAtJibSck0 z_Z));4Qi1^{Of{r;dBZ5#f9_Hh7-I!_Ijqw-;GAAqvZ5nM!&e2ITI3U0X68kRPp4H z&g2#=^y+M3;;i*l<{#sQXP)4(-^VrzUx%cRMe9dDAb7;v;_#wLw2cgw7F7*%LHcUF z!)HpwWAAU`AFH={ryO||qFr=I^>tHN8vxYO3)OYc|J%cKi45XczLj8;j_6QRgKe1b zb&*)~$rk|Z0T%gLx_5?$OYbz&c1=cx>a}iuvMLSUTo%TX)C7hmz_TNAS@LWK1N+xl zy)sn+6}E0wL|uKU-$|r?-t?jMZ+hX&JhZ;PK42~>A=GTf5fg*aXsj7_Wm)We=_TU! z?N?z`_k9(dpZ4jnqwq=$U}Yd?uz zoh`WB9**QxGG%0Uo|&79MrWYtL>hm(e>m?=Osu7R`{YgH<%fIl-pZqNj0$AJ%$1lz z+wk&~C!2)te14_KFD}LAlBo1Z^nLluMxW!^#XH#Z>mjrutwC?%@5^@M58t;h-%awQ z-=Q^_k+gc2O#3rkB7-l)_U{-VH6(yk>@8pR&OYMZ{-mY-z9?Z5F?XEbmO&8(y`l$ z**15O^vIx2O@4sG-dKa(CD0npfC1rg^Y87)8#K-9-xw~1ghk*MPA~-U`OfTG*Hx#R zKmF}pG+I61&U}nE7Bd&h6ej(1dG&C-VDoX*vb;LZgr>o^Ssl&K6*UP7bxo=dEJY4MWEdz_i*WrWe#syWx&dxqd=(U2q69&;cW>SOt_K*+=4kp}} zVdHc<#ky(Jh}yA(oXAKlGiTBvwvGkJ%R}dMBAZPAsbDj$TD4;I=+PWJc#xM~dWpcm zzWqS;67dMy=Vd>>_477SF7&vU&ckk5S5UIk4)b7I~^2!-GM1aC_{8 znzS7L;7RTo(6v$BrB4lm@*+?x=-D=`mSbVkYq|ga`;jynj5;lLmz%Nw__9{qZ{;^D zP)qY_#Q@uc>ZC^>ez4xX{=lQZ^_T0>Y9yYY{SASwyHIo@jYAvWY}A_VT)Tjf039Q4ZHHE;XYXfYTO5E~ zGUYDx8UeDEPo5e|P@q97tx)QH=_3QQ8H{}kC^x89zGJNC%r2PGH(o@Ds<3~RPz@I-a5b5Vs zvF*4bCVX8aCVX8aE|j|jfKHMmY4OTjv2*4rFF&=cih`=Z%vHVV9h;5HDKaz7EZJaT z_QcrgRe&)gW7s+K6k=yWoo3bOPXkP0V=)0shOTG!#8^_7K;j?%z~LP`xUN+z%HMj6 zYs<>0uviFq`)zLM+qd3>?wLE68;Xj^iHhQe!Go_ja8;Q;k&%(ydh4zHuj^nZL)L_M((-Q6?AP2IbaHs?>$$LkM>u?tpX9QCfyNU-(D8E~q^ zL1Q8WOxh`xF~cSi8xzCGVcs>}*e+e9FW!AubkEGBO;{KLICkfq47v5z zdf}Me3m4M$n{Utr2UBp@UGxeMml|4%8#QVaef#$1mRoKC;E_ijp}f4D-o1M_*@14i zo6yiuh7TXk)!P!pehjtmf13Us{uTr!}cxx^qyi6_hHE_v<&_U`SpbF1MSK%1Z1VI-qpxhC{DMK6w(; zjvZJ^OEK$ooE|lbyI*}(y3)xAWo2a?J9doN*jOSWB3hh`(DCMn#hPUci0cr{zjt0> z=KISDX%o+m5AObtF8u56o+(^99bf>vl|eVevGwiyrKrajiu}?_FPKi5=*URUq>RC+ z*Vc*yn!?)D4l?_otg?O=v-Vq8{``4?IJD#2TIXJS=Fysj)XtqHsZ$Fzu0O(UiWl6R9q=0RaJ0Wo4yUw|Frf_Uxg1 zU?Aec1;n94xJpa0+U=CPT$F`{QSj$Kb9W0i5W19P1dGMOjW^!dXo5mR@~4?Ui=S7| zW6Ued7;tNU&KAhT^}dZSr{D4)&pKH?bp$Vbz7xr$MNtEZ4E9>U&z>60$ahxIHZmMp z3FQ0fBdg)7m4DrhT*D}kOn)cR1qRAvy9wa6|)JVO%@XRn+R(FyvEY1 z)~A&UfBm}Na$|b?Gc(2E@4h4Op!lS&z^A_0;CH|R zvQi4`)e@i75%?$24wyq$%F6%dLn%%n%=$}DTMY)bTcp-xC6Krumh)nZNMjd zV%=S5Y#n@1EMm z5D>CZZw|h}<8lb6YCEXWX!7i~@+X0Hz{0Ez^ENaE--^{68UOgbj2U+ACH2pe^@qix zPgisQy+c|C;pm`+!1!iLE#edFgz9-K@k!l)lVqj1fu+PJ*@1U_^o|2&`@y#q*a7qb zRsp^JAsI1ZMD;RNMMVW3kB5~jSBlGlu(^7N{C)@Fx#9jO_VPhrcZ}rA6SH0Pvk<)iF;@PdNoITLHL6dK2z8FA1|NQe}?@WHF!Z$lkcC08VVCmGm znL2;V-Fb)805&uR-=?&qbm-m(<7IfUM!l8}-TSa9?I`ao-!GbkaCFc{z#FfM(Lzr> zbnv+tXI=2C6LQ@E;~5>)iBGIUs=_d@0r|j`s+BXm8D$!vzYo4{z(+p#`T~1_1mHb? zNXp8}IDGhUZ8yA4n@fhUCH0OPHHsm>AHv5Uf6V^<*<62pT%+~v-=EDpGp4flaDlk- z+DJ)~q-v7lh7AOk(|=$rYTgn?PTyG#T;}Xcn`VCY*=KEKSx!||b(f+jon%>__WJ9u zubMPzQeQ<;Qi0dwhfdZ6weIi@a5tcrBrTF8@!;LJ)2nkUg3Wp)Nn+wX*YU&tR;=HB z2Bo|Z;M>OF`)=nkx^|4FxWax#hVrf*qxo*}z|DA*9r^$tk(ILAKZKE*np$hf zUAc0l@Lc9j2ra31Ms5Bl zLrnyjbQG1Vcm$luuf*Z<@WZwrd2sk2uoa&J*wh$&T{=V|+g${hbbRpXI&OXPqv~h% zxLs(pIy`O{rl3|{@7G#Vea?U7Vu-#uQ3q7mF5tNXEVl4rCo@us&1t7*@_)f+R_dcy_CIo-uGJ36ezb5sRB`&&MBs z93{*05k*mcQdPA`QIxf^EN_`GVZx8HEbowIxp&o86_O;i)fodq0rnp8`g~p6gwQI) zM08jHvg+Nb;Z$Cw!w_IGTqu!oIaIPX%)8JOd;sAgMt(o=w(2r2-~QZXRtF)02DWb9 z3c#R2gQ&1MumpJ%LUg*Cpme3|q^MkN3c}IV!){aX`9oMU9FNukKLHEz?qsH|AKqg) z-tEh$`G)Jo{_q{&&`#`EsNS^b_=a`@z~#|%&~F4dyt0kBcI1V6=G(u#PUEcg^Ps(U zy)+(Fh^d?8__$jkN=!6(?Yyg4)01&iE zL_t(j{r8AzX^3fl{WfM9V$8B;`*-o;#T{i?&QKI(o1!QMvMldaRdt&z%ik-CvO|_- zi>j(!ola*j0F74HL#sDhv>FMWR)f~};=WF+!JyY*Q=GUx0;6851h#5x2r$;)Ea1Hr zzlycnkI4OO&AYF6xT9u=iu_WA;tD%CMKYm* zdQ1i#RbfK6M_@AOP#rExEA7<~zPI96@z?u%NS6LnXt^Bc1KG|FB4SLr3Rw25_btfXi!meFE;&G{bxoIbC+S%Z}_Uzii zu!kO{ZJV}U3z(e^2?>{GdNVR={rS;HA9a&u`3F^1|1Hb1swm1%MNwABvbya=U{ASA$mVs{e}Vq)i^{Lr=$f&6l! z2;g8-@Kr&o)kwHK0*`M1c6!(UvD=+g%C)VW-R{I_)Z=ssOa?Eo8p&G+9#LIq6@+WI zAMrxCzMuDl>2ML7&)1ZVttSrl$6-8Mm%W|d9>ZK}*@{26X z%M?ZFqN?g(x7&T==FOX{H~Z6>f_j>b+Q96yrMTQ4I>&?%-70`q!6tq=QRLZkxWMjo z3w=bWNmpTWP*GA)%K^zRQPAqm81$NI%U1;-Pz_&xsrMNj4i|2x0vKz(lj3$NIDB0x z+g(J3nehnkkXQwBRow=?2Cd#qe#zx;HmYgl{3^WL?A4VAfDe2z!;2E9e0iG^wNzhq zYgv-=DN9m5C9dxS)j#9P5cG+<_T-8=l2!YcrYSkGPX6ESGG7`JD=IwDeNxmSnH`LNnsVRF( z*T720FyEZ;VW0$fu}+D5edV66wuGLh-F;y{k8n5PbY8B$pSbKQ!ybCH+7SuWtK9v! zyK0ruTUyh;V=UkAJP3FA4Zpp6Lt2^_L`8xA{cEh?s#WmFBd}~43>*mAr(mG>y47m! zq^fGAq9{||eDh5KjC%a>$7d;u@~bS%w>h28TikBpZHrOUpF*PDaQ z!sAAG+)k%zOV3<6vp>KVAb#lN!uTPRo{%I7rM!@=4fD49*YWnao1~YL_lWc(h4j9r zH5E1oPPf2h(4f(1Fz7UxjanQ|J$9!7mphQKU?WvKOos&gue74EDwQJ_mM@mGTquNddq! z4M1ohK50B`KzJ_C6ko2sf1tTTyQZ^PMvwM7Z5B%eH(nbl36rULva5icJ`+ZasCQYG z!}!SDa4gO>VdQmaSX2mNZoLFW2VWHM8PF5>oUD`={N{%LAU+8{2!(H%F2T1Z{68ZD z1`lWR=ASuRT-x*;I6Um~Zd7New%Kea6h+x5%kt7kAANL+EX$FyEH84oT!C)4dq8Sx zYQbeb+VF_hksivQh>SpVSFh?NU5= zihcn5c{G3lFc?i>jDfJ2=7-G7)c2RTj$u;vnNktjuK9l}0|ya!27m4%nR`FcM$S8mS4zS2{3 ze-=Botif~3lb3uyj|a{i*vf6c8_t}GeVgvrPpm_#lM!;={;<{a+5D3cB;u2v26_N5 zkd@N>Kc0wBnhcD>n{oOISt+~t|5(JKL*jDcfKrbhzj-=V{LslC0uy}B;Y(Q?=9RZZ zZ^E3P#9cSGWyFBkOKRh)?We@%z2{l@?5+QSbS$5YL)&Bp$+&m7*t%sd8^!aZ(QS5q zb15CLe0S-n7Z$AN+-Hw|bEzNRpvfEO0%IFnxY#;x$W;FmKTM~|=f86%ySXY?Or$#S zwJ4t}8TW)1#qL)0Kg!0v=s$K|()*Kt{qp?Lb$iZod~Ux>(jWBn+PT2k6>km+Zs_{` z(>7La{os!we(<&E`R|;`gsbRW8PWK`x3Q}8I{^=)VFp@epygpSbgI!A?lhXy-^MAdQs zD?eE8f8__OQ%JboPJhc+{rrJu=n?~oUA;$_81K2N=l7MpDpv|XpXD2j54;!AF#rwG zNJJwsz<2K98eRwcbQ+()hD#G^=aA^`k%UF_)WtST7Zf?MQ-ne4+14!S0$N>^{%zw{ z%yqlnWB>KWJ;6?w!2iJG0FMKwOH}{E9iQbJ3|`o7h=u4dFd4i@beQ*Cml~&huutcz zTrPmVIp6py_y#n(ItK&L_(M3}r`xc!lkO!Z$?Ge}NFy$`Vd3H7_jZpq(mmRUKCFF< z_4_@!Y_7}c7`t@FeZj}`TohDzP#shs$uIpODEXy71gQ>iIUQAVzVTJ?MK=*5j1H>> z;dr0!Rk;k&`6k?S@&VSI3_wE~9!~pw9@oC*b}A2qvUR?S-W5%2ZJ;N>(9hG=+F4`1 z2O?7N{LUTgy4Et^eL+qW=NvW^@})AZLF9W%zWSh8S7LL8{%cp6YSc;5(V@D)V3W3A z_h@71)LhrwhBo$+E5Ic;Jq9 z1lEDj<^AW`cK}3NTHa~V7C7Mr@Q$kpUH%*}7T}tT_@B;xWn-z7zhbxjW%rz|cFx;1 z#JVJcqJWK{*#@RoV7LK-KocV*jTw#Spw8}5rI*pL(yf$#Wjp@k%X3!jwVy6>Xu3rj zrLaIPs?&qhEeJAc2r_91F=^<~${+<9H5w%+)9!J|FH0KjN`PLY=FfFG9b-S3@p$m* zyc+nbq{1rm^|l;}$~`C!f#ML1{##0=%jsBL_57B=mUo(8+1RTHUA_gpyb5+ZRA7;+ z)o*3Kw2=$0F5EL4+II&!0wG|_flTmh2DTfI37vLGK$d(0fL|v9ENU}y-qv*+&Tl+Z zGN{X=H(TfuX{^r5Ew{NyJ0Y_^vyjR|8;?m^{gAwM(@p^NxOeVcm&-Bs{WqQpK3C*q z>)vy<;Hz$@PJ`1WP#o~g-#@Gb79UzYbt=<&>M92RT?=>$;3zF$0`n_dz2&KCkMo#D z;Tp|8^UqX8H(V-I=EAvi-~e$bXuIiv{hELbAAEjtVddmw9*2C*k>h86w)--79WDSFVrhT*e>1aVuuHwksZ3-4As z9d<8#e$P;5Yk8;nl|6M8q00ww8$cQ@e|ycZ?6z7~W}nOBlwH4a4mfuNj%|n22WnpO zG`J2nRqutBlRa*={MVC(4o(!<$vmr&ooC1G@ur7MT75lzx808F@}Sj8ga+47D76F! z&@a9L4B!V~C%)t}aEE(_`i6ZCP?fVI`3@ZrqBRB&cDe;W9hX^qppq@wR!$Z= z&}$`hL6JkLov@~Jd+dv+zBIGa?Gp6v7EUWmQ1!)-paA;BMdES8)R$&fx;^&AC%4X+ zTIZ2I0k2n^SK0#jN~=BKYTc`H836j$b{7FG$I~Q)+wrix=K3O^Zq*6TqY=0W^0cAC zJKwAP!g#)NvF^NQ1yBwm*c0<;xTFWnK;4`vx4AGlZXJGa6T5=3yInH#Q&!0iz{ zKW#>(+vQw*=7+cI!iR5dcM-se+@>MSEA^JCdj6~H!j~^vfON$AK4|&^U4KQ8g$Iw% zL|K6h1Yh80N6p-CQ!?&{s=%qTMw@!`a&Q|4x%Nn$+hs^=|EpulJ9(ZpkJ;!FltX(% zghzXaFgyNv#t>8f{QSmz)wudwpmd ztuCl_W#z&3I{+8H9kwdYrhOOKHnH{At*P<1-+retJk&&Fn0ITk>3^SIDLn4Q7k++k zYGa-7>2}tS9zb89YpE4VtiA?m!R3ac3OJqz`89BEx^pHEUB&0}<%%XFRP@yB*BUf& zX~ojJcb#^A>f=`eLcZ(BW48urp7H2)*}=a!ZfG#RcK4h6CA~RL&CPnZbl1nV^uzi- z`IsTR^D~lGpPl#b7aG)$x@p2(VC<`}y%`Mf+N;wlfyMcI7EWzRXIxE2_%8$KgYc5l zvBpH8e?3fEkn3i1pOa#Z&q8_p=7)wovE0*MD-Bv;6BB3VQp;Tp=ybC_u-lyrJa+5m z;_dSr)DORP{5=}8Wsq_vtO0000
    {{$item.wall}}
    {{/if}} -
    {{$item.name}}{{if $item.owner_url}} {{$item.to}} {{$item.owner_name}} {{$item.vwall}}{{/if}}
    -
    {{$item.ago}}
    -
    +
    {{$item.ago}}
    +
    {{$item.title}}
    @@ -76,7 +76,7 @@ {{if $item.edpost}} {{/if}} - + {{if $item.star}} {{/if}} @@ -85,19 +85,27 @@ {{/if}} {{if $item.filer}} - {{/if}} - + {{/if}} + {{if $item.isevent }} +
    + + + +
    + {{/if}}
    {{if $item.drop.dropping}}{{/if}}
    {{if $item.drop.pagedrop}}{{/if}}
    -
    +
    - -
    {{$item.dislike}}
    - + {{if $item.responses}} + {{foreach $item.responses as $verb=>$response}} +
    {{$response.output}}
    + {{/foreach}} + {{/if}} {{if $item.threaded}} {{if $item.comment}}
    diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index ff108a8631..ae2530b6a2 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -1128,6 +1128,16 @@ input#dfrn-url { border: none; } +.wall-item-attend-wrapper { + float:left; + padding-left: 10px; +} + +.wall-item-attend-wrapper > a { + display: inline-block; + margin-right: 10px; +} + .wall-item-wrapper-end { clear: both; @@ -3128,6 +3138,9 @@ aside input[type='text'] { .tagged { background-position: -48px -48px; } .yellow { background-position: -64px -48px; } +.attendyes { background-position: -80px -48px; } +.attendno { background-position: -96px -48px; } +.attendmaybe { background-position: -112px -48px; } .filer-icon { display: block; width: 16px; height: 16px; From 5299f259202725644cdaa678ea174d55a5126b27 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Mon, 12 Oct 2015 20:23:09 +0200 Subject: [PATCH 096/443] default value for firstDay in events page --- mod/events.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mod/events.php b/mod/events.php index e601ce8e4e..bf53286c20 100644 --- a/mod/events.php +++ b/mod/events.php @@ -190,6 +190,7 @@ function events_content(&$a) { // First day of the week (0 = Sunday) $firstDay = get_pconfig(local_user(),'system','first_day_of_week'); + if ($firstDay === false) $firstDay=0; $i18n = array( "firstDay" => $firstDay, @@ -289,7 +290,7 @@ function events_content(&$a) { $m = intval($thismonth); // Put some limits on dates. The PHP date functions don't seem to do so well before 1900. - // An upper limit was chosen to keep search engines from exploring links millions of years in the future. + // An upper limit was chosen to keep search engines from exploring links millions of years in the future. if($y < 1901) $y = 1900; From 1df5a7212b7c6ea9485f0e00ebaeebc79d2d23bd Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 13 Oct 2015 17:06:35 +0200 Subject: [PATCH 097/443] DE: translation of the attend strings THX to Abrax --- view/de/messages.po | 609 ++++++++++++++++++++++++++------------------ view/de/strings.php | 55 +++- 2 files changed, 412 insertions(+), 252 deletions(-) diff --git a/view/de/messages.po b/view/de/messages.po index 1fce662f06..5e9de2f96b 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -31,8 +31,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-11 10:35+0200\n" -"PO-Revision-Date: 2015-10-12 10:42+0000\n" +"POT-Creation-Date: 2015-10-12 15:14+0200\n" +"PO-Revision-Date: 2015-10-13 12:47+0000\n" "Last-Translator: Abrax \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." #: mod/notes.php:22 mod/poke.php:135 mod/repair_ostatus.php:9 #: mod/invite.php:15 mod/invite.php:101 mod/photos.php:163 mod/photos.php:1097 #: mod/regmod.php:110 mod/uimport.php:23 mod/attach.php:33 -#: include/items.php:5075 index.php:382 +#: include/items.php:5087 index.php:382 msgid "Permission denied." msgstr "Zugriff verweigert." @@ -121,16 +121,16 @@ msgstr "Möchtest Du wirklich diesen Kontakt löschen?" #: mod/settings.php:1144 mod/settings.php:1145 mod/settings.php:1146 #: mod/settings.php:1147 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:4907 +#: mod/api.php:105 include/items.php:4919 msgid "Yes" msgstr "Ja" #: mod/contacts.php:444 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:98 #: mod/videos.php:123 mod/message.php:213 mod/fbrowser.php:89 #: mod/fbrowser.php:125 mod/settings.php:635 mod/settings.php:661 -#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:148 -#: mod/photos.php:239 mod/photos.php:328 include/conversation.php:1115 -#: include/items.php:4910 +#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:147 +#: mod/photos.php:239 mod/photos.php:328 include/conversation.php:1222 +#: include/items.php:4922 msgid "Cancel" msgstr "Abbrechen" @@ -267,8 +267,8 @@ msgstr "Kontakt Editor" #: 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:1129 mod/photos.php:1253 mod/photos.php:1571 -#: mod/photos.php:1622 mod/photos.php:1666 mod/photos.php:1754 -#: object/Item.php:686 view/theme/cleanzero/config.php:80 +#: mod/photos.php:1622 mod/photos.php:1670 mod/photos.php:1758 +#: object/Item.php:707 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 @@ -333,7 +333,7 @@ msgid "Update now" msgstr "Jetzt aktualisieren" #: mod/contacts.php:625 mod/dirfind.php:141 include/contact_widgets.php:32 -#: include/conversation.php:903 +#: include/conversation.php:924 msgid "Connect/Follow" msgstr "Verbinden/Folgen" @@ -459,7 +459,7 @@ msgstr "Aktualisierungen" #: mod/contacts.php:807 mod/group.php:171 mod/admin.php:1087 #: mod/content.php:440 mod/content.php:743 mod/settings.php:697 -#: mod/photos.php:1711 object/Item.php:131 include/conversation.php:613 +#: mod/photos.php:1715 object/Item.php:131 include/conversation.php:635 msgid "Delete" msgstr "Löschen" @@ -533,7 +533,7 @@ msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" #: mod/display.php:82 mod/display.php:283 mod/display.php:500 #: mod/viewsrc.php:15 mod/admin.php:173 mod/admin.php:1132 mod/admin.php:1352 -#: mod/notice.php:15 include/items.php:4866 +#: mod/notice.php:15 include/items.php:4878 msgid "Item not found." msgstr "Beitrag nicht gefunden." @@ -767,7 +767,7 @@ msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl." #: mod/profile_photo.php:204 mod/profile_photo.php:296 #: mod/profile_photo.php:305 mod/photos.php:70 mod/photos.php:184 #: mod/photos.php:767 mod/photos.php:1237 mod/photos.php:1260 -#: mod/photos.php:1843 include/user.php:343 include/user.php:350 +#: mod/photos.php:1854 include/user.php:343 include/user.php:350 #: include/user.php:357 view/theme/diabook/theme.php:500 msgid "Profile Photos" msgstr "Profilbilder" @@ -841,16 +841,16 @@ msgstr "Bild erfolgreich hochgeladen." msgid "Image upload failed." msgstr "Hochladen des Bildes gescheitert." -#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 -#: include/conversation.php:126 include/conversation.php:253 +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 +#: include/conversation.php:130 include/conversation.php:266 #: include/text.php:2031 include/diaspora.php:2140 #: 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:248 include/conversation.php:257 +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 mod/like.php:346 +#: include/conversation.php:125 include/conversation.php:134 +#: include/conversation.php:261 include/conversation.php:270 #: include/diaspora.php:2140 view/theme/diabook/theme.php:466 #: view/theme/diabook/theme.php:475 msgid "status" @@ -905,7 +905,7 @@ msgstr "Erfolg" msgid "failed" msgstr "Fehlgeschlagen" -#: mod/ostatus_subscribe.php:69 object/Item.php:214 +#: mod/ostatus_subscribe.php:69 object/Item.php:232 msgid "ignored" msgstr "Ignoriert" @@ -913,8 +913,8 @@ msgstr "Ignoriert" msgid "Keep this window open until done." msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist." -#: mod/filer.php:30 include/conversation.php:1027 -#: include/conversation.php:1045 +#: mod/filer.php:30 include/conversation.php:1134 +#: include/conversation.php:1152 msgid "Save to Folder:" msgstr "In diesem Ordner speichern:" @@ -922,7 +922,7 @@ msgstr "In diesem Ordner speichern:" msgid "- select -" msgstr "- auswählen -" -#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:61 include/text.php:997 +#: mod/filer.php:31 mod/editpost.php:108 mod/notes.php:61 include/text.php:997 msgid "Save" msgstr "Speichern" @@ -1125,7 +1125,7 @@ msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen." msgid "Unable to set contact photo." msgstr "Konnte das Bild des Kontakts nicht speichern." -#: mod/dfrn_confirm.php:487 include/conversation.php:172 +#: mod/dfrn_confirm.php:487 include/conversation.php:185 #: include/diaspora.php:636 #, php-format msgid "%1$s is now friends with %2$s" @@ -1167,7 +1167,7 @@ msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werd msgid "Unable to update your contact profile details on our system" msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden" -#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4289 +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4301 msgid "[Name Withheld]" msgstr "[Name unterdrückt]" @@ -1204,7 +1204,7 @@ msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." msgid "View Video" msgstr "Video ansehen" -#: mod/videos.php:382 mod/photos.php:1871 +#: mod/videos.php:382 mod/photos.php:1882 msgid "View Album" msgstr "Album betrachten" @@ -1216,7 +1216,7 @@ msgstr "Neueste Videos" msgid "Upload New Videos" msgstr "Neues Video hochladen" -#: mod/tagger.php:95 include/conversation.php:265 +#: 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 hat %2$ss %3$s mit %4$s getaggt" @@ -1292,7 +1292,7 @@ msgid "" "Password reset failed." msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." -#: mod/lostpass.php:109 boot.php:1288 +#: mod/lostpass.php:109 boot.php:1292 msgid "Password Reset" msgstr "Passwort zurücksetzen" @@ -1366,17 +1366,37 @@ msgstr "Spitzname oder E-Mail:" msgid "Reset" msgstr "Zurücksetzen" -#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2156 +#: mod/like.php:170 include/conversation.php:122 include/conversation.php:258 +#: include/text.php:2029 view/theme/diabook/theme.php:463 +msgid "event" +msgstr "Veranstaltung" + +#: mod/like.php:187 include/conversation.php:141 include/diaspora.php:2156 #: view/theme/diabook/theme.php:480 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s mag %2$ss %3$s" -#: mod/like.php:168 include/conversation.php:140 +#: mod/like.php:189 include/conversation.php:144 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s mag %2$ss %3$s nicht" +#: mod/like.php:191 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s nimmt an %2$ss %3$s teil." + +#: mod/like.php:193 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s nimmt nicht an %2$ss %3$s teil." + +#: mod/like.php:195 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s nimmt eventuell an %2$ss %3$s teil." + #: mod/ping.php:233 msgid "{0} wants to be your friend" msgstr "{0} möchte mit Dir in Kontakt treten" @@ -1678,7 +1698,7 @@ msgstr "Unterhaltung gelöscht." #: 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:1023 include/conversation.php:1041 +#: include/conversation.php:1130 include/conversation.php:1148 msgid "Please enter a link URL:" msgstr "Bitte gib die URL des Links ein:" @@ -1700,19 +1720,19 @@ msgid "Your message:" msgstr "Deine Nachricht:" #: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154 -#: mod/editpost.php:110 include/conversation.php:1078 +#: mod/editpost.php:109 include/conversation.php:1185 msgid "Upload photo" msgstr "Foto hochladen" #: mod/message.php:334 mod/message.php:564 mod/wallmessage.php:155 -#: mod/editpost.php:114 include/conversation.php:1082 +#: mod/editpost.php:113 include/conversation.php:1189 msgid "Insert web link" msgstr "Einen Link einfügen" #: 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:1602 object/Item.php:372 include/conversation.php:691 -#: include/conversation.php:1096 +#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:123 +#: mod/photos.php:1602 object/Item.php:393 include/conversation.php:713 +#: include/conversation.php:1203 msgid "Please wait" msgstr "Bitte warten" @@ -1869,7 +1889,7 @@ msgid "" "entries from this contact." msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden." -#: mod/bookmarklet.php:12 boot.php:1274 include/nav.php:92 +#: mod/bookmarklet.php:12 boot.php:1278 include/nav.php:92 msgid "Login" msgstr "Anmeldung" @@ -1891,8 +1911,8 @@ msgstr "Personensuche - %s" msgid "Connect" msgstr "Verbinden" -#: mod/dirfind.php:140 include/Contact.php:237 include/conversation.php:891 -#: include/conversation.php:905 +#: mod/dirfind.php:140 include/Contact.php:237 include/conversation.php:912 +#: include/conversation.php:926 msgid "View Profile" msgstr "Profil anschauen" @@ -3500,49 +3520,49 @@ msgstr "Titel:" msgid "Share this event" msgstr "Veranstaltung teilen" -#: mod/events.php:564 mod/content.php:721 mod/editpost.php:145 -#: mod/photos.php:1623 mod/photos.php:1667 mod/photos.php:1755 -#: object/Item.php:695 include/conversation.php:1111 +#: mod/events.php:564 mod/content.php:721 mod/editpost.php:144 +#: mod/photos.php:1623 mod/photos.php:1671 mod/photos.php:1759 +#: object/Item.php:716 include/conversation.php:1218 msgid "Preview" msgstr "Vorschau" -#: mod/content.php:439 mod/content.php:742 mod/photos.php:1710 -#: object/Item.php:130 include/conversation.php:612 +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1714 +#: object/Item.php:130 include/conversation.php:634 msgid "Select" msgstr "Auswählen" #: mod/content.php:473 mod/content.php:854 mod/content.php:855 -#: object/Item.php:334 object/Item.php:335 include/conversation.php:653 +#: object/Item.php:354 object/Item.php:355 include/conversation.php:675 #, php-format msgid "View %s's profile @ %s" msgstr "Das Profil von %s auf %s betrachten." -#: mod/content.php:483 mod/content.php:866 object/Item.php:348 -#: include/conversation.php:673 +#: mod/content.php:483 mod/content.php:866 object/Item.php:368 +#: include/conversation.php:695 #, php-format msgid "%s from %s" msgstr "%s von %s" -#: mod/content.php:499 include/conversation.php:689 +#: mod/content.php:499 include/conversation.php:711 msgid "View in context" msgstr "Im Zusammenhang betrachten" -#: mod/content.php:605 object/Item.php:395 +#: mod/content.php:605 object/Item.php:416 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d Kommentar" msgstr[1] "%d Kommentare" -#: mod/content.php:607 object/Item.php:397 object/Item.php:410 +#: mod/content.php:607 object/Item.php:418 object/Item.php:431 #: include/text.php:2035 msgid "comment" msgid_plural "comments" msgstr[0] "Kommentar" msgstr[1] "Kommentare" -#: mod/content.php:608 boot.php:766 object/Item.php:398 -#: include/contact_widgets.php:205 include/items.php:5186 +#: mod/content.php:608 boot.php:770 object/Item.php:419 +#: include/contact_widgets.php:205 include/items.php:5198 msgid "show more" msgstr "mehr anzeigen" @@ -3550,69 +3570,69 @@ msgstr "mehr anzeigen" msgid "Private Message" msgstr "Private Nachricht" -#: mod/content.php:686 mod/photos.php:1599 object/Item.php:232 +#: mod/content.php:686 mod/photos.php:1599 object/Item.php:250 msgid "I like this (toggle)" msgstr "Ich mag das (toggle)" -#: mod/content.php:686 object/Item.php:232 +#: mod/content.php:686 object/Item.php:250 msgid "like" msgstr "mag ich" -#: mod/content.php:687 mod/photos.php:1600 object/Item.php:233 +#: mod/content.php:687 mod/photos.php:1600 object/Item.php:251 msgid "I don't like this (toggle)" msgstr "Ich mag das nicht (toggle)" -#: mod/content.php:687 object/Item.php:233 +#: mod/content.php:687 object/Item.php:251 msgid "dislike" msgstr "mag ich nicht" -#: mod/content.php:689 object/Item.php:235 +#: mod/content.php:689 object/Item.php:253 msgid "Share this" msgstr "Weitersagen" -#: mod/content.php:689 object/Item.php:235 +#: mod/content.php:689 object/Item.php:253 msgid "share" msgstr "Teilen" -#: mod/content.php:709 mod/photos.php:1619 mod/photos.php:1663 -#: mod/photos.php:1751 object/Item.php:683 +#: mod/content.php:709 mod/photos.php:1619 mod/photos.php:1667 +#: mod/photos.php:1755 object/Item.php:704 msgid "This is you" msgstr "Das bist Du" -#: mod/content.php:711 mod/photos.php:1621 mod/photos.php:1665 -#: mod/photos.php:1753 boot.php:765 object/Item.php:369 object/Item.php:685 +#: mod/content.php:711 mod/photos.php:1621 mod/photos.php:1669 +#: mod/photos.php:1757 boot.php:769 object/Item.php:390 object/Item.php:706 msgid "Comment" msgstr "Kommentar" -#: mod/content.php:713 object/Item.php:687 +#: mod/content.php:713 object/Item.php:708 msgid "Bold" msgstr "Fett" -#: mod/content.php:714 object/Item.php:688 +#: mod/content.php:714 object/Item.php:709 msgid "Italic" msgstr "Kursiv" -#: mod/content.php:715 object/Item.php:689 +#: mod/content.php:715 object/Item.php:710 msgid "Underline" msgstr "Unterstrichen" -#: mod/content.php:716 object/Item.php:690 +#: mod/content.php:716 object/Item.php:711 msgid "Quote" msgstr "Zitat" -#: mod/content.php:717 object/Item.php:691 +#: mod/content.php:717 object/Item.php:712 msgid "Code" msgstr "Code" -#: mod/content.php:718 object/Item.php:692 +#: mod/content.php:718 object/Item.php:713 msgid "Image" msgstr "Bild" -#: mod/content.php:719 object/Item.php:693 +#: mod/content.php:719 object/Item.php:714 msgid "Link" msgstr "Link" -#: mod/content.php:720 object/Item.php:694 +#: mod/content.php:720 object/Item.php:715 msgid "Video" msgstr "Video" @@ -3620,23 +3640,23 @@ msgstr "Video" msgid "Edit" msgstr "Bearbeiten" -#: mod/content.php:755 object/Item.php:196 +#: mod/content.php:755 object/Item.php:214 msgid "add star" msgstr "markieren" -#: mod/content.php:756 object/Item.php:197 +#: mod/content.php:756 object/Item.php:215 msgid "remove star" msgstr "Markierung entfernen" -#: mod/content.php:757 object/Item.php:198 +#: mod/content.php:757 object/Item.php:216 msgid "toggle star status" msgstr "Markierung umschalten" -#: mod/content.php:760 object/Item.php:201 +#: mod/content.php:760 object/Item.php:219 msgid "starred" msgstr "markiert" -#: mod/content.php:761 object/Item.php:221 +#: mod/content.php:761 object/Item.php:239 msgid "add tag" msgstr "Tag hinzufügen" @@ -3644,15 +3664,15 @@ msgstr "Tag hinzufügen" msgid "save to folder" msgstr "In Ordner speichern" -#: mod/content.php:856 object/Item.php:336 +#: mod/content.php:856 object/Item.php:356 msgid "to" msgstr "zu" -#: mod/content.php:857 object/Item.php:338 +#: mod/content.php:857 object/Item.php:358 msgid "Wall-to-Wall" msgstr "Wall-to-Wall" -#: mod/content.php:858 object/Item.php:339 +#: mod/content.php:858 object/Item.php:359 msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" @@ -4983,7 +5003,7 @@ msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstab msgid "Choose a nickname: " msgstr "Spitznamen wählen: " -#: mod/register.php:277 boot.php:1249 include/nav.php:109 +#: mod/register.php:277 boot.php:1253 include/nav.php:109 msgid "Register" msgstr "Registrieren" @@ -5122,7 +5142,7 @@ msgid "" "of your account (photos are not exported)" msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)." -#: mod/mood.php:62 include/conversation.php:226 +#: mod/mood.php:62 include/conversation.php:239 #, php-format msgid "%1$s is currently %2$s" msgstr "%1$s ist momentan %2$s" @@ -5182,11 +5202,11 @@ msgstr "Familienstand" msgid "Romantic Partner" msgstr "Romanze" -#: mod/profiles.php:344 +#: mod/profiles.php:344 mod/photos.php:1639 include/conversation.php:508 msgid "Likes" msgstr "Likes" -#: mod/profiles.php:348 +#: mod/profiles.php:348 mod/photos.php:1639 include/conversation.php:508 msgid "Dislikes" msgstr "Dislikes" @@ -5487,75 +5507,75 @@ msgstr "Beitrag nicht gefunden" msgid "Edit post" msgstr "Beitrag bearbeiten" -#: mod/editpost.php:111 include/conversation.php:1079 +#: mod/editpost.php:110 include/conversation.php:1186 msgid "upload photo" msgstr "Bild hochladen" -#: mod/editpost.php:112 include/conversation.php:1080 +#: mod/editpost.php:111 include/conversation.php:1187 msgid "Attach file" msgstr "Datei anhängen" -#: mod/editpost.php:113 include/conversation.php:1081 +#: mod/editpost.php:112 include/conversation.php:1188 msgid "attach file" msgstr "Datei anhängen" -#: mod/editpost.php:115 include/conversation.php:1083 +#: mod/editpost.php:114 include/conversation.php:1190 msgid "web link" msgstr "Weblink" -#: mod/editpost.php:116 include/conversation.php:1084 +#: mod/editpost.php:115 include/conversation.php:1191 msgid "Insert video link" msgstr "Video-Adresse einfügen" -#: mod/editpost.php:117 include/conversation.php:1085 +#: mod/editpost.php:116 include/conversation.php:1192 msgid "video link" msgstr "Video-Link" -#: mod/editpost.php:118 include/conversation.php:1086 +#: mod/editpost.php:117 include/conversation.php:1193 msgid "Insert audio link" msgstr "Audio-Adresse einfügen" -#: mod/editpost.php:119 include/conversation.php:1087 +#: mod/editpost.php:118 include/conversation.php:1194 msgid "audio link" msgstr "Audio-Link" -#: mod/editpost.php:120 include/conversation.php:1088 +#: mod/editpost.php:119 include/conversation.php:1195 msgid "Set your location" msgstr "Deinen Standort festlegen" -#: mod/editpost.php:121 include/conversation.php:1089 +#: mod/editpost.php:120 include/conversation.php:1196 msgid "set location" msgstr "Ort setzen" -#: mod/editpost.php:122 include/conversation.php:1090 +#: mod/editpost.php:121 include/conversation.php:1197 msgid "Clear browser location" msgstr "Browser-Standort leeren" -#: mod/editpost.php:123 include/conversation.php:1091 +#: mod/editpost.php:122 include/conversation.php:1198 msgid "clear location" msgstr "Ort löschen" -#: mod/editpost.php:125 include/conversation.php:1097 +#: mod/editpost.php:124 include/conversation.php:1204 msgid "Permission settings" msgstr "Berechtigungseinstellungen" -#: mod/editpost.php:133 include/acl_selectors.php:343 +#: mod/editpost.php:132 include/acl_selectors.php:343 msgid "CC: email addresses" msgstr "Cc: E-Mail-Addressen" -#: mod/editpost.php:134 include/conversation.php:1106 +#: mod/editpost.php:133 include/conversation.php:1213 msgid "Public post" msgstr "Öffentlicher Beitrag" -#: mod/editpost.php:137 include/conversation.php:1093 +#: mod/editpost.php:136 include/conversation.php:1200 msgid "Set title" msgstr "Titel setzen" -#: mod/editpost.php:139 include/conversation.php:1095 +#: mod/editpost.php:138 include/conversation.php:1202 msgid "Categories (comma-separated list)" msgstr "Kategorien (kommasepariert)" -#: mod/editpost.php:140 include/acl_selectors.php:344 +#: mod/editpost.php:139 include/acl_selectors.php:344 msgid "Example: bob@example.com, mary@example.com" msgstr "Z.B.: bob@example.com, mary@example.com" @@ -5779,8 +5799,8 @@ msgid "" msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com" #: mod/photos.php:54 mod/photos.php:184 mod/photos.php:1111 -#: mod/photos.php:1237 mod/photos.php:1260 mod/photos.php:1819 -#: mod/photos.php:1831 view/theme/diabook/theme.php:499 +#: mod/photos.php:1237 mod/photos.php:1260 mod/photos.php:1830 +#: mod/photos.php:1842 view/theme/diabook/theme.php:499 msgid "Contact Photos" msgstr "Kontaktbilder" @@ -5788,11 +5808,11 @@ msgstr "Kontaktbilder" msgid "Photo Albums" msgstr "Fotoalben" -#: mod/photos.php:92 mod/photos.php:1880 +#: mod/photos.php:92 mod/photos.php:1891 msgid "Recent Photos" msgstr "Neueste Fotos" -#: mod/photos.php:95 mod/photos.php:1312 mod/photos.php:1882 +#: mod/photos.php:95 mod/photos.php:1312 mod/photos.php:1893 msgid "Upload New Photos" msgstr "Neue Fotos hochladen" @@ -5882,7 +5902,7 @@ msgstr "Zeige neueste zuerst" msgid "Show Oldest First" msgstr "Zeige älteste zuerst" -#: mod/photos.php:1298 mod/photos.php:1865 +#: mod/photos.php:1298 mod/photos.php:1876 msgid "View Photo" msgstr "Foto betrachten" @@ -5955,11 +5975,26 @@ msgstr "Privates Foto" msgid "Public photo" msgstr "Öffentliches Foto" -#: mod/photos.php:1601 include/conversation.php:1077 +#: mod/photos.php:1601 include/conversation.php:1184 msgid "Share" msgstr "Teilen" -#: mod/photos.php:1795 +#: mod/photos.php:1640 include/conversation.php:509 +#: include/conversation.php:1406 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Teilnehmend" +msgstr[1] "Teilnehmend" + +#: mod/photos.php:1640 include/conversation.php:509 +msgid "Not attending" +msgstr "Nicht teilnehmend" + +#: mod/photos.php:1640 include/conversation.php:509 +msgid "Might attend" +msgstr "Eventuell teilnehmend" + +#: mod/photos.php:1805 msgid "Map" msgstr "Karte" @@ -6019,60 +6054,60 @@ msgstr "Beitrag nicht verfügbar." msgid "Item was not found." msgstr "Beitrag konnte nicht gefunden werden." -#: boot.php:764 +#: boot.php:768 msgid "Delete this item?" msgstr "Diesen Beitrag löschen?" -#: boot.php:767 +#: boot.php:771 msgid "show fewer" msgstr "weniger anzeigen" -#: boot.php:1141 +#: boot.php:1145 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." -#: boot.php:1248 +#: boot.php:1252 msgid "Create a New Account" msgstr "Neues Konto erstellen" -#: boot.php:1273 include/nav.php:73 +#: boot.php:1277 include/nav.php:73 msgid "Logout" msgstr "Abmelden" -#: boot.php:1276 +#: boot.php:1280 msgid "Nickname or Email address: " msgstr "Spitzname oder E-Mail-Adresse: " -#: boot.php:1277 +#: boot.php:1281 msgid "Password: " msgstr "Passwort: " -#: boot.php:1278 +#: boot.php:1282 msgid "Remember me" msgstr "Anmeldedaten merken" -#: boot.php:1281 +#: boot.php:1285 msgid "Or login using OpenID: " msgstr "Oder melde Dich mit Deiner OpenID an: " -#: boot.php:1287 +#: boot.php:1291 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: boot.php:1290 +#: boot.php:1294 msgid "Website Terms of Service" msgstr "Website Nutzungsbedingungen" -#: boot.php:1291 +#: boot.php:1295 msgid "terms of service" msgstr "Nutzungsbedingungen" -#: boot.php:1293 +#: boot.php:1297 msgid "Website Privacy Policy" msgstr "Website Datenschutzerklärung" -#: boot.php:1294 +#: boot.php:1298 msgid "privacy policy" msgstr "Datenschutzerklärung" @@ -6080,27 +6115,39 @@ msgstr "Datenschutzerklärung" msgid "This entry was edited" msgstr "Dieser Beitrag wurde bearbeitet." -#: object/Item.php:209 +#: object/Item.php:188 +msgid "I will attend" +msgstr "Ich werde teilnehmen" + +#: object/Item.php:188 +msgid "I will not attend" +msgstr "Ich werde nicht teilnehmen" + +#: object/Item.php:188 +msgid "I might attend" +msgstr "Ich werde eventuell teilnehmen" + +#: object/Item.php:227 msgid "ignore thread" msgstr "Thread ignorieren" -#: object/Item.php:210 +#: object/Item.php:228 msgid "unignore thread" msgstr "Thread nicht mehr ignorieren" -#: object/Item.php:211 +#: object/Item.php:229 msgid "toggle ignore status" msgstr "Ignoriert-Status ein-/ausschalten" -#: object/Item.php:324 include/conversation.php:665 +#: object/Item.php:342 include/conversation.php:687 msgid "Categories:" msgstr "Kategorien:" -#: object/Item.php:325 include/conversation.php:666 +#: object/Item.php:343 include/conversation.php:688 msgid "Filed under:" msgstr "Abgelegt unter:" -#: object/Item.php:337 +#: object/Item.php:357 msgid "via" msgstr "via" @@ -6716,21 +6763,21 @@ msgstr "[kein Betreff]" msgid "stopped following" msgstr "wird nicht mehr gefolgt" -#: include/Contact.php:236 include/conversation.php:890 +#: include/Contact.php:236 include/conversation.php:911 msgid "View Status" msgstr "Pinnwand anschauen" -#: include/Contact.php:238 include/conversation.php:892 +#: include/Contact.php:238 include/conversation.php:913 msgid "View Photos" msgstr "Bilder anschauen" #: include/Contact.php:239 include/Contact.php:264 -#: include/conversation.php:893 +#: include/conversation.php:914 msgid "Network Posts" msgstr "Netzwerkbeiträge" #: include/Contact.php:240 include/Contact.php:264 -#: include/conversation.php:894 +#: include/conversation.php:915 msgid "Edit Contact" msgstr "Kontakt bearbeiten" @@ -6739,11 +6786,11 @@ msgid "Drop Contact" msgstr "Kontakt löschen" #: include/Contact.php:242 include/Contact.php:264 -#: include/conversation.php:895 +#: include/conversation.php:916 msgid "Send PM" msgstr "Private Nachricht senden" -#: include/Contact.php:243 include/conversation.php:899 +#: include/Contact.php:243 include/conversation.php:920 msgid "Poke" msgstr "Anstupsen" @@ -6765,116 +6812,189 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)." -#: include/conversation.php:118 include/conversation.php:245 -#: include/text.php:2029 view/theme/diabook/theme.php:463 -msgid "event" -msgstr "Veranstaltung" +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "%1$s nimmt an %2$ss %3$s teil." -#: include/conversation.php:206 +#: include/conversation.php:150 +#, php-format +msgid "%1$s doesn't attend %2$s's %3$s" +msgstr "%1$s nimmt nicht an %2$ss %3$s teil." + +#: include/conversation.php:153 +#, php-format +msgid "%1$s attends maybe %2$s's %3$s" +msgstr "%1$s nimmt eventuell an %2$ss %3$s teil." + +#: include/conversation.php:219 #, php-format msgid "%1$s poked %2$s" msgstr "%1$s stupste %2$s" -#: include/conversation.php:290 +#: include/conversation.php:303 msgid "post/item" msgstr "Nachricht/Beitrag" -#: include/conversation.php:291 +#: include/conversation.php:304 #, php-format msgid "%1$s marked %2$s's %3$s as favorite" msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert" -#: include/conversation.php:771 +#: include/conversation.php:792 msgid "remove" msgstr "löschen" -#: include/conversation.php:775 +#: include/conversation.php:796 msgid "Delete Selected Items" msgstr "Lösche die markierten Beiträge" -#: include/conversation.php:889 +#: include/conversation.php:910 msgid "Follow Thread" msgstr "Folge der Unterhaltung" -#: include/conversation.php:965 -#, php-format -msgid "%s likes this." -msgstr "%s mag das." - -#: include/conversation.php:965 -#, php-format -msgid "%s doesn't like this." -msgstr "%s mag das nicht." - -#: include/conversation.php:970 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d Personen mögen das" - -#: include/conversation.php:973 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d Personen mögen das nicht" - -#: include/conversation.php:987 +#: include/conversation.php:1036 msgid "and" msgstr "und" -#: include/conversation.php:993 +#: include/conversation.php:1042 #, php-format msgid ", and %d other people" msgstr " und %d andere" -#: include/conversation.php:995 +#: include/conversation.php:1052 #, php-format -msgid "%s like this." -msgstr "%s mögen das." +msgid "%s likes this." +msgstr "%s mag das." -#: include/conversation.php:995 +#: include/conversation.php:1055 #, php-format -msgid "%s don't like this." -msgstr "%s mögen das nicht." +msgid "%s doesn't like this." +msgstr "%s mag das nicht." -#: include/conversation.php:1022 include/conversation.php:1040 +#: include/conversation.php:1058 +#, php-format +msgid "%s attends." +msgstr "%s nehmen teil." + +#: include/conversation.php:1061 +#, php-format +msgid "%s doesn't attend." +msgstr "%s nehmen nicht teil." + +#: include/conversation.php:1064 +#, php-format +msgid "%s attends maybe." +msgstr "%s nehmen eventuell teil." + +#: include/conversation.php:1073 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d Personen mögen das" + +#: include/conversation.php:1076 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d Personen mögen das nicht" + +#: include/conversation.php:1079 +#, php-format +msgid "%2$d people attend" +msgstr "%2$d Personen nehmen teil" + +#: include/conversation.php:1082 +#, php-format +msgid "%2$d people don't attend" +msgstr "%2$d Personen nehmen nicht teil" + +#: include/conversation.php:1085 +#, php-format +msgid "%2$d people anttend maybe" +msgstr "%2$d Personen nehmen eventuell teil" + +#: include/conversation.php:1087 +#, php-format +msgid "%2$d people agree" +msgstr "%2$d Personen sind einverstanden" + +#: include/conversation.php:1090 +#, php-format +msgid "%2$d people don't agree" +msgstr "%2$d Personen sind nicht einverstanden" + +#: include/conversation.php:1093 +#, php-format +msgid "%2$d people abstains" +msgstr "%2$d Personen enthalten sich" + +#: include/conversation.php:1129 include/conversation.php:1147 msgid "Visible to everybody" msgstr "Für jedermann sichtbar" -#: include/conversation.php:1024 include/conversation.php:1042 +#: include/conversation.php:1131 include/conversation.php:1149 msgid "Please enter a video link/URL:" msgstr "Bitte Link/URL zum Video einfügen:" -#: include/conversation.php:1025 include/conversation.php:1043 +#: include/conversation.php:1132 include/conversation.php:1150 msgid "Please enter an audio link/URL:" msgstr "Bitte Link/URL zum Audio einfügen:" -#: include/conversation.php:1026 include/conversation.php:1044 +#: include/conversation.php:1133 include/conversation.php:1151 msgid "Tag term:" msgstr "Tag:" -#: include/conversation.php:1028 include/conversation.php:1046 +#: include/conversation.php:1135 include/conversation.php:1153 msgid "Where are you right now?" msgstr "Wo hältst Du Dich jetzt gerade auf?" -#: include/conversation.php:1029 +#: include/conversation.php:1136 msgid "Delete item(s)?" msgstr "Einträge löschen?" -#: include/conversation.php:1098 +#: include/conversation.php:1205 msgid "permissions" msgstr "Zugriffsrechte" -#: include/conversation.php:1121 +#: include/conversation.php:1228 msgid "Post to Groups" msgstr "Poste an Gruppe" -#: include/conversation.php:1122 +#: include/conversation.php:1229 msgid "Post to Contacts" msgstr "Poste an Kontakte" -#: include/conversation.php:1123 +#: include/conversation.php:1230 msgid "Private post" msgstr "Privater Beitrag" +#: include/conversation.php:1378 +msgid "View all" +msgstr "Zeige alle" + +#: include/conversation.php:1400 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "mag ich" +msgstr[1] "Mag ich" + +#: include/conversation.php:1403 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "mag ich nicht" +msgstr[1] "Mag ich nicht" + +#: include/conversation.php:1409 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Nicht teilnehmend " +msgstr[1] "Nicht teilnehmend" + +#: include/conversation.php:1412 include/profile_selectors.php:6 +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Unentschieden" +msgstr[1] "Unentschieden" + #: include/network.php:968 msgid "view full size" msgstr "Volle Größe anzeigen" @@ -7127,7 +7247,7 @@ msgstr "Verschlüsselter Inhalt" msgid "(no subject)" msgstr "(kein Betreff)" -#: include/notifier.php:850 include/delivery.php:467 include/enotify.php:33 +#: include/notifier.php:850 include/delivery.php:467 include/enotify.php:37 msgid "noreply" msgstr "noreply" @@ -7553,11 +7673,11 @@ msgstr "Freigabe-Benachrichtigung von Diaspora" msgid "Attachments:" msgstr "Anhänge:" -#: include/items.php:4905 +#: include/items.php:4917 msgid "Do you really want to delete this item?" msgstr "Möchtest Du wirklich dieses Item löschen?" -#: include/items.php:5180 +#: include/items.php:5192 msgid "Archives" msgstr "Archiv" @@ -7613,10 +7733,6 @@ msgstr "Nicht spezifiziert" msgid "Other" msgstr "Andere" -#: include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Unentschieden" - #: include/profile_selectors.php:23 msgid "Males" msgstr "Männer" @@ -7797,242 +7913,247 @@ msgstr "Friendica-Benachrichtigung" msgid "Thank You," msgstr "Danke," -#: include/enotify.php:23 +#: include/enotify.php:24 #, php-format msgid "%s Administrator" msgstr "der Administrator von %s" -#: include/enotify.php:64 +#: include/enotify.php:26 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "%1$s, %2$s Administrator" + +#: include/enotify.php:68 #, php-format msgid "%s " msgstr "%s " -#: include/enotify.php:78 +#: include/enotify.php:82 #, php-format msgid "[Friendica:Notify] New mail received at %s" msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s" -#: include/enotify.php:80 +#: include/enotify.php:84 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s hat Dir eine neue private Nachricht auf %2$s geschickt." -#: include/enotify.php:81 +#: include/enotify.php:85 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s schickte Dir %2$s." -#: include/enotify.php:81 +#: include/enotify.php:85 msgid "a private message" msgstr "eine private Nachricht" -#: include/enotify.php:82 +#: include/enotify.php:86 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten." -#: include/enotify.php:134 +#: include/enotify.php:138 #, php-format msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]" -#: include/enotify.php:141 +#: include/enotify.php:145 #, php-format msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]" -#: include/enotify.php:149 +#: include/enotify.php:153 #, php-format msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgstr "%1$s kommentierte [url=%2$s]Deinen %3$s[/url]" -#: include/enotify.php:159 +#: include/enotify.php:163 #, php-format msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s" -#: include/enotify.php:160 +#: include/enotify.php:164 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s hat einen Beitrag kommentiert, dem Du folgst." -#: include/enotify.php:163 include/enotify.php:178 include/enotify.php:191 -#: include/enotify.php:204 include/enotify.php:222 include/enotify.php:235 +#: 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 "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren." -#: include/enotify.php:170 +#: include/enotify.php:174 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben" -#: include/enotify.php:172 +#: include/enotify.php:176 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s schrieb auf %2$s auf Deine Pinnwand" -#: include/enotify.php:174 +#: include/enotify.php:178 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s hat etwas auf [url=%2$s]Deiner Pinnwand[/url] gepostet" -#: include/enotify.php:185 +#: include/enotify.php:189 #, php-format msgid "[Friendica:Notify] %s tagged you" msgstr "[Friendica-Meldung] %s hat Dich erwähnt" -#: include/enotify.php:186 +#: include/enotify.php:190 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s erwähnte Dich auf %2$s" -#: include/enotify.php:187 +#: include/enotify.php:191 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." msgstr "%1$s [url=%2$s]erwähnte Dich[/url]." -#: include/enotify.php:198 +#: include/enotify.php:202 #, php-format msgid "[Friendica:Notify] %s shared a new post" msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt" -#: include/enotify.php:199 +#: include/enotify.php:203 #, php-format msgid "%1$s shared a new post at %2$s" msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt" -#: include/enotify.php:200 +#: include/enotify.php:204 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]." -#: include/enotify.php:212 +#: include/enotify.php:216 #, php-format msgid "[Friendica:Notify] %1$s poked you" msgstr "[Friendica-Meldung] %1$s hat Dich angestupst" -#: include/enotify.php:213 +#: include/enotify.php:217 #, php-format msgid "%1$s poked you at %2$s" msgstr "%1$s hat Dich auf %2$s angestupst" -#: include/enotify.php:214 +#: include/enotify.php:218 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]." -#: include/enotify.php:229 +#: include/enotify.php:233 #, php-format msgid "[Friendica:Notify] %s tagged your post" msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt" -#: include/enotify.php:230 +#: include/enotify.php:234 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "%1$s erwähnte Deinen Beitrag auf %2$s" -#: include/enotify.php:231 +#: include/enotify.php:235 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]" -#: include/enotify.php:242 +#: include/enotify.php:246 msgid "[Friendica:Notify] Introduction received" msgstr "[Friendica-Meldung] Kontaktanfrage erhalten" -#: include/enotify.php:243 +#: include/enotify.php:247 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten" -#: include/enotify.php:244 +#: include/enotify.php:248 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten." -#: include/enotify.php:247 include/enotify.php:289 +#: include/enotify.php:251 include/enotify.php:293 #, php-format msgid "You may visit their profile at %s" msgstr "Hier kannst Du das Profil betrachten: %s" -#: include/enotify.php:249 +#: include/enotify.php:253 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen." -#: include/enotify.php:257 +#: include/enotify.php:261 msgid "[Friendica:Notify] A new person is sharing with you" msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir" -#: include/enotify.php:258 include/enotify.php:259 +#: include/enotify.php:262 include/enotify.php:263 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "%1$s teilt mit Dir auf %2$s" -#: include/enotify.php:265 +#: include/enotify.php:269 msgid "[Friendica:Notify] You have a new follower" msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf " -#: include/enotify.php:266 include/enotify.php:267 +#: include/enotify.php:270 include/enotify.php:271 #, php-format msgid "You have a new follower at %2$s : %1$s" msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s" -#: include/enotify.php:280 +#: include/enotify.php:284 msgid "[Friendica:Notify] Friend suggestion received" msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten" -#: include/enotify.php:281 +#: include/enotify.php:285 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten" -#: include/enotify.php:282 +#: include/enotify.php:286 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] %2$s von %3$s erhalten." -#: include/enotify.php:287 +#: include/enotify.php:291 msgid "Name:" msgstr "Name:" -#: include/enotify.php:288 +#: include/enotify.php:292 msgid "Photo:" msgstr "Foto:" -#: include/enotify.php:291 +#: include/enotify.php:295 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen." -#: include/enotify.php:299 include/enotify.php:312 +#: include/enotify.php:303 include/enotify.php:316 msgid "[Friendica:Notify] Connection accepted" msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt" -#: include/enotify.php:300 include/enotify.php:313 +#: include/enotify.php:304 include/enotify.php:317 #, php-format msgid "'%1$s' has accepted your connection request at %2$s" msgstr "'%1$s' hat Deine Kontaktanfrage auf %2$s bestätigt" -#: include/enotify.php:301 include/enotify.php:314 +#: 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 hat Deine [url=%1$s]Kontaktanfrage[/url] akzeptiert." -#: include/enotify.php:304 +#: include/enotify.php:308 msgid "" "You are now mutual friends and may exchange status updates, photos, and email\n" "\twithout restriction." msgstr "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen." -#: include/enotify.php:307 include/enotify.php:321 +#: 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 "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst." -#: include/enotify.php:317 +#: include/enotify.php:321 #, php-format msgid "" "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " @@ -8041,33 +8162,33 @@ msgid "" "automatically." msgstr "'%1$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen." -#: include/enotify.php:319 +#: include/enotify.php:323 #, php-format msgid "" "'%1$s' may choose to extend this into a two-way or more permissive " "relationship in the future. " msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. " -#: include/enotify.php:332 +#: include/enotify.php:336 msgid "[Friendica System:Notify] registration request" msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage" -#: include/enotify.php:333 +#: include/enotify.php:337 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten" -#: include/enotify.php:334 +#: include/enotify.php:338 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten." -#: include/enotify.php:337 +#: include/enotify.php:341 #, php-format msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -#: include/enotify.php:340 +#: include/enotify.php:344 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Bitte besuche %s um die Anfrage zu bearbeiten." @@ -8209,7 +8330,7 @@ msgstr "Hilfe oder @NewHere" #: 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:331 +#: view/theme/vier/theme.php:334 msgid "Connect Services" msgstr "Verbinde Dienste" diff --git a/view/de/strings.php b/view/de/strings.php index 620e0e5511..b0fcff3f97 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -285,8 +285,12 @@ $a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?"; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."; $a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:"; $a->strings["Reset"] = "Zurücksetzen"; +$a->strings["event"] = "Veranstaltung"; $a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s"; $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht"; +$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil."; +$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil."; +$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil."; $a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten"; $a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht"; $a->strings["{0} requested registration"] = "{0} möchte sich registrieren"; @@ -1354,6 +1358,12 @@ $a->strings["Rotate CCW (left)"] = "Drehen EUS (links)"; $a->strings["Private photo"] = "Privates Foto"; $a->strings["Public photo"] = "Öffentliches Foto"; $a->strings["Share"] = "Teilen"; +$a->strings["Attending"] = array( + 0 => "Teilnehmend", + 1 => "Teilnehmend", +); +$a->strings["Not attending"] = "Nicht teilnehmend"; +$a->strings["Might attend"] = "Eventuell teilnehmend"; $a->strings["Map"] = "Karte"; $a->strings["Not Extended"] = "Nicht erweitert."; $a->strings["Account approved."] = "Konto freigegeben."; @@ -1382,6 +1392,9 @@ $a->strings["terms of service"] = "Nutzungsbedingungen"; $a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung"; $a->strings["privacy policy"] = "Datenschutzerklärung"; $a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet."; +$a->strings["I will attend"] = "Ich werde teilnehmen"; +$a->strings["I will not attend"] = "Ich werde nicht teilnehmen"; +$a->strings["I might attend"] = "Ich werde eventuell teilnehmen"; $a->strings["ignore thread"] = "Thread ignorieren"; $a->strings["unignore thread"] = "Thread nicht mehr ignorieren"; $a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten"; @@ -1546,21 +1559,30 @@ $a->strings["Welcome "] = "Willkommen "; $a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch."; $a->strings["Welcome back "] = "Willkommen zurück "; $a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."; -$a->strings["event"] = "Veranstaltung"; +$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil."; +$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil."; +$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil."; $a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s"; $a->strings["post/item"] = "Nachricht/Beitrag"; $a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert"; $a->strings["remove"] = "löschen"; $a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; $a->strings["Follow Thread"] = "Folge der Unterhaltung"; -$a->strings["%s likes this."] = "%s mag das."; -$a->strings["%s doesn't like this."] = "%s mag das nicht."; -$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; -$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; $a->strings["and"] = "und"; $a->strings[", and %d other people"] = " und %d andere"; -$a->strings["%s like this."] = "%s mögen das."; -$a->strings["%s don't like this."] = "%s mögen das nicht."; +$a->strings["%s likes this."] = "%s mag das."; +$a->strings["%s doesn't like this."] = "%s mag das nicht."; +$a->strings["%s attends."] = "%s nehmen teil."; +$a->strings["%s doesn't attend."] = "%s nehmen nicht teil."; +$a->strings["%s attends maybe."] = "%s nehmen eventuell teil."; +$a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; +$a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; +$a->strings["%2\$d people attend"] = "%2\$d Personen nehmen teil"; +$a->strings["%2\$d people don't attend"] = "%2\$d Personen nehmen nicht teil"; +$a->strings["%2\$d people anttend maybe"] = "%2\$d Personen nehmen eventuell teil"; +$a->strings["%2\$d people agree"] = "%2\$d Personen sind einverstanden"; +$a->strings["%2\$d people don't agree"] = "%2\$d Personen sind nicht einverstanden"; +$a->strings["%2\$d people abstains"] = "%2\$d Personen enthalten sich"; $a->strings["Visible to everybody"] = "Für jedermann sichtbar"; $a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:"; $a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:"; @@ -1571,6 +1593,23 @@ $a->strings["permissions"] = "Zugriffsrechte"; $a->strings["Post to Groups"] = "Poste an Gruppe"; $a->strings["Post to Contacts"] = "Poste an Kontakte"; $a->strings["Private post"] = "Privater Beitrag"; +$a->strings["View all"] = "Zeige alle"; +$a->strings["Like"] = array( + 0 => "mag ich", + 1 => "Mag ich", +); +$a->strings["Dislike"] = array( + 0 => "mag ich nicht", + 1 => "Mag ich nicht", +); +$a->strings["Not Attending"] = array( + 0 => "Nicht teilnehmend ", + 1 => "Nicht teilnehmend", +); +$a->strings["Undecided"] = array( + 0 => "Unentschieden", + 1 => "Unentschieden", +); $a->strings["view full size"] = "Volle Größe anzeigen"; $a->strings["newer"] = "neuer"; $a->strings["older"] = "älter"; @@ -1747,7 +1786,6 @@ $a->strings["Hermaphrodite"] = "Hermaphrodit"; $a->strings["Neuter"] = "Neuter"; $a->strings["Non-specific"] = "Nicht spezifiziert"; $a->strings["Other"] = "Andere"; -$a->strings["Undecided"] = "Unentschieden"; $a->strings["Males"] = "Männer"; $a->strings["Females"] = "Frauen"; $a->strings["Gay"] = "Schwul"; @@ -1794,6 +1832,7 @@ $a->strings["Ask me"] = "Frag mich"; $a->strings["Friendica Notification"] = "Friendica-Benachrichtigung"; $a->strings["Thank You,"] = "Danke,"; $a->strings["%s Administrator"] = "der Administrator von %s"; +$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrator"; $a->strings["%s "] = "%s "; $a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s"; $a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat Dir eine neue private Nachricht auf %2\$s geschickt."; From db14dc13c3021e8bb147cff41b2c6cfd4f6ab201 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 13 Oct 2015 17:35:08 +0200 Subject: [PATCH 098/443] DE: update to the strings --- view/de/messages.po | 10 +++++----- view/de/strings.php | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/view/de/messages.po b/view/de/messages.po index 5e9de2f96b..dc1756fee6 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -32,8 +32,8 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-10-12 15:14+0200\n" -"PO-Revision-Date: 2015-10-13 12:47+0000\n" -"Last-Translator: Abrax \n" +"PO-Revision-Date: 2015-10-13 15:29+0000\n" +"Last-Translator: bavatar \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -6875,17 +6875,17 @@ msgstr "%s mag das nicht." #: include/conversation.php:1058 #, php-format msgid "%s attends." -msgstr "%s nehmen teil." +msgstr "%s nimmt teil." #: include/conversation.php:1061 #, php-format msgid "%s doesn't attend." -msgstr "%s nehmen nicht teil." +msgstr "%s nimmt nicht teil." #: include/conversation.php:1064 #, php-format msgid "%s attends maybe." -msgstr "%s nehmen eventuell teil." +msgstr "%s nimmt eventuell teil." #: include/conversation.php:1073 #, php-format diff --git a/view/de/strings.php b/view/de/strings.php index b0fcff3f97..dce2bc65d6 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -1572,9 +1572,9 @@ $a->strings["and"] = "und"; $a->strings[", and %d other people"] = " und %d andere"; $a->strings["%s likes this."] = "%s mag das."; $a->strings["%s doesn't like this."] = "%s mag das nicht."; -$a->strings["%s attends."] = "%s nehmen teil."; -$a->strings["%s doesn't attend."] = "%s nehmen nicht teil."; -$a->strings["%s attends maybe."] = "%s nehmen eventuell teil."; +$a->strings["%s attends."] = "%s nimmt teil."; +$a->strings["%s doesn't attend."] = "%s nimmt nicht teil."; +$a->strings["%s attends maybe."] = "%s nimmt eventuell teil."; $a->strings["%2\$d people like this"] = "%2\$d Personen mögen das"; $a->strings["%2\$d people don't like this"] = "%2\$d Personen mögen das nicht"; $a->strings["%2\$d people attend"] = "%2\$d Personen nehmen teil"; From e47acf83d21feec9621666ff352301b5d9fdab4f Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 13 Oct 2015 18:22:45 +0200 Subject: [PATCH 099/443] typo in markdown syntax --- doc/Home.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Home.md b/doc/Home.md index 11b1f9e159..1a219c6efc 100644 --- a/doc/Home.md +++ b/doc/Home.md @@ -10,7 +10,7 @@ Friendica Documentation and Resources * [BBCode tag reference](help/BBCode) * [Comment, sort and delete posts](help/Text_comment) * [Profiles](help/Profiles) - * [Accesskey reference](help/Accesskeys + * [Accesskey reference](help/Accesskeys) * [Events](help/events) * You and other users * [Connectors](help/Connectors) From 66ea33623b790db52a0fd2ef807410058df0accf Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 13 Oct 2015 20:15:01 +0200 Subject: [PATCH 100/443] Vier: Some small changes in the template for events --- view/theme/vier/templates/wall_thread.tpl | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/view/theme/vier/templates/wall_thread.tpl b/view/theme/vier/templates/wall_thread.tpl index e6b0de84bd..5eb8f5fa8b 100644 --- a/view/theme/vier/templates/wall_thread.tpl +++ b/view/theme/vier/templates/wall_thread.tpl @@ -93,6 +93,13 @@ {{if $item.comment}} {{$item.switchcomment}} {{/if}} + + {{if $item.isevent}} + {{$item.attend.0}} + {{$item.attend.1}} + {{$item.attend.2}} + {{/if}} + {{if $item.vote}} {{if $item.vote.like}} {{$item.vote.like.0}} @@ -103,6 +110,7 @@ {{$item.vote.share.0}} {{/if}} {{/if}} + {{if $item.star}} {{$item.star.do}} {{$item.star.undo}} @@ -121,14 +129,8 @@
    {{$item.location}} {{$item.postopts}}
    - {{if $item.isevent}} -
    - - -
    - {{/if}}
    From 65228e37bb6b75cf2e28c938792ee1560a247c8c Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 14 Oct 2015 08:10:06 +0200 Subject: [PATCH 101/443] Avoid a warning when a feed contains no items. --- include/feed.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/feed.php b/include/feed.php index f11bb52a1b..e66f279a9b 100644 --- a/include/feed.php +++ b/include/feed.php @@ -120,6 +120,8 @@ function feed_import($xml,$importer,&$contact, &$hub) { if (!is_object($entries)) return; + $entrylist = array(); + foreach ($entries AS $entry) $entrylist[] = $entry; From 9817104ebcd0a99b929ff012a3436220112b6a6c Mon Sep 17 00:00:00 2001 From: rebeka-catalina Date: Wed, 14 Oct 2015 17:48:26 +0200 Subject: [PATCH 102/443] Clarified description of ignore --- doc/FAQ.md | 4 ++-- doc/de/FAQ.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/FAQ.md b/doc/FAQ.md index 9197c068c5..0343833a25 100644 --- a/doc/FAQ.md +++ b/doc/FAQ.md @@ -87,8 +87,8 @@ However their conversations with your friends will still be visible in your stre If you remove a contact completely, they can send you another friend request. Blocked contacts cannot do this. They cannot communicate with you directly, only through friends. -**Ignored contacts** are included in delivery - they will receive your posts. -However we do not import their posts to you. +**Ignored contacts** are included in delivery - they will receive your posts and private messages. +However we do not import their posts or private messages to you. Like blocking, you will still see this person's comments to posts made by your friends. A plugin called "blockem" can be installed to collapse/hide all posts from a particular person in your stream if you desire complete blocking of an individual, including his/her conversations with your other friends. diff --git a/doc/de/FAQ.md b/doc/de/FAQ.md index d5aa19e6c7..52d56dce8a 100644 --- a/doc/de/FAQ.md +++ b/doc/de/FAQ.md @@ -100,9 +100,9 @@ Wenn Du einen Kontakt komplett löschst, können sie Dir eine neue Freundschafts Blockierte Kontakte können das nicht machen. Sie können nicht mit Dir direkt kommunizieren, nur über Freunde. -Ignorierte Kontakte können weiterhin Beiträge von Dir erhalten. -Deren Beiträge werden allerdings nicht importiert. W -ie bei blockierten Beiträgen siehst Du auch hier weiterhin die Kommentare dieser Person zu anderen Beiträgen Deiner Freunde. +Ignorierte Kontakte können weiterhin Beiträge und private Nachrichten von Dir erhalten. +Deren Beiträge und private Nachrichten werden allerdings nicht importiert. +Wie bei blockierten Beiträgen siehst Du auch hier weiterhin die Kommentare dieser Person zu anderen Beiträgen Deiner Freunde. [Ein Plugin namens "blockem" kann installiert werden, um alle Beiträge einer bestimmten Person in Deinem Stream zu verstecken bzw. zu verkürzen. Dabei werden auch Kommentare dieser Person in Beiträgen Deiner Freunde blockiert.] From 642f3fca1a1e56bb1ed823538c0e7fb2ae0e1342 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Wed, 14 Oct 2015 19:48:57 +0200 Subject: [PATCH 103/443] fix translation bug for likers --- include/conversation.php | 65 ++++++++++++++++++++-------------------- 1 file changed, 32 insertions(+), 33 deletions(-) diff --git a/include/conversation.php b/include/conversation.php index 0907b5dce2..8e1793d699 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1025,10 +1025,31 @@ function format_like($cnt,$arr,$type,$id) { $o = ''; $expanded = ''; - if($cnt == 1) + if($cnt == 1) { $likers = $arr[0]; - else { + // Phrase if there is only one liker. In other cases it will be uses for the expanded + // list which show all likers + switch($type) { + case 'like' : + $phrase = sprintf( t('%s likes this.'), $likers); + break; + case 'dislike' : + $phrase = sprintf( t('%s doesn\'t like this.'), $likers); + break; + case 'attendyes' : + $phrase = sprintf( t('%s attends.'), $likers); + break; + case 'attendno' : + $phrase = sprintf( t('%s doesn\'t attend.'), $likers); + break; + case 'attendmaybe' : + $phrase = sprintf( t('%s attends maybe.'), $likers); + break; + } + } + + if($cnt > 1) { $total = count($arr); if($total >= MAX_LIKERS) $arr = array_slice($arr, 0, MAX_LIKERS - 1); @@ -1043,55 +1064,33 @@ function format_like($cnt,$arr,$type,$id) { } $likers = $str; - } - - // Phrase if there is only one liker. In other cases it will be uses for the expanded - // list which show all likers - switch($type) { - case 'like' : - $phrase = sprintf( t('%s likes this.'), $likers); - break; - case 'dislike' : - $phrase = sprintf( t('%s doesn\'t like this.'), $likers); - break; - case 'attendyes' : - $phrase = sprintf( t('%s attends.'), $likers); - break; - case 'attendno' : - $phrase = sprintf( t('%s doesn\'t attend.'), $likers); - break; - case 'attendmaybe' : - $phrase = sprintf( t('%s attends maybe.'), $likers); - break; - } - - if($cnt > 1) { + $spanatts = "class=\"fakelink\" onclick=\"openClose('{$type}list-$id');\""; - $expanded .= "\t" . ''; + switch($type) { case 'like': $phrase = sprintf( t('%2$d people like this'), $spanatts, $cnt); + $explikers = sprintf( t('%s like this.'), $likers); break; case 'dislike': $phrase = sprintf( t('%2$d people don\'t like this'), $spanatts, $cnt); + $explikers = sprintf( t('%s don\'t like this.'), $likers); break; case 'attendyes': $phrase = sprintf( t('%2$d people attend'), $spanatts, $cnt); + $explikers = sprintf( t('%s attend.'), $likers); break; case 'attendno': $phrase = sprintf( t('%2$d people don\'t attend'), $spanatts, $cnt); + $explikers = sprintf( t('%s don\'t attend.'), $likers); break; case 'attendmaybe': $phrase = sprintf( t('%2$d people anttend maybe'), $spanatts, $cnt); - case 'agree': - $phrase = sprintf( t('%2$d people agree'), $spanatts, $cnt); + $explikers = sprintf( t('%s anttend maybe.'), $likers); break; - case 'disagree': - $phrase = sprintf( t('%2$d people don\'t agree'), $spanatts, $cnt); - break; - case 'abstain': - $phrase = sprintf( t('%2$d people abstains'), $spanatts, $cnt); } + + $expanded .= "\t" . ''; } $phrase .= EOL ; From 6ebb21a935436bdca03f8e6c1f9286b650ac1dc4 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Fri, 16 Oct 2015 21:44:10 +0200 Subject: [PATCH 104/443] directory.php: move html to templates --- mod/directory.php | 79 ++++++++++++++--------------- view/templates/directory_header.tpl | 28 +++++++--- view/templates/directory_item.tpl | 14 ++--- 3 files changed, 67 insertions(+), 54 deletions(-) diff --git a/mod/directory.php b/mod/directory.php index 6fd99256f0..2093b11863 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -31,7 +31,7 @@ function directory_content(&$a) { require_once("mod/proxy.php"); if((get_config('system','block_public')) && (! local_user()) && (! remote_user()) || - (get_config('system','block_local_dir')) && (! local_user()) && (! remote_user())) { + (get_config('system','block_local_dir')) && (! local_user()) && (! remote_user())) { notice( t('Public access denied.') . EOL); return; } @@ -44,27 +44,12 @@ function directory_content(&$a) { else $search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : ''); - $tpl = get_markup_template('directory_header.tpl'); - - $globaldir = ''; - $gdirpath = get_config('system','directory'); - if(strlen($gdirpath)) { - $globaldir = ''; + $gdirpath = ''; + $dirurl = get_config('system','directory'); + if(strlen($dirurl)) { + $gdirpath = zrl($dirurl,true); } - $admin = ''; - - $o .= replace_macros($tpl, array( - '$search' => $search, - '$globaldir' => $globaldir, - '$desc' => t('Find on this site'), - '$admin' => $admin, - '$finding' => (strlen($search) ? '

    ' . t('Finding: ') . "'" . $search . "'" . '

    ' : ""), - '$sitedir' => t('Site Directory'), - '$submit' => t('Find') - )); - if($search) { $search = dbesc($search); @@ -159,8 +144,6 @@ function directory_content(&$a) { $about = ((x($profile,'about') == 1) ? t('About:') : False); - $tpl = get_markup_template('directory_item.tpl'); - if($a->theme['template_engine'] === 'internal') { $location_e = template_escape($location); } @@ -168,23 +151,23 @@ function directory_content(&$a) { $location_e = $location; } - $entry = replace_macros($tpl,array( - '$id' => $rr['id'], - '$profile_link' => $profile_link, - '$photo' => proxy_url($a->get_cached_avatar_image($rr[$photo]), false, PROXY_SIZE_THUMB), - '$alt_text' => $rr['name'], - '$name' => $rr['name'], - '$details' => $pdesc . $details, - '$page_type' => $page_type, - '$profile' => $profile, - '$location' => $location_e, - '$gender' => $gender, - '$pdesc' => $pdesc, - '$marital' => $marital, - '$homepage' => $homepage, - '$about' => $about, + $entry = array( + 'id' => $rr['id'], + 'profile_link' => $profile_link, + 'photo' => proxy_url($a->get_cached_avatar_image($rr[$photo]), false, PROXY_SIZE_THUMB), + 'alt_text' => $rr['name'], + 'name' => $rr['name'], + 'details' => $pdesc . $details, + 'page_type' => $page_type, + 'profile' => $profile, + 'location' => $location_e, + 'gender' => $gender, + 'pdesc' => $pdesc, + 'marital' => $marital, + 'homepage' => $homepage, + 'about' => $about, - )); + ); $arr = array('contact' => $rr, 'entry' => $entry); @@ -193,11 +176,27 @@ function directory_content(&$a) { unset($profile); unset($location); - $o .= $entry; + if(! $arr['entry']) + continue; + + $entries[] = $arr['entry']; } - $o .= "
    \r\n"; + $tpl = get_markup_template('directory_header.tpl'); + + $o .= replace_macros($tpl, array( + '$search' => $search, + '$globaldir' => t('Global Directory'), + '$gdirpath' => $gdirpath, + '$desc' => t('Find on this site'), + '$entries' => $entries, + '$finding' => t('Finding:'), + '$findterm' => (strlen($search) ? $search : ""), + '$sitedir' => t('Site Directory'), + '$submit' => t('Find') + )); + $o .= paginate($a); } diff --git a/view/templates/directory_header.tpl b/view/templates/directory_header.tpl index 2274f2e1f8..ef9aa04af5 100644 --- a/view/templates/directory_header.tpl +++ b/view/templates/directory_header.tpl @@ -1,17 +1,29 @@

    {{$sitedir}}

    -{{$globaldir}} -{{$admin}} +{{if $gdirpath}} + +{{/if}} -{{$finding}}
    - -{{$desc}} - - - +
    + {{$desc}} + + +
    + +{{if $findterm}} +

    {{$finding}} '{{$findterm}}'

    +{{/if}} +
    +{{foreach $entries as $entry}} + {{include file="directory_item.tpl"}} +{{/foreach}} + +
    \ No newline at end of file diff --git a/view/templates/directory_item.tpl b/view/templates/directory_item.tpl index b43fcd28cf..4dbe8a951f 100644 --- a/view/templates/directory_item.tpl +++ b/view/templates/directory_item.tpl @@ -1,12 +1,14 @@ -
    -
    -
    - {{$alt_text}} +
    +
    +
    -
    {{$name}}
    -
    {{$details}}
    +
    {{$entry.name}}
    +
    {{$entry.details}}
    From fcc185a18261f5ae2addeb80bf32e3a9b69ca5ce Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Fri, 16 Oct 2015 23:50:34 +0200 Subject: [PATCH 105/443] Unsure to store the guid with new events --- include/event.php | 27 ++++++++++++++------------- include/items.php | 2 ++ 2 files changed, 16 insertions(+), 13 deletions(-) diff --git a/include/event.php b/include/event.php index fedbe24468..a87dba64fb 100644 --- a/include/event.php +++ b/include/event.php @@ -21,33 +21,33 @@ function format_event_html($ev) { $o .= '

    ' . t('Starts:') . ' ' - . (($ev['adjust']) ? day_translate(datetime_convert('UTC', date_default_timezone_get(), + . '" >' + . (($ev['adjust']) ? day_translate(datetime_convert('UTC', date_default_timezone_get(), $ev['start'] , $bd_format )) - : day_translate(datetime_convert('UTC', 'UTC', + : day_translate(datetime_convert('UTC', 'UTC', $ev['start'] , $bd_format))) . '

    ' . "\r\n"; if(! $ev['nofinish']) $o .= '

    ' . t('Finishes:') . ' ' - . (($ev['adjust']) ? day_translate(datetime_convert('UTC', date_default_timezone_get(), + . '" >' + . (($ev['adjust']) ? day_translate(datetime_convert('UTC', date_default_timezone_get(), $ev['finish'] , $bd_format )) - : day_translate(datetime_convert('UTC', 'UTC', + : day_translate(datetime_convert('UTC', 'UTC', $ev['finish'] , $bd_format ))) . '

    ' . "\r\n"; if(strlen($ev['location'])){ - $o .= '

    ' . t('Location:') . ' ' - . bbcode($ev['location']) + $o .= '

    ' . t('Location:') . ' ' + . bbcode($ev['location']) . '

    ' . "\r\n"; - + if (strpos($ev['location'], "[map")===False) { $map = generate_named_map($ev['location']); if ($map!==$ev['location']) $o.=$map; } - + } $o .= '
    ' . "\r\n"; @@ -137,7 +137,7 @@ function format_event_bbcode($ev) { if(($ev['finish']) && (! $ev['nofinish'])) $o .= '[event-finish]' . $ev['finish'] . '[/event-finish]'; - + if($ev['location']) $o .= '[event-location]' . $ev['location'] . '[/event-location]'; @@ -200,7 +200,7 @@ function ev_compare($a,$b) { if($date_a === $date_b) return strcasecmp($a['desc'],$b['desc']); - + return strcmp($date_a,$date_b); } @@ -324,7 +324,7 @@ function event_store($arr) { } else { - // New event. Store it. + // New event. Store it. $r = q("INSERT INTO `event` ( `uid`,`cid`,`uri`,`created`,`edited`,`start`,`finish`,`summary`, `desc`,`location`,`type`, `adjust`,`nofinish`,`allow_cid`,`allow_gid`,`deny_cid`,`deny_gid`) @@ -362,6 +362,7 @@ function event_store($arr) { $item_arr['contact-id'] = $arr['cid']; $item_arr['uri'] = $arr['uri']; $item_arr['parent-uri'] = $arr['uri']; + $item_arr['guid'] = $arr['guid']; $item_arr['type'] = 'activity'; $item_arr['wall'] = (($arr['cid']) ? 0 : 1); $item_arr['contact-id'] = $contact['id']; diff --git a/include/items.php b/include/items.php index 4e86a5200a..c14fcdcc99 100644 --- a/include/items.php +++ b/include/items.php @@ -2854,6 +2854,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) $ev['uri'] = $item_id; $ev['edited'] = $datarray['edited']; $ev['private'] = $datarray['private']; + $ev['guid'] = $datarray['guid']; if(is_array($contact)) $ev['cid'] = $contact['id']; @@ -4079,6 +4080,7 @@ function local_delivery($importer,$data) { $ev['uri'] = $item_id; $ev['edited'] = $datarray['edited']; $ev['private'] = $datarray['private']; + $ev['guid'] = $datarray['guid']; $r = q("SELECT * FROM `event` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1", dbesc($item_id), From 20bb16859f4ae23d268ef656029917c7277c59f7 Mon Sep 17 00:00:00 2001 From: rabuzarus Date: Sat, 17 Oct 2015 00:19:01 +0200 Subject: [PATCH 106/443] dirfind.php: move html to templates --- mod/dirfind.php | 35 +++++++++++---------- view/templates/match.tpl | 67 +++++++++++++++++++++------------------- 2 files changed, 55 insertions(+), 47 deletions(-) diff --git a/mod/dirfind.php b/mod/dirfind.php index 95f9bf53a8..39c13dcb73 100644 --- a/mod/dirfind.php +++ b/mod/dirfind.php @@ -38,10 +38,6 @@ function dirfind_content(&$a, $prefix = "") { $o = ''; - $o .= replace_macros(get_markup_template("section_title.tpl"),array( - '$title' => sprintf( t('People Search - %s'), $search) - )); - if($search) { if ($local) { @@ -121,7 +117,6 @@ function dirfind_content(&$a, $prefix = "") { $id = 0; - $tpl = get_markup_template('match.tpl'); foreach($j->results as $jj) { // If We already know this contact then don't show the "connect" button @@ -143,17 +138,26 @@ function dirfind_content(&$a, $prefix = "") { $jj->photo = str_replace("http:///photo/", get_server()."/photo/", $jj->photo); - $o .= replace_macros($tpl,array( - '$url' => zrl($jj->url), - '$name' => htmlentities($jj->name), - '$photo' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB), - '$tags' => $jj->tags, - '$conntxt' => $conntxt, - '$connlnk' => $connlnk, - '$photo_menu' => $photo_menu, - '$id' => ++$id, - )); + $entry = array( + 'url' => zrl($jj->url), + 'name' => htmlentities($jj->name), + 'photo' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB), + 'tags' => $jj->tags, + 'conntxt' => $conntxt, + 'connlnk' => $connlnk, + 'photo_menu' => $photo_menu, + 'id' => ++$id, + ); + $entries[] = $entry; } + + $tpl = get_markup_template('match.tpl'); + + $o .= replace_macros($tpl,array( + 'title' => sprintf( t('People Search - %s'), $search), + '$entries' => $entries, + )); + } else { info( t('No matches') . EOL); @@ -161,7 +165,6 @@ function dirfind_content(&$a, $prefix = "") { } - $o .= '
    '; $o .= paginate($a); return $o; } diff --git a/view/templates/match.tpl b/view/templates/match.tpl index 3ebabf1854..db612e3dc5 100644 --- a/view/templates/match.tpl +++ b/view/templates/match.tpl @@ -1,33 +1,38 @@ +{{include file="section_title.tpl"}} -
    -
    - - {{$name}} - - {{if $photo_menu}} - menu -
    -
      - {{foreach $photo_menu as $k=>$c}} - {{if $c.2}} -
    • {{$c.0}}
    • - {{else}} -
    • {{$c.0}}
    • - {{/if}} - {{/foreach}} -
    -
    - {{/if}} -
    -
    -
    - {{$name}} -
    -
    - {{if $connlnk}} - - {{/if}} +{{foreach $entries as $entry}} +
    +
    + + {{$entry.name}} + + {{if $entry.photo_menu}} + menu +
    +
      + {{foreach $entry.photo_menu as $k=>$c}} + {{if $c.2}} +
    • {{$c.0}}
    • + {{else}} +
    • {{$c.0}}
    • + {{/if}} + {{/foreach}} +
    +
    + {{/if}} +
    +
    + +
    + {{if $entry.connlnk}} + + {{/if}} -
    +
    +{{/foreach}} + +
    From 67f699403a6df541c1eb9dc26008232858e8084a Mon Sep 17 00:00:00 2001 From: rabuzarus Date: Sat, 17 Oct 2015 00:39:50 +0200 Subject: [PATCH 107/443] match.php: restructure acdording to the change of match.tpl --- mod/match.php | 48 +++++++++++++++++++++++++++++------------------- 1 file changed, 29 insertions(+), 19 deletions(-) diff --git a/mod/match.php b/mod/match.php index f31b0f67a4..30d057a0da 100644 --- a/mod/match.php +++ b/mod/match.php @@ -4,6 +4,15 @@ require_once('include/socgraph.php'); require_once('include/contact_widgets.php'); require_once('mod/proxy.php'); +/** + * @brief Controller for /match. + * + * It takes keywords from your profile and queries the directory server for + * matching keywords from other profiles. + * + * @param App &$a + * @return void|string + */ function match_content(&$a) { $o = ''; @@ -15,10 +24,6 @@ function match_content(&$a) { $_SESSION['return_url'] = $a->get_baseurl() . '/' . $a->cmd; - $o .= replace_macros(get_markup_template("section_title.tpl"),array( - '$title' => t('Profile Match') - )); - $r = q("SELECT `pub_keywords`, `prv_keywords` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1", intval(local_user()) ); @@ -27,7 +32,6 @@ function match_content(&$a) { if(! $r[0]['pub_keywords'] && (! $r[0]['prv_keywords'])) { notice( t('No keywords to match. Please add keywords to your default profile.') . EOL); return; - } $params = array(); @@ -52,9 +56,6 @@ function match_content(&$a) { if(count($j->results)) { - - - $tpl = get_markup_template('match.tpl'); foreach($j->results as $jj) { $match_nurl = normalise_link($jj->url); $match = q("SELECT `nurl` FROM `contact` WHERE `uid` = '%d' AND nurl='%s' LIMIT 1", @@ -63,24 +64,33 @@ function match_content(&$a) { if (!count($match)) { $jj->photo = str_replace("http:///photo/", get_server()."/photo/", $jj->photo); $connlnk = $a->get_baseurl() . '/follow/?url=' . $jj->url; - $o .= replace_macros($tpl,array( - '$url' => zrl($jj->url), - '$name' => $jj->name, - '$photo' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB), - '$inttxt' => ' ' . t('is interested in:'), - '$conntxt' => t('Connect'), - '$connlnk' => $connlnk, - '$tags' => $jj->tags - )); + $entry = array( + 'url' => zrl($jj->url), + 'name' => $jj->name, + 'photo' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB), + 'inttxt' => ' ' . t('is interested in:'), + 'conntxt' => t('Connect'), + 'connlnk' => $connlnk, + 'tags' => $jj->tags + ); + $entries[] = $entry; } } - } else { + + $tpl = get_markup_template('match.tpl'); + + $o .= replace_macros($tpl,array( + '$title' => t('Profile Match'), + 'entries' => $entries, + )); + + } + else { info( t('No matches') . EOL); } } - $o .= cleardiv(); $o .= paginate($a); return $o; } From dd46a6ff680a42e2a8c826a99bf729f90c2afffc Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 17 Oct 2015 00:58:22 +0200 Subject: [PATCH 108/443] Store the event when a summary or a description is set --- include/items.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/items.php b/include/items.php index c14fcdcc99..795001bec6 100644 --- a/include/items.php +++ b/include/items.php @@ -2849,7 +2849,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) if((x($datarray,'object-type')) && ($datarray['object-type'] === ACTIVITY_OBJ_EVENT)) { $ev = bbtoevent($datarray['body']); - if(x($ev,'desc') && x($ev,'start')) { + if((x($ev,'desc') || x($ev,'summary')) && x($ev,'start')) { $ev['uid'] = $importer['uid']; $ev['uri'] = $item_id; $ev['edited'] = $datarray['edited']; @@ -4074,7 +4074,7 @@ function local_delivery($importer,$data) { if((x($datarray,'object-type')) && ($datarray['object-type'] === ACTIVITY_OBJ_EVENT)) { $ev = bbtoevent($datarray['body']); - if(x($ev,'desc') && x($ev,'start')) { + if((x($ev,'desc') || x($ev,'summary')) && x($ev,'start')) { $ev['cid'] = $importer['id']; $ev['uid'] = $importer['uid']; $ev['uri'] = $item_id; From 7f9711ffe631c4bca7abb6b5cda6365660e2b386 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 17 Oct 2015 01:25:25 +0200 Subject: [PATCH 109/443] Delete event when the item is deleted --- include/event.php | 6 ++++++ include/items.php | 10 ++++++++++ 2 files changed, 16 insertions(+) diff --git a/include/event.php b/include/event.php index a87dba64fb..d56388a77a 100644 --- a/include/event.php +++ b/include/event.php @@ -204,7 +204,13 @@ function ev_compare($a,$b) { return strcmp($date_a,$date_b); } +function event_delete($event_id) { + if ($event_id == 0) + return; + q("DELETE FROM `event` WHERE `id` = %d", intval($event_id)); + logger("Deleted event ".$event_id, LOGGER_DEBUG); +} function event_store($arr) { diff --git a/include/items.php b/include/items.php index 795001bec6..7d1ab1cb36 100644 --- a/include/items.php +++ b/include/items.php @@ -2558,6 +2558,11 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) if(! $item['deleted']) logger('consume_feed: deleting item ' . $item['id'] . ' uri=' . $item['uri'], LOGGER_DEBUG); + if($item['object-type'] === ACTIVITY_OBJ_EVENT) { + logger("Deleting event ".$item['event-id'], LOGGER_DEBUG); + event_delete($item['event-id']); + } + if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTIVITY_OBJ_TAGTERM)) { $xo = parse_xml_string($item['object'],false); $xt = parse_xml_string($item['target'],false); @@ -3544,6 +3549,11 @@ function local_delivery($importer,$data) { logger('local_delivery: deleting item ' . $item['id'] . ' uri=' . $item['uri'], LOGGER_DEBUG); + if($item['object-type'] === ACTIVITY_OBJ_EVENT) { + logger("Deleting event ".$item['event-id'], LOGGER_DEBUG); + event_delete($item['event-id']); + } + if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTIVITY_OBJ_TAGTERM)) { $xo = parse_xml_string($item['object'],false); $xt = parse_xml_string($item['target'],false); From 485e65871e109ccc51fccb91857e2dc296fdf379 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 17 Oct 2015 02:36:16 +0200 Subject: [PATCH 110/443] Avoid wrong birthdays --- include/diaspora.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/diaspora.php b/include/diaspora.php index 757cf1a6ba..c97abc28cd 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -2421,7 +2421,8 @@ function diaspora_profile($importer,$xml,$msg) { $birthday = str_replace('1000','1901',$birthday); - $birthday = datetime_convert('UTC','UTC',$birthday,'Y-m-d'); + if ($birthday != "") + $birthday = datetime_convert('UTC','UTC',$birthday,'Y-m-d'); // this is to prevent multiple birthday notifications in a single year // if we already have a stored birthday and the 'm-d' part hasn't changed, preserve the entry, which will preserve the notify year From 316276cb6d6ec61c1c839c81fbe6d96ed1705b49 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 17 Oct 2015 08:27:33 +0200 Subject: [PATCH 111/443] Editing an item with an event is now opeing the event edit form. --- mod/events.php | 4 ++++ object/Item.php | 9 ++++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/mod/events.php b/mod/events.php index bf53286c20..f2891a38d5 100644 --- a/mod/events.php +++ b/mod/events.php @@ -154,6 +154,7 @@ function events_post(&$a) { if(! $cid) proc_run('php',"include/notifier.php","event","$item_id"); + goaway($_SESSION['return_url']); } @@ -165,6 +166,9 @@ function events_content(&$a) { return; } + if($a->argc == 1) + $_SESSION['return_url'] = $a->get_baseurl() . '/' . $a->cmd; + if(($a->argc > 2) && ($a->argv[1] === 'ignore') && intval($a->argv[2])) { $r = q("update event set ignore = 1 where id = %d and uid = %d", intval($a->argv[2]), diff --git a/object/Item.php b/object/Item.php index 3050365f92..04c1a707e3 100644 --- a/object/Item.php +++ b/object/Item.php @@ -117,9 +117,12 @@ class Item extends BaseObject { ? t('Private Message') : false); $shareable = ((($conv->get_profile_owner() == local_user()) && ($item['private'] != 1)) ? true : false); - if(local_user() && link_compare($a->contact['url'],$item['author-link'])) - $edpost = array($a->get_baseurl($ssl_state)."/editpost/".$item['id'], t("Edit")); - else + if(local_user() && link_compare($a->contact['url'],$item['author-link'])) { + if ($item["event-id"] != 0) + $edpost = array($a->get_baseurl($ssl_state)."/events/event/".$item['event-id'], t("Edit")); + else + $edpost = array($a->get_baseurl($ssl_state)."/editpost/".$item['id'], t("Edit")); + } else $edpost = false; if(($this->get_data_value('uid') == local_user()) || $this->is_visiting()) $dropping = true; From 2070c96dd1910cd16c36277b3ee3198a5f8eafbd Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 17 Oct 2015 08:46:45 +0200 Subject: [PATCH 112/443] Changing the acl does not work when editing posts - so it is disabled for events. --- mod/events.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mod/events.php b/mod/events.php index f2891a38d5..653ae489b8 100644 --- a/mod/events.php +++ b/mod/events.php @@ -509,7 +509,7 @@ function events_content(&$a) { else $sh_checked = (($orig_event['allow_cid'] === '<' . local_user() . '>' && (! $orig_event['allow_gid']) && (! $orig_event['deny_cid']) && (! $orig_event['deny_gid'])) ? '' : ' checked="checked" ' ); - if($cid) + if($cid OR ($mode !== 'new')) $sh_checked .= ' disabled="disabled" '; @@ -540,6 +540,9 @@ function events_content(&$a) { require_once('include/acl_selectors.php'); + if ($mode === 'new') + $acl = (($cid) ? '' : populate_acl(((x($orig_event)) ? $orig_event : $a->user))); + $tpl = get_markup_template('event_form.tpl'); $o .= replace_macros($tpl,array( @@ -567,7 +570,7 @@ function events_content(&$a) { '$sh_text' => t('Share this event'), '$sh_checked' => $sh_checked, '$preview' => t('Preview'), - '$acl' => (($cid) ? '' : populate_acl(((x($orig_event)) ? $orig_event : $a->user))), + '$acl' => $acl, '$submit' => t('Submit') )); From 8395f67351b3ac2b3739a99967ba58bf8e731051 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 17 Oct 2015 09:41:58 +0200 Subject: [PATCH 113/443] Events on Diaspora now looking okay. --- include/bbcode.php | 2 +- include/event.php | 40 +++++++++++++++++++++++++++++----------- 2 files changed, 30 insertions(+), 12 deletions(-) diff --git a/include/bbcode.php b/include/bbcode.php index 2fcf6c3247..81536d3720 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -1210,7 +1210,7 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal // start which is always required). Allow desc with a missing summary for compatibility. if((x($ev,'desc') || x($ev,'summary')) && x($ev,'start')) { - $sub = format_event_html($ev); + $sub = format_event_html($ev, $simplehtml); $Text = preg_replace("/\[event\-summary\](.*?)\[\/event\-summary\]/ism",'',$Text); $Text = preg_replace("/\[event\-description\](.*?)\[\/event\-description\]/ism",'',$Text); diff --git a/include/event.php b/include/event.php index d56388a77a..c4111dc0b1 100644 --- a/include/event.php +++ b/include/event.php @@ -3,7 +3,7 @@ require_once('include/bbcode.php'); require_once('include/map.php'); -function format_event_html($ev) { +function format_event_html($ev, $simple = false) { @@ -12,6 +12,32 @@ function format_event_html($ev) { $bd_format = t('l F d, Y \@ g:i A') ; // Friday January 18, 2011 @ 8 AM + $event_start = (($ev['adjust']) ? day_translate(datetime_convert('UTC', date_default_timezone_get(), + $ev['start'] , $bd_format )) + : day_translate(datetime_convert('UTC', 'UTC', + $ev['start'] , $bd_format))); + + $event_end = (($ev['adjust']) ? day_translate(datetime_convert('UTC', date_default_timezone_get(), + $ev['finish'] , $bd_format )) + : day_translate(datetime_convert('UTC', 'UTC', + $ev['finish'] , $bd_format ))); + + if ($simple) { + $o = "

    ".bbcode($ev['summary'])."

    "; + + $o .= "

    ".bbcode($ev['desc'])."

    "; + + $o .= "

    ".t('Starts:')."

    ".$event_start."

    "; + + if(! $ev['nofinish']) + $o .= "

    ".t('Finishes:')."

    ".$event_end."

    "; + + if(strlen($ev['location'])) + $o .= "

    ".t('Location:')."

    ".$ev['location']."

    "; + + return $o; + } + $o = '
    ' . "\r\n"; @@ -21,21 +47,13 @@ function format_event_html($ev) { $o .= '

    ' . t('Starts:') . ' ' - . (($ev['adjust']) ? day_translate(datetime_convert('UTC', date_default_timezone_get(), - $ev['start'] , $bd_format )) - : day_translate(datetime_convert('UTC', 'UTC', - $ev['start'] , $bd_format))) + . '" >'.$event_start . '

    ' . "\r\n"; if(! $ev['nofinish']) $o .= '

    ' . t('Finishes:') . ' ' - . (($ev['adjust']) ? day_translate(datetime_convert('UTC', date_default_timezone_get(), - $ev['finish'] , $bd_format )) - : day_translate(datetime_convert('UTC', 'UTC', - $ev['finish'] , $bd_format ))) + . '" >'.$event_end . '

    ' . "\r\n"; if(strlen($ev['location'])){ From 8a79e1afb34cf8098bc0e34180bb3b17b826c824 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 17 Oct 2015 10:48:13 +0200 Subject: [PATCH 114/443] The datepicker is now localised --- include/datetime.php | 75 ++++++++++++++++++++++++++------------------ 1 file changed, 45 insertions(+), 30 deletions(-) diff --git a/include/datetime.php b/include/datetime.php index 6461298ba2..79964ef404 100644 --- a/include/datetime.php +++ b/include/datetime.php @@ -43,18 +43,18 @@ function select_timezone($current = 'America/Los_Angeles') { if($continent != t('Miscellaneous')) { $o .= ''; $continent = t('Miscellaneous'); - $o .= ''; + $o .= ''; } } $city = str_replace('_', ' ', t($city)); $selected = (($value == $current) ? " selected=\"selected\" " : ""); $o .= ""; - } + } $o .= ''; return $o; }} -// return a select using 'field_select_raw' template, with timezones +// return a select using 'field_select_raw' template, with timezones // groupped (primarily) by continent // arguments follow convetion as other field_* template array: // 'name', 'label', $value, 'help' @@ -63,12 +63,12 @@ function field_timezone($name='timezone', $label='', $current = 'America/Los_Ang $options = select_timezone($current); $options = str_replace('','', $options); - + $tpl = get_markup_template('field_select_raw.tpl'); return replace_macros($tpl, array( '$field' => array($name, $label, $current, $help, $options), )); - + }} // General purpose date parse/convert function. @@ -92,8 +92,8 @@ function datetime_convert($from = 'UTC', $to = 'UTC', $s = 'now', $fmt = "Y-m-d // Slight hackish adjustment so that 'zero' datetime actually returns what is intended // otherwise we end up with -0001-11-30 ... - // add 32 days so that we at least get year 00, and then hack around the fact that - // months and days always start with 1. + // add 32 days so that we at least get year 00, and then hack around the fact that + // months and days always start with 1. if(substr($s,0,10) == '0000-00-00') { $d = new DateTime($s . ' + 32 days', new DateTimeZone('UTC')); @@ -203,13 +203,25 @@ function timesel($format, $h, $m, $id='timepicker') { * set maximum date from picker with id $maxfrom (none by default) * @param boolean $required default false * @return string Parsed HTML output. - * + * * @todo Once browser support is better this could probably be replaced with * native HTML5 date picker. */ if(! function_exists('datetimesel')) { function datetimesel($format, $min, $max, $default, $id = 'datetimepicker', $pickdate = true, $picktime = true, $minfrom = '', $maxfrom = '', $required = false) { + $a = get_app(); + + // First day of the week (0 = Sunday) + $firstDay = get_pconfig(local_user(),'system','first_day_of_week'); + if ($firstDay === false) $firstDay=0; + + $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'); + $o = ''; $dateformat = ''; if($pickdate) $dateformat .= 'Y-m-d'; @@ -217,16 +229,17 @@ function datetimesel($format, $min, $max, $default, $id = 'datetimepicker', $pic if($picktime) $dateformat .= 'H:i'; $minjs = $min ? ",minDate: new Date({$min->getTimestamp()}*1000), yearStart: " . $min->format('Y') : ''; $maxjs = $max ? ",maxDate: new Date({$max->getTimestamp()}*1000), yearEnd: " . $max->format('Y') : ''; - + $input_text = $default ? 'value="' . date($dateformat, $default->getTimestamp()) . '"' : ''; $defaultdatejs = $default ? ",defaultDate: new Date({$default->getTimestamp()}*1000)" : ''; $pickers = ''; if(!$pickdate) $pickers .= ',datepicker: false'; if(!$picktime) $pickers .= ',timepicker: false'; $extra_js = ''; - if($minfrom != '') + $pickers .= ",dayOfWeekStart: ".$firstDay.",lang:'".$lang."'"; + if($minfrom != '') $extra_js .= "\$('#$minfrom').data('xdsoft_datetimepicker').setOptions({onChangeDateTime: function (currentDateTime) { \$('#$id').data('xdsoft_datetimepicker').setOptions({minDate: currentDateTime})}})"; - if($maxfrom != '') + if($maxfrom != '') $extra_js .= "\$('#$maxfrom').data('xdsoft_datetimepicker').setOptions({onChangeDateTime: function (currentDateTime) { \$('#$id').data('xdsoft_datetimepicker').setOptions({maxDate: currentDateTime})}})"; $readable_format = $dateformat; $readable_format = str_replace('Y','yyyy',$readable_format); @@ -236,7 +249,9 @@ function datetimesel($format, $min, $max, $default, $id = 'datetimepicker', $pic $readable_format = str_replace('i','MM',$readable_format); $o .= "
    "; $o .= '
    '; - $o .= ""; + $o .= ""; return $o; }} @@ -248,27 +263,27 @@ function datetimesel($format, $min, $max, $default, $id = 'datetimepicker', $pic if(! function_exists('relative_date')) { function relative_date($posted_date,$format = null) { - $localtime = datetime_convert('UTC',date_default_timezone_get(),$posted_date); + $localtime = datetime_convert('UTC',date_default_timezone_get(),$posted_date); $abs = strtotime($localtime); - - if (is_null($posted_date) || $posted_date === '0000-00-00 00:00:00' || $abs === False) { + + if (is_null($posted_date) || $posted_date === '0000-00-00 00:00:00' || $abs === False) { return t('never'); } $etime = time() - $abs; - + if ($etime < 1) { return t('less than a second ago'); } - + /* $time_append = ''; if ($etime >= 86400) { $time_append = ' ('.$localtime.')'; } */ - + $a = array( 12 * 30 * 24 * 60 * 60 => array( t('year'), t('years')), 30 * 24 * 60 * 60 => array( t('month'), t('months')), 7 * 24 * 60 * 60 => array( t('week'), t('weeks')), @@ -277,7 +292,7 @@ function relative_date($posted_date,$format = null) { 60 => array( t('minute'), t('minutes')), 1 => array( t('second'), t('seconds')) ); - + foreach ($a as $secs => $str) { $d = $etime / $secs; if ($d >= 1) { @@ -295,13 +310,13 @@ function relative_date($posted_date,$format = null) { // Returns age in years, given a date of birth, // the timezone of the person whose date of birth is provided, // and the timezone of the person viewing the result. -// Why? Bear with me. Let's say I live in Mittagong, Australia, and my +// Why? Bear with me. Let's say I live in Mittagong, Australia, and my // birthday is on New Year's. You live in San Bruno, California. // When exactly are you going to see my age increase? -// A: 5:00 AM Dec 31 San Bruno time. That's precisely when I start -// celebrating and become a year older. If you wish me happy birthday -// on January 1 (San Bruno time), you'll be a day late. - +// A: 5:00 AM Dec 31 San Bruno time. That's precisely when I start +// celebrating and become a year older. If you wish me happy birthday +// on January 1 (San Bruno time), you'll be a day late. + function age($dob,$owner_tz = '',$viewer_tz = '') { if(! intval($dob)) return 0; @@ -357,7 +372,7 @@ function get_first_dim($y,$m) { // output a calendar for the given month, year. // if $links are provided (array), e.g. $links[12] => 'http://mylink' , -// date 12 will be linked appropriately. Today's date is also noted by +// date 12 will be linked appropriately. Today's date is also noted by // altering td class. // Months count from 1. @@ -376,7 +391,7 @@ function cal($y = 0,$m = 0, $links = false, $class='') { 'April','May','June', 'July','August','September', 'October','November','December' - ); + ); $thisyear = datetime_convert('UTC',date_default_timezone_get(),'now','Y'); $thismonth = datetime_convert('UTC',date_default_timezone_get(),'now','m'); @@ -427,8 +442,8 @@ function cal($y = 0,$m = 0, $links = false, $class='') { if($dow) for($a = $dow; $a < 7; $a ++) $o .= ' '; - $o .= ''."\r\n"; - + $o .= ''."\r\n"; + return $o; }} @@ -452,10 +467,10 @@ function update_contact_birthdays() { * * $bdtext is just a readable placeholder in case the event is shared * with others. We will replace it during presentation to our $importer - * to contain a sparkle link and perhaps a photo. + * to contain a sparkle link and perhaps a photo. * */ - + $bdtext = sprintf( t('%s\'s birthday'), $rr['name']); $bdtext2 = sprintf( t('Happy Birthday %s'), ' [url=' . $rr['url'] . ']' . $rr['name'] . '[/url]') ; From b75a3c894351b4e49cc53cbff2a312e40f7b6d13 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 17 Oct 2015 15:26:11 +0200 Subject: [PATCH 115/443] Automatically set the new configuration for the global directory when updating. --- update.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/update.php b/update.php index 06aab577a3..7c32f5819c 100644 --- a/update.php +++ b/update.php @@ -1648,3 +1648,14 @@ function update_1180() { return UPDATE_SUCCESS; } + +function update_1188() { + + if (strlen(get_config('system','directory_submit_url')) AND + !strlen(get_config('system','directory'))) { + set_config('system','directory', dirname(get_config('system','directory_submit_url'))); + del_config('system','directory_submit_url'); + } + + return UPDATE_SUCCESS; +} From 72896b0f6b1677a42970f432485df213318141e9 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sat, 17 Oct 2015 19:45:57 +0200 Subject: [PATCH 116/443] unify directory page --- mod/directory.php | 4 +++- view/templates/directory_header.tpl | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/mod/directory.php b/mod/directory.php index 2093b11863..d256c590aa 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -6,6 +6,8 @@ function directory_init(&$a) { if(local_user()) { require_once('include/contact_widgets.php'); + $a->page['aside'] .= follow_widget(); + $a->page['aside'] .= findpeople_widget(); } @@ -193,7 +195,7 @@ function directory_content(&$a) { '$entries' => $entries, '$finding' => t('Finding:'), '$findterm' => (strlen($search) ? $search : ""), - '$sitedir' => t('Site Directory'), + '$title' => t('Site Directory'), '$submit' => t('Find') )); diff --git a/view/templates/directory_header.tpl b/view/templates/directory_header.tpl index ef9aa04af5..07d625ed4e 100644 --- a/view/templates/directory_header.tpl +++ b/view/templates/directory_header.tpl @@ -1,5 +1,5 @@ -

    {{$sitedir}}

    +{{include file="section_title.tpl"}} {{if $gdirpath}}
      From 9176e739a405a35e7283d61ea51018e96a534099 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sat, 17 Oct 2015 21:25:21 +0200 Subject: [PATCH 117/443] sugest.php: themeable as whole page --- mod/suggest.php | 37 ++++++++++--------- view/templates/suggest_friends.tpl | 36 ++++++++++-------- .../templates/suggest_friends.tpl | 36 ++++++++++-------- .../theme/frost/templates/suggest_friends.tpl | 36 ++++++++++-------- 4 files changed, 82 insertions(+), 63 deletions(-) diff --git a/mod/suggest.php b/mod/suggest.php index 8bf31ca8e5..760bbf06ae 100644 --- a/mod/suggest.php +++ b/mod/suggest.php @@ -65,11 +65,6 @@ function suggest_content(&$a) { $a->page['aside'] .= findpeople_widget(); - $o .= replace_macros(get_markup_template("section_title.tpl"),array( - '$title' => t('Friend Suggestions') - )); - - $r = suggestion_query(local_user()); if(! count($r)) { @@ -77,25 +72,31 @@ function suggest_content(&$a) { return $o; } - $tpl = get_markup_template('suggest_friends.tpl'); - foreach($r as $rr) { $connlnk = $a->get_baseurl() . '/follow/?url=' . (($rr['connect']) ? $rr['connect'] : $rr['url']); - $o .= replace_macros($tpl,array( - '$url' => zrl($rr['url']), - '$name' => $rr['name'], - '$photo' => proxy_url($rr['photo'], false, PROXY_SIZE_THUMB), - '$ignlnk' => $a->get_baseurl() . '/suggest?ignore=' . $rr['id'], - '$ignid' => $rr['id'], - '$conntxt' => t('Connect'), - '$connlnk' => $connlnk, - '$ignore' => t('Ignore/Hide') - )); + $entry = array( + 'url' => zrl($rr['url']), + 'url_clean' => $rr['url'], + 'name' => $rr['name'], + 'photo' => proxy_url($rr['photo'], false, PROXY_SIZE_THUMB), + 'ignlnk' => $a->get_baseurl() . '/suggest?ignore=' . $rr['id'], + 'ignid' => $rr['id'], + 'conntxt' => t('Connect'), + 'connlnk' => $connlnk, + 'ignore' => t('Ignore/Hide') + ); + $entries[] = $entry; } - $o .= cleardiv(); + $tpl = get_markup_template('suggest_friends.tpl'); + + $o .= replace_macros($tpl,array( + '$title' => t('Friend Suggestions'), + '$entries' => $entries, + )); + // $o .= paginate($a); return $o; } diff --git a/view/templates/suggest_friends.tpl b/view/templates/suggest_friends.tpl index a64c05dd83..e7c9c1ac00 100644 --- a/view/templates/suggest_friends.tpl +++ b/view/templates/suggest_friends.tpl @@ -1,17 +1,23 @@ -
      - -
      - - {{$name}} - +{{include file="section_title.tpl"}} + +{{foreach $entries as $entry}} +
      + +
      + + {{$entry.name}} + +
      +
      + +
      + {{if $entry.connlnk}} + + {{/if}}
      -
      -
      - {{$name}} -
      -
      - {{if $connlnk}} - - {{/if}} -
      \ No newline at end of file +{{/foreach}} + +
      diff --git a/view/theme/frost-mobile/templates/suggest_friends.tpl b/view/theme/frost-mobile/templates/suggest_friends.tpl index e39cca6e59..a386f30d00 100644 --- a/view/theme/frost-mobile/templates/suggest_friends.tpl +++ b/view/theme/frost-mobile/templates/suggest_friends.tpl @@ -1,17 +1,23 @@ -
      -
      - - {{$name}} - +{{include file="section_title.tpl"}} + +{{foreach $entries as $entry}} +
      +
      + + {{$entry.name}} + +
      +
      + +
      + {{if $entry.connlnk}} + + {{/if}} +
      -
      -
      - {{$name}} -
      -
      - {{if $connlnk}} - - {{/if}} - -
      +{{/foreach}} + +
      diff --git a/view/theme/frost/templates/suggest_friends.tpl b/view/theme/frost/templates/suggest_friends.tpl index e39cca6e59..a386f30d00 100644 --- a/view/theme/frost/templates/suggest_friends.tpl +++ b/view/theme/frost/templates/suggest_friends.tpl @@ -1,17 +1,23 @@ -
      -
      - - {{$name}} - +{{include file="section_title.tpl"}} + +{{foreach $entries as $entry}} +
      +
      + + {{$entry.name}} + +
      +
      + +
      + {{if $entry.connlnk}} + + {{/if}} +
      -
      -
      - {{$name}} -
      -
      - {{if $connlnk}} - - {{/if}} - -
      +{{/foreach}} + +
      From 6d559bf8a9e36ae9695dc77617f6ae8f574c7fa6 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sat, 17 Oct 2015 21:40:41 +0200 Subject: [PATCH 118/443] viewcontact: use section_title.tpl as headding --- view/templates/viewcontact_template.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/templates/viewcontact_template.tpl b/view/templates/viewcontact_template.tpl index ff33d65213..455551c680 100644 --- a/view/templates/viewcontact_template.tpl +++ b/view/templates/viewcontact_template.tpl @@ -1,5 +1,5 @@ -

      {{$title}}

      +{{include file="section_title.tpl"}} {{foreach $contacts as $contact}} {{include file="contact_template.tpl"}} From b9d9bf8ecdc4e82637524eb59386ff8a7f54de6c Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sat, 17 Oct 2015 21:45:55 +0200 Subject: [PATCH 119/443] directory: move pagination into template --- mod/directory.php | 5 ++--- view/templates/directory_header.tpl | 4 +++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/mod/directory.php b/mod/directory.php index d256c590aa..46c4f38ad3 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -196,11 +196,10 @@ function directory_content(&$a) { '$finding' => t('Finding:'), '$findterm' => (strlen($search) ? $search : ""), '$title' => t('Site Directory'), - '$submit' => t('Find') + '$submit' => t('Find'), + '$paginate' => paginate($a), )); - $o .= paginate($a); - } else info( t("No entries \x28some entries may be hidden\x29.") . EOL); diff --git a/view/templates/directory_header.tpl b/view/templates/directory_header.tpl index 07d625ed4e..eda887a898 100644 --- a/view/templates/directory_header.tpl +++ b/view/templates/directory_header.tpl @@ -26,4 +26,6 @@ {{include file="directory_item.tpl"}} {{/foreach}} -
      \ No newline at end of file +
      + +{{$paginate}} From 4b8ca578d1245c760a1c04bea6daf5b8582d0cbd Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sat, 17 Oct 2015 22:09:19 +0200 Subject: [PATCH 120/443] dirfind: move pagination into template --- mod/dirfind.php | 2 +- mod/match.php | 2 +- view/templates/match.tpl | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/mod/dirfind.php b/mod/dirfind.php index 39c13dcb73..9e02a47e20 100644 --- a/mod/dirfind.php +++ b/mod/dirfind.php @@ -156,6 +156,7 @@ function dirfind_content(&$a, $prefix = "") { $o .= replace_macros($tpl,array( 'title' => sprintf( t('People Search - %s'), $search), '$entries' => $entries, + '$paginate' => paginate($a), )); } @@ -165,6 +166,5 @@ function dirfind_content(&$a, $prefix = "") { } - $o .= paginate($a); return $o; } diff --git a/mod/match.php b/mod/match.php index 30d057a0da..380f6e74a4 100644 --- a/mod/match.php +++ b/mod/match.php @@ -82,6 +82,7 @@ function match_content(&$a) { $o .= replace_macros($tpl,array( '$title' => t('Profile Match'), 'entries' => $entries, + '$paginate' => paginate($a), )); } @@ -91,6 +92,5 @@ function match_content(&$a) { } - $o .= paginate($a); return $o; } diff --git a/view/templates/match.tpl b/view/templates/match.tpl index db612e3dc5..d269a253bc 100644 --- a/view/templates/match.tpl +++ b/view/templates/match.tpl @@ -36,3 +36,5 @@ {{/foreach}}
      + +{{$paginate}} From f9c0c1d6967bdefe4f00700a19b8eba44063e3f7 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sun, 18 Oct 2015 17:12:48 +0200 Subject: [PATCH 121/443] template rework: use viewcontact_template.tpl for contact dealing pages --- mod/contacts.php | 1 + mod/dirfind.php | 8 +++--- mod/match.php | 18 +++++++++---- mod/suggest.php | 24 ++++++++++++------ mod/viewcontacts.php | 2 +- view/templates/contact_template.tpl | 3 ++- view/templates/contacts-template.tpl | 2 +- view/theme/duepuntozero/style.css | 4 +++ view/theme/frost-mobile/style.css | 2 ++ .../templates/contact_template.tpl | 4 +-- .../templates/viewcontact_template.tpl | 12 +++++++++ view/theme/frost/style.css | 8 ++++-- .../frost/templates/contact_template.tpl | 12 ++++----- view/theme/quattro/dark/style.css | 25 +++++++++++++++++++ view/theme/quattro/green/style.css | 25 +++++++++++++++++++ view/theme/quattro/lilac/style.css | 25 +++++++++++++++++++ view/theme/quattro/quattro.less | 21 ++++++++++++++++ .../quattro/templates/contact_template.tpl | 7 +++++- view/theme/smoothly/style.css | 9 +++++-- view/theme/vier/style.css | 4 +++ .../theme/vier/templates/contact_template.tpl | 2 +- 21 files changed, 185 insertions(+), 33 deletions(-) create mode 100644 view/theme/frost-mobile/templates/viewcontact_template.tpl diff --git a/mod/contacts.php b/mod/contacts.php index c562c9822d..bdb25b022b 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -799,6 +799,7 @@ function contacts_content(&$a) { '$cmd' => $a->cmd, '$contacts' => $contacts, '$contact_drop_confirm' => t('Do you really want to delete this contact?'), + 'multiselect' => 1, '$batch_actions' => array( 'contacts_batch_update' => t('Update'), 'contacts_batch_block' => t('Block')."/".t("Unblock"), diff --git a/mod/dirfind.php b/mod/dirfind.php index 9e02a47e20..77e86c5db3 100644 --- a/mod/dirfind.php +++ b/mod/dirfind.php @@ -141,8 +141,8 @@ function dirfind_content(&$a, $prefix = "") { $entry = array( 'url' => zrl($jj->url), 'name' => htmlentities($jj->name), - 'photo' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB), - 'tags' => $jj->tags, + 'thumb' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB), + 'img_hover' => $jj->tags, 'conntxt' => $conntxt, 'connlnk' => $connlnk, 'photo_menu' => $photo_menu, @@ -151,11 +151,11 @@ function dirfind_content(&$a, $prefix = "") { $entries[] = $entry; } - $tpl = get_markup_template('match.tpl'); + $tpl = get_markup_template('viewcontact_template.tpl'); $o .= replace_macros($tpl,array( 'title' => sprintf( t('People Search - %s'), $search), - '$entries' => $entries, + '$contacts' => $entries, '$paginate' => paginate($a), )); diff --git a/mod/match.php b/mod/match.php index 380f6e74a4..f6174da66c 100644 --- a/mod/match.php +++ b/mod/match.php @@ -56,32 +56,40 @@ function match_content(&$a) { if(count($j->results)) { + $id = 0; + foreach($j->results as $jj) { $match_nurl = normalise_link($jj->url); $match = q("SELECT `nurl` FROM `contact` WHERE `uid` = '%d' AND nurl='%s' LIMIT 1", intval(local_user()), dbesc($match_nurl)); + if (!count($match)) { $jj->photo = str_replace("http:///photo/", get_server()."/photo/", $jj->photo); $connlnk = $a->get_baseurl() . '/follow/?url=' . $jj->url; + $photo_menu = array(array(t("View Profile"), zrl($jj->url))); + $photo_menu[] = array(t("Connect/Follow"), $connlnk); + $entry = array( 'url' => zrl($jj->url), 'name' => $jj->name, - 'photo' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB), + 'thumb' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB), 'inttxt' => ' ' . t('is interested in:'), 'conntxt' => t('Connect'), 'connlnk' => $connlnk, - 'tags' => $jj->tags + 'img_hover' => $jj->tags, + 'photo_menu' => $photo_menu, + 'id' => ++$id, ); - $entries[] = $entry; } + $entries[] = $entry; } - $tpl = get_markup_template('match.tpl'); + $tpl = get_markup_template('viewcontact_template.tpl'); $o .= replace_macros($tpl,array( '$title' => t('Profile Match'), - 'entries' => $entries, + '$contacts' => $entries, '$paginate' => paginate($a), )); diff --git a/mod/suggest.php b/mod/suggest.php index 760bbf06ae..5241e485ee 100644 --- a/mod/suggest.php +++ b/mod/suggest.php @@ -72,31 +72,41 @@ function suggest_content(&$a) { return $o; } + require_once 'include/contact_selectors.php'; + foreach($r as $rr) { $connlnk = $a->get_baseurl() . '/follow/?url=' . (($rr['connect']) ? $rr['connect'] : $rr['url']); + $ignlnk = $a->get_baseurl() . '/suggest?ignore=' . $rr['id']; + $photo_menu = array(array(t("View Profile"), zrl($jj->url))); + $photo_menu[] = array(t("Connect/Follow"), $connlnk); + $photo_menu[] = array(t('Ignore/Hide'), $ignlnk); $entry = array( 'url' => zrl($rr['url']), - 'url_clean' => $rr['url'], + 'itemurl' => $rr['url'], + 'img_hover' => $rr['url'], 'name' => $rr['name'], - 'photo' => proxy_url($rr['photo'], false, PROXY_SIZE_THUMB), - 'ignlnk' => $a->get_baseurl() . '/suggest?ignore=' . $rr['id'], + 'thumb' => proxy_url($rr['photo'], false, PROXY_SIZE_THUMB), + 'ignlnk' => $ignlnk, 'ignid' => $rr['id'], 'conntxt' => t('Connect'), 'connlnk' => $connlnk, - 'ignore' => t('Ignore/Hide') + 'photo_menu' => $photo_menu, + 'ignore' => t('Ignore/Hide'), + 'network' => network_to_name($rr['network'], $rr['url']), + 'id' => ++$id, ); $entries[] = $entry; } - $tpl = get_markup_template('suggest_friends.tpl'); + $tpl = get_markup_template('viewcontact_template.tpl'); $o .= replace_macros($tpl,array( '$title' => t('Friend Suggestions'), - '$entries' => $entries, + '$contacts' => $entries, + )); -// $o .= paginate($a); return $o; } diff --git a/mod/viewcontacts.php b/mod/viewcontacts.php index a6bf74b288..927a597524 100644 --- a/mod/viewcontacts.php +++ b/mod/viewcontacts.php @@ -48,7 +48,7 @@ function viewcontacts_content(&$a) { if($rr['self']) continue; - $url = $rr['url']; + $url = $rr['url']; // route DFRN profiles through the redirect diff --git a/view/templates/contact_template.tpl b/view/templates/contact_template.tpl index d4f65f70f9..4e8c04297d 100644 --- a/view/templates/contact_template.tpl +++ b/view/templates/contact_template.tpl @@ -7,9 +7,10 @@ {{$contact.name}} - {{if !$no_contacts_checkbox}} + {{if $multiselect}} {{/if}} + {{if $contact.photo_menu}} menu
      diff --git a/view/templates/contacts-template.tpl b/view/templates/contacts-template.tpl index 896f9af4c9..bec295924e 100644 --- a/view/templates/contacts-template.tpl +++ b/view/templates/contacts-template.tpl @@ -1,5 +1,5 @@ -

      {{$header}}{{if $total}} ({{$total}}){{/if}}

      +

      {{$header}}{{if $total}} ({{$total}}){{/if}}

      {{if $finding}}

      {{$finding}}

      {{/if}} diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index ae2530b6a2..7220b4c47f 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -891,6 +891,10 @@ input#dfrn-url { .contact-entry-photo img { border: none; } +.contact-entry-photo a img { + width: 80px; + height: 80px; +} .contact-entry-photo-end { clear: both; } diff --git a/view/theme/frost-mobile/style.css b/view/theme/frost-mobile/style.css index f4b46fed84..ef030c5f3a 100644 --- a/view/theme/frost-mobile/style.css +++ b/view/theme/frost-mobile/style.css @@ -1124,6 +1124,8 @@ input#dfrn-url { .contact-entry-photo img { border: none; + width: 80px; + height: 80px; } .contact-entry-photo-end { clear: both; diff --git a/view/theme/frost-mobile/templates/contact_template.tpl b/view/theme/frost-mobile/templates/contact_template.tpl index a2506fc17e..42f4b7372a 100644 --- a/view/theme/frost-mobile/templates/contact_template.tpl +++ b/view/theme/frost-mobile/templates/contact_template.tpl @@ -29,8 +29,8 @@
      -
      {{$contact.name}}

      -{{if $contact.alt_text}}
      {{$contact.alt_text}}
      {{/if}} +
      {{$contact.name}}

      + {{if $contact.alt_text}}
      {{$contact.alt_text}}
      {{/if}}
      {{$contact.network}}
      diff --git a/view/theme/frost-mobile/templates/viewcontact_template.tpl b/view/theme/frost-mobile/templates/viewcontact_template.tpl new file mode 100644 index 0000000000..3b68410f95 --- /dev/null +++ b/view/theme/frost-mobile/templates/viewcontact_template.tpl @@ -0,0 +1,12 @@ + +{{include file="section_title.tpl"}} + +
      +{{foreach $contacts as $contact}} + {{include file="contact_template.tpl"}} +{{/foreach}} +
      + +
      + +{{$paginate}} diff --git a/view/theme/frost/style.css b/view/theme/frost/style.css index 8b87c3bd42..66121baf34 100644 --- a/view/theme/frost/style.css +++ b/view/theme/frost/style.css @@ -1093,15 +1093,19 @@ input#dfrn-url { .contact-entry-photo img { border: none; } +.contact-entry-photo a img { + width: 80px; + height: 80px; +} .contact-entry-photo-end { clear: both; } .contact-entry-name { - float: left; + /*float: left;*/ margin-left: 0px; margin-right: 10px; padding-bottom: 5px; - width: 120px; + /*width: 120px;*/ font-weight: 600; overflow: hidden; } diff --git a/view/theme/frost/templates/contact_template.tpl b/view/theme/frost/templates/contact_template.tpl index 7a29bd0455..1ed1471a6e 100644 --- a/view/theme/frost/templates/contact_template.tpl +++ b/view/theme/frost/templates/contact_template.tpl @@ -10,8 +10,8 @@ {{if $contact.photo_menu}} menu -
      -
        +
        +
          {{foreach $contact.photo_menu as $c}} {{if $c.2}}
        • {{$c.0}}
        • @@ -19,15 +19,15 @@
        • {{$c.0}}
        • {{/if}} {{/foreach}} -
        -
        +
      +
      {{/if}}
      -
      {{$contact.name}}

      -{{if $contact.alt_text}}
      {{$contact.alt_text}}
      {{/if}} +
      {{$contact.name}}
      + {{if $contact.alt_text}}
      {{$contact.alt_text}}
      {{/if}}
      {{$contact.network}}
      diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index 1eda67de13..b0489af808 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -1543,6 +1543,31 @@ span[id^="showmore-wrap"] { left: 0px; top: 63px; } +.contact-wrapper .drop { + background-image: url('../../../images/icons/22/delete.png'); + display: block; + width: 22px; + height: 22px; + position: relative; + top: 10px; + left: -10px; + z-index: 99; +} +.contact-wrapper .drophide { + background-image: url('../../../images/icons/22/delete.png'); + display: block; + width: 22px; + height: 22px; + opacity: 0.3; + position: relative; + top: 10px; + left: -10px; + z-index: 99; +} +.contact-wrapper .contact-entry-connect { + padding-top: 5px; + font-weight: bold; +} .directory-item { float: left; width: 200px; diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index 71569971e5..0c7050045d 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -1543,6 +1543,31 @@ span[id^="showmore-wrap"] { left: 0px; top: 63px; } +.contact-wrapper .drop { + background-image: url('../../../images/icons/22/delete.png'); + display: block; + width: 22px; + height: 22px; + position: relative; + top: 10px; + left: -10px; + z-index: 99; +} +.contact-wrapper .drophide { + background-image: url('../../../images/icons/22/delete.png'); + display: block; + width: 22px; + height: 22px; + opacity: 0.3; + position: relative; + top: 10px; + left: -10px; + z-index: 99; +} +.contact-wrapper .contact-entry-connect { + padding-top: 5px; + font-weight: bold; +} .directory-item { float: left; width: 200px; diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index 55b81e5daf..c5f655427a 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -1543,6 +1543,31 @@ span[id^="showmore-wrap"] { left: 0px; top: 63px; } +.contact-wrapper .drop { + background-image: url('../../../images/icons/22/delete.png'); + display: block; + width: 22px; + height: 22px; + position: relative; + top: 10px; + left: -10px; + z-index: 99; +} +.contact-wrapper .drophide { + background-image: url('../../../images/icons/22/delete.png'); + display: block; + width: 22px; + height: 22px; + opacity: 0.3; + position: relative; + top: 10px; + left: -10px; + z-index: 99; +} +.contact-wrapper .contact-entry-connect { + padding-top: 5px; + font-weight: bold; +} .directory-item { float: left; width: 200px; diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index 3c9915576f..cd604b656a 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -877,6 +877,27 @@ span[id^="showmore-wrap"] { left: 0px; top: 63px; } + .drop { + background-image: url('../../../images/icons/22/delete.png'); + display: block; width: 22px; height: 22px; + position: relative; + top: 10px; + left: -10px; + z-index: 99; + } + .drophide { + background-image: url('../../../images/icons/22/delete.png'); + display: block; width: 22px; height: 22px; + opacity: 0.3; + position: relative; + top: 10px; + left: -10px; + z-index: 99; + } + .contact-entry-connect { + padding-top: 5px; + font-weight: bold; + } } .directory-item { float: left; diff --git a/view/theme/quattro/templates/contact_template.tpl b/view/theme/quattro/templates/contact_template.tpl index 0f0207b2bf..634630d9ab 100644 --- a/view/theme/quattro/templates/contact_template.tpl +++ b/view/theme/quattro/templates/contact_template.tpl @@ -1,5 +1,6 @@
      + {{if $contact.ignlnk}}{{/if}}
      {{$contact.name}} - {{if !$no_contacts_checkbox}} + {{if $multiselect}} {{/if}} {{if $contact.photo_menu}} @@ -30,6 +31,10 @@
      {{$contact.itemurl}}
      {{$contact.network}}
      + {{if $contact.connlnk}} +
      {{$contact.conntxt}}
      + {{/if}} +
      diff --git a/view/theme/smoothly/style.css b/view/theme/smoothly/style.css index 46d8902aeb..3fe04c0649 100644 --- a/view/theme/smoothly/style.css +++ b/view/theme/smoothly/style.css @@ -291,7 +291,7 @@ section { margin: 10px 0 0 230px; } -.login-form, +.login-form { margin-top: 10px; } @@ -2784,7 +2784,7 @@ margin-left: 0px; font-weight: bold; } -.contact-entry-name { +.contact-entry-name, .contact-entry-connect { width: 100px; overflow: hidden; font: #999; @@ -2805,6 +2805,11 @@ margin-left: 0px; -webkit-box-shadow: 0 0 8px #BDBDBD;*/ } +.contact-entry-photo a img { + width: 80px; + height: 80px; +} + .contact-entry-edit-links .icon { border: 1px solid #babdb6; border-radius: 3px; diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index 1c03edc6bf..d914d944a2 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -2282,6 +2282,10 @@ aside #id_password { float: left; margin: 0px 10px 10px 0px; } +.contact-entry-photo a img { + width: 80px; + height: 80px; +} /* profile match wrapper */ .profile-match-wrapper { float: left; diff --git a/view/theme/vier/templates/contact_template.tpl b/view/theme/vier/templates/contact_template.tpl index 5271112d83..a065b8fbf4 100644 --- a/view/theme/vier/templates/contact_template.tpl +++ b/view/theme/vier/templates/contact_template.tpl @@ -7,7 +7,7 @@ {{$contact.name}} - {{if !$no_contacts_checkbox}} + {{if $multiselect}} {{/if}} {{if $contact.photo_menu}} From c652aec9704996db7d07883c0796cea200ec12df Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 19 Oct 2015 07:58:13 +0200 Subject: [PATCH 122/443] Updates to the documentations --- doc/Chats.md | 9 ++++--- doc/Developers-Intro.md | 2 ++ doc/Install.md | 60 +++++++++++++++++++++++------------------ doc/de/Chats.md | 44 +++++++++++++++--------------- doc/de/Developers.md | 11 +++++--- 5 files changed, 71 insertions(+), 55 deletions(-) diff --git a/doc/Chats.md b/doc/Chats.md index 77b21833a5..3698ad15da 100644 --- a/doc/Chats.md +++ b/doc/Chats.md @@ -23,7 +23,7 @@ The following window shows some text while connecting. This text isn't importend for you, just wait for the next window. The first line shows your name and your current IP address. The right part of the window shows all users. -The lower part of the window contains an input field. +The lower part of the window contains an input field. Jappix Mini --- @@ -41,7 +41,7 @@ You can use several servers to create an account: At first you have to get the current version. You can either pull it from [Github](https://github.com) like so: - $> cd /var/www/virtual/YOURSPACE/html/addon; git pull + $> cd /var/www/virtual/YOURSPACE/html/addon; git pull Or you can download a tar archive here: [jappixmini.tgz](https://github.com/friendica/friendica-addons/blob/master/jappixmini.tgz) (click at „view raw“). @@ -63,9 +63,10 @@ At first you have to activate the addon. Now add your Jabber/XMPP name, the domain/server (without "http"; just "jappix.com"). For „Jabber BOSH Host“ you could use "https://bind.jappix.com/". +Note that you need another BOSH server if you do not use jappix.com for your XMPP account. You can find further information in the „Configuration Help“-section below this fields. At last you have enter your password (there are some more optional options, you can choose). -Finish these steps with "send" to save the entries. +Finish these steps with "send" to save the entries. Now, you should find the chatbox at the lower right corner of your browser window. -If you want to add contacts manually, you can click "add contact". +If you want to add contacts manually, you can click "add contact". diff --git a/doc/Developers-Intro.md b/doc/Developers-Intro.md index ff8c3c54c2..7e5caae2b3 100644 --- a/doc/Developers-Intro.md +++ b/doc/Developers-Intro.md @@ -54,6 +54,8 @@ Have a look at our [issue tracker](https://github.com/friendica/friendica) on gi * Try to reproduce a bug that needs more inquries and write down what you find out. * If a bug looks fixed, ask the bug reporters for feedback to find out if the bug can be closed. * Fix a bug if you can. Please make the pull request against the *develop* branch of the repository. + * There is a *Junior Job* label for issues we think might be a good point to start with. + But you don't have to limit yourself to those issues. ###Web interface diff --git a/doc/Install.md b/doc/Install.md index bd15f10b5a..5afd5a22c1 100644 --- a/doc/Install.md +++ b/doc/Install.md @@ -10,9 +10,11 @@ Not every PHP/MySQL hosting provider will be able to support Friendica. Many will. But **please** review the requirements and confirm these with your hosting provider prior to installation. -Also if you encounter installation issues, please let us know via the [helper]() or the [developer]() forum or [file an issue](https://github.com/friendica/friendica/issues). +Also if you encounter installation issues, please let us know via the [helper](http://helpers.pyxis.uberspace.de/profile/helpers) or the [developer](https://friendika.openmindspace.org/profile/friendicadevelopers) forum or [file an issue](https://github.com/friendica/friendica/issues). Please be as clear as you can about your operating environment and provide as much detail as possible about any error messages you may see, so that we can prevent it from happening in the future. -Due to the large variety of operating systems and PHP platforms in existence we may have only limited ability to debug your PHP installation or acquire any missing modules - but we will do our best to solve any general code issues. +Due to the large variety of operating systems and PHP platforms in existence we may have only limited ability to debug your PHP installation or acquire any missing modules - but we will do our best to solve any general code issues. +If you do not have a Friendica account yet, you can register a temporary one at [tryfriendica.de](https://tryfriendica.de) and join the forums mentioned above from there. +The account will expire after 7 days, but you can ask the server admin to keep your account longer, should the problem not be resolved after that. Before you begin: Choose a domain name or subdomain name for your server. Put some thought into this. Changing it after installation is currently not supported. @@ -29,7 +31,7 @@ Requirements * curl, gd, mysql, hash and openssl extensions * some form of email server or email gateway such that PHP mail() works * mcrypt (optional; used for server-to-server message encryption) -* Mysql 5.x +* Mysql 5.x or an equivalant alternative for MySQL (MariaDB etc.) * the ability to schedule jobs with cron (Linux/Mac) or Scheduled Tasks (Windows) (Note: other options are presented in Section 7 of this document.) * Installation into a top-level domain or sub-domain (without a directory/path component in the URL) is preferred. Directory paths will not be as convenient to use and have not been thoroughly tested. * If your hosting provider doesn't allow Unix shell access, you might have trouble getting everything to work. @@ -42,23 +44,23 @@ Installation procedure Unpack the Friendica files into the root of your web server document area. If you are able to do so, we recommend using git to clone the source repository rather than to use a packaged tar or zip file. This makes the software much easier to update. -The Linux command to clone the repository into a directory "mywebsite" would be +The Linux command to clone the repository into a directory "mywebsite" would be + + git clone https://github.com/friendica/friendica.git mywebsite - git clone https://github.com/friendica/friendica.git mywebsite - Make sure the folder *view/smarty3* exists and is writable by the webserver user - - mkdir view/smarty3 - chmod 777 view/smarty3 - + + mkdir view/smarty3 + chmod 777 view/smarty3 + Get the addons by going into your website folder. - - cd mywebsite - + + cd mywebsite + Clone the addon repository (separately): - - git clone https://github.com/friendica/friendica-addons.git addon - + + git clone https://github.com/friendica/friendica-addons.git addon + If you copy the directory tree to your webserver, make sure that you also copy .htaccess - as "dot" files are often hidden and aren't normally copied. ###Create a database @@ -87,14 +89,14 @@ You might wish to move/rename .htconfig.php to another name and empty (called 'd Set up a cron job or scheduled task to run the poller once every 5-10 minutes in order to perform background processing. Example: - cd /base/directory; /path/to/php include/poller.php + cd /base/directory; /path/to/php include/poller.php Change "/base/directory", and "/path/to/php" as appropriate for your situation. If you are using a Linux server, run "crontab -e" and add a line like the one shown, substituting for your unique paths and settings: - */10 * * * * cd /home/myname/mywebsite; /usr/bin/php include/poller.php + */10 * * * * cd /home/myname/mywebsite; /usr/bin/php include/poller.php You can generally find the location of PHP by executing "which php". If you run into trouble with this section please contact your hosting provider for assistance. @@ -104,25 +106,31 @@ Alternative: You may be able to use the 'poormancron' plugin to perform this ste To do this, edit the file ".htconfig.php" and look for a line describing your plugins. On a fresh installation, it will look like this: - $a->config['system']['addon'] = 'js_upload'; + $a->config['system']['addon'] = 'js_upload'; It indicates the "js_upload" addon module is enabled. You may add additional addons/plugins using this same line in the configuration file. Change it to read - $a->config['system']['addon'] = 'js_upload,poormancron'; + $a->config['system']['addon'] = 'js_upload,poormancron'; -and save your changes. +and save your changes. + +Once you have installed Friendica and created an admin account as part of the process, you can access the admin panel of your installation and do most of the server wide configuration from there Updating your installation with git --- You can get the latest changes at any time with - cd mywebsite - git pull + cd mywebsite + git pull + +The default branch to use it the ``master`` branch, which is the stable version of Friendica. +If you want to use and test bleeding edge code please checkout the ``develop`` branch. +The new features and fixes will be merged from ``develop`` into ``master`` when they are stable approx four times a year. The addon tree has to be updated separately like so: - - cd mywebsite/addon - git pull + + cd mywebsite/addon + git pull diff --git a/doc/de/Chats.md b/doc/de/Chats.md index a2d06f3c4e..ae239a675b 100644 --- a/doc/de/Chats.md +++ b/doc/de/Chats.md @@ -3,33 +3,33 @@ Chats * [Zur Startseite der Hilfe](help) -Du hast derzeit zwei Möglichkeiten, einen Chat auf Deiner Friendica-Seite zu betreiben +Du hast derzeit zwei Möglichkeiten, einen Chat auf Deiner Friendica-Seite zu betreiben * IRC - Internet Relay Chat * Jappix ##IRC Plugin -Sobald das Plugin aktiviert ist, kannst Du den Chat unter [deineSeite.de/irc](../irc) finden. -Beachte aber, dass dieser Chat auch ohne Anmeldung auf Deiner Seite zugänglich ist und somit auch Fremde diesen Chat mitnutzen können. +Sobald das Plugin aktiviert ist, kannst Du den Chat unter [deineSeite.de/irc](../irc) finden. +Beachte aber, dass dieser Chat auch ohne Anmeldung auf Deiner Seite zugänglich ist und somit auch Fremde diesen Chat mitnutzen können. -Wenn Du dem Link folgst, dann kommst Du zum Anmeldefenster des IR-Chats. -Wähle nun einen Spitznamen (Nickname) und wähle einen Raum aus, in dem Du chatten willst. -Hier kannst Du jeden Namen eingeben. -Es kann also auch #tollerChatdessenNamenurichkenne sein. +Wenn Du dem Link folgst, dann kommst Du zum Anmeldefenster des IR-Chats. +Wähle nun einen Spitznamen (Nickname) und wähle einen Raum aus, in dem Du chatten willst. +Hier kannst Du jeden Namen eingeben. +Es kann also auch #tollerChatdessenNamenurichkenne sein. Gib als nächstes noch die Captchas ein, um zu zeigen, dass es sich bei Dir um einen Menschen handelt und klicke auf "Connect". -Im nächsten Fenster siehst Du zunächst viel Text beim Verbindungsaufbau, der allerdings für Dich nicht weiter von Bedeutung ist. -Anschließend öffnet sich das Chat-Fenster. -In den ersten Zeilen wird Dir Dein Name und Deine aktuelle IP-Adresse angezeigt. -Rechts im Fenster siehst Du alle Teilnehmer des Chats. +Im nächsten Fenster siehst Du zunächst viel Text beim Verbindungsaufbau, der allerdings für Dich nicht weiter von Bedeutung ist. +Anschließend öffnet sich das Chat-Fenster. +In den ersten Zeilen wird Dir Dein Name und Deine aktuelle IP-Adresse angezeigt. +Rechts im Fenster siehst Du alle Teilnehmer des Chats. Unten hast Du ein Eingabefeld, um Beiträge zu schreiben. Weiter Informationen zu IRC findest Du zum Beispiel auf ubuntuusers.de, in Wikipedia oder bei icrhelp.org (in Englisch). ##Jappix Mini -Das Jappix Mini Plugin erlaubt das Erstellen einer Chatbox für Jabber/XMPP-Kontakte. +Das Jappix Mini Plugin erlaubt das Erstellen einer Chatbox für Jabber/XMPP-Kontakte. Ein Jabber/XMPP Account sollte vor der Installation bereits vorhanden sein. Die ausführliche Anleitung dazu und eine Kontrolle, ob Du nicht sogar schon über Deinen E-Mail Anbieter einen Jabber-Account hast, findest Du unter einfachjabber.de. @@ -53,29 +53,29 @@ oder als normaler Download von hier: https://github.com/friendica/friendica-addo Entpacke diese Datei (ggf. den entpackten Ordner in „jappixmini“ umbenennen) und lade sowohl den entpackten Ordner komplett als auch die .tgz Datei in den Addon Ordner Deiner Friendica Installation hoch. -Nach dem Upload gehts in den Friendica Adminbereich und dort zu den Plugins. +Nach dem Upload gehts in den Friendica Adminbereich und dort zu den Plugins. Aktiviere das Jappixmini Addon und gehe anschließend über die Plugins Seitenleiste (dort wo auch die Twitter-, Impressums-, GNU Social-, usw. Einstellungen gemacht werden) zu den Jappix Grundeinstellungen. -Setze hier den Haken zur Aktivierung des BOSH Proxys. +Setze hier den Haken zur Aktivierung des BOSH Proxys. Weiter gehts in den Einstellungen Deines Friendica Accounts. 2. Einstellungen -Gehe bitte zu den Plugin-Einstellungen in Deinen Konto-Einstellungen (Account Settings). +Gehe bitte zu den Plugin-Einstellungen in Deinen Konto-Einstellungen (Account Settings). Scrolle ein Stück hinunter bis zu den Jappix Mini Addon settings. Aktiviere hier zuerst das Addon. -Trage nun Deinen Jabber/XMPP Namen ein, ebenfalls die entsprechende Domain bzw. den Server (ohne http, also zb einfach so: jappix.com). +Trage nun Deinen Jabber/XMPP Namen ein, ebenfalls die entsprechende Domain bzw. den Server (ohne http, also zb einfach so: jappix.com). Um das JavaScript Applet zum Chatten im Browser verwenden zu können, benötigst du einen BOSH Proxy. Entweder betreibst du deinen eigenen (s. Dokumentation deines XMPP Servers) oder du verwendest einen öffentlichen BOSH Proxy. Beachte aber, dass der Betreiber dieses Proxies den kompletten Datenverkehr über den Proxy mitlesen kann. -Siehe dazu auch die „Configuration Help“ weiter unten. -Gebe danach noch Dein Passwort an, und damit ist eigentlich schon fast alles geschafft. -Die weiteren Einstellmöglichkeiten bleiben Dir überlassen, sind also optional. +Siehe dazu auch die „Configuration Help“ unter den Eingabefeldern. +Gebe danach noch Dein Passwort an, und damit ist eigentlich schon fast alles geschafft. +Die weiteren Einstellmöglichkeiten bleiben Dir überlassen, sind also optional. Jetzt noch auf „senden“ klicken und fertig. -Deine Chatbox sollte jetzt irgendwo unten rechts im Browserfenster „kleben“. -Falls Du manuell Kontakte hinzufügen möchtest, einfach den „Add Contact“-Knopf nutzen. +Deine Chatbox sollte jetzt irgendwo unten rechts im Browserfenster „kleben“. +Falls Du manuell Kontakte hinzufügen möchtest, einfach den „Add Contact“-Knopf nutzen. -Viel Spass beim Chatten! +Viel Spass beim Chatten! diff --git a/doc/de/Developers.md b/doc/de/Developers.md index b1d118fd59..2b44e405ff 100644 --- a/doc/de/Developers.md +++ b/doc/de/Developers.md @@ -7,18 +7,23 @@ Hier erfährst Du, wie Du bei uns mitmachen kannst: Zunächst erstelle Dir per 'git clone https://github.com/friendica/friendica.git' ein funktionierendes Git-Paket auf Deinem System, auf dem Du die Entwicklung durchführst, und einen eigenen Github-Account. -Erstelle Deine eigene Kopie (fork) der Ursprungsdaten auf Github, an der Du dann entspannt arbeiten kannst. +Erstelle Deine eigene Kopie (fork) der Ursprungsdaten auf Github, an der Du dann entspannt arbeiten kannst. Deine Arbeiten sollten mit einem neuen Arbeitszweig (branch) beginnen, den du vom develop Zweig des Repositories beginnst. Die Anleitung unter [http://help.github.com/fork-a-repo/](http://help.github.com/fork-a-repo/) erklärt Dir genau, wie Du das tun musst. Gehe dann nach getaner Arbeit zu Deiner Github-Seite und erstelle eine "Pull request", um Deine Änderungen in das Hauptprojekt einzugliedern (merge). +Solltest du keine Idee haben, an welcher Stelle du einsteigen könntest. +Wir haben einige Aufgaben auf github mit dem Schlagwort *Junior Job* versehen. +Bei diesen Aufgaben gehen wir davon aus, dass sie geeignete Einstiegsstellen sind. +Du musst dich aber natürlich nicht mit diesen Aufgaben beschäftigen um den Friendica Code zu verbeesern. + **Wichtig** -Bitte hole Dir alle Änderungen aus dem Projektverzeichnis und führe sie mit Deiner Arbeit zusammen, **bevor** Du Deine "pull request" erstellst. Wir behalten es uns vor, Patches abzulehnen, die eine große Anzahl an Fehlern hervorrufen. +Bitte hole Dir alle Änderungen aus dem Projektverzeichnis und führe sie mit Deiner Arbeit zusammen, **bevor** Du Deine "pull request" erstellst. Wir behalten es uns vor, Patches abzulehnen, die eine große Anzahl an Fehlern hervorrufen. Dies gilt vor allem für Übersetzungen, da wir hier möglicherweise nicht alle feinen Unterschiede in konfliktären Versionen erkennen können. -Außerdem: **teste Deine Änderungen!** Vergiss nicht, dass eine simple Fehlerlösung einen anderen Fehler auslösen kann. +Außerdem: **teste Deine Änderungen!** Vergiss nicht, dass eine simple Fehlerlösung einen anderen Fehler auslösen kann. Lass Deine Änderungen von einem erfahrenen Friendica-Entwickler gegenprüfen. Eine ausführliche Anleitung zu Git findest Du unter https://git-scm.com/book/de/v1. From 891ad5b39d2fd09a88622c4d7fd9f996ff3f7d97 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 19 Oct 2015 19:03:11 +0200 Subject: [PATCH 123/443] Support for additional passwords for ejabberd --- include/auth_ejabberd.php | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/include/auth_ejabberd.php b/include/auth_ejabberd.php index 8b18a02c58..5d69f1de7f 100755 --- a/include/auth_ejabberd.php +++ b/include/auth_ejabberd.php @@ -108,7 +108,7 @@ class exAuth // ovdje provjeri je li korisnik OK $sUser = str_replace(array("%20", "(a)"), array(" ", "@"), $aCommand[1]); $this->writeDebugLog("[debug] checking isuser for ". $sUser); - $sQuery = "select * from user where nickname='". $db->escape($sUser) ."'"; + $sQuery = "SELECT `uid` FROM `user` WHERE `nickname`='". $db->escape($sUser) ."'"; $this->writeDebugLog("[debug] using query ". $sQuery); if ($oResult = q($sQuery)){ if ($oResult) { @@ -120,7 +120,7 @@ class exAuth $this->writeLog("[exAuth] invalid user: ". $sUser); fwrite(STDOUT, pack("nn", 2, 0)); } - $oResult->close(); + //$oResult->close(); } else { $this->writeLog("[MySQL] invalid query: ". $sQuery); fwrite(STDOUT, pack("nn", 2, 0)); @@ -136,10 +136,13 @@ class exAuth // ovdje provjeri prijavu $sUser = str_replace(array("%20", "(a)"), array(" ", "@"), $aCommand[1]); $this->writeDebugLog("[debug] doing auth for ". $sUser); - $sQuery = "select * from user where password='".hash('whirlpool',$aCommand[3])."' and nickname='". $db->escape($sUser) ."'"; + //$sQuery = "SELECT `uid`, `password` FROM `user` WHERE `password`='".hash('whirlpool',$aCommand[3])."' AND `nickname`='". $db->escape($sUser) ."'"; + $sQuery = "SELECT `uid`, `password` FROM `user` WHERE `nickname`='". $db->escape($sUser) ."'"; $this->writeDebugLog("[debug] using query ". $sQuery); if ($oResult = q($sQuery)){ - if ($oResult) { + $Error = ($oResult[0]["password"] != hash('whirlpool',$aCommand[3])); +/* + if ($oResult[0]["password"] == hash('whirlpool',$aCommand[3])) { // korisnik OK $this->writeLog("[exAuth] authentificated user ". $sUser ."@". $aCommand[2]); fwrite(STDOUT, pack("nn", 2, 1)); @@ -149,9 +152,23 @@ class exAuth fwrite(STDOUT, pack("nn", 2, 0)); } $oResult->close(); +*/ } else { $this->writeLog("[MySQL] invalid query: ". $sQuery); + $Error = true; + } + if ($Error) { + $oConfig = q("SELECT `v` FROM `pconfig` WHERE `uid`=1 AND `cat` = 'xmpp' AND `k`='password' LIMIT 1;"); + $this->writeLog("[exAuth] got password ".$oConfig[0]["v"]); + $Error = ($aCommand[3] != $oConfig[0]["v"]); + } + + if ($Error) { + $this->writeLog("[exAuth] authentification failed for user ". $sUser ."@". $aCommand[2]); fwrite(STDOUT, pack("nn", 2, 0)); + } else { + $this->writeLog("[exAuth] authentificated user ". $sUser ."@". $aCommand[2]); + fwrite(STDOUT, pack("nn", 2, 1)); } } break; From 2aad62190fd2c0d85e636d01b7e6607a2510906b Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Thu, 22 Oct 2015 22:48:49 +0200 Subject: [PATCH 124/443] template rework: use viewcontact_template.tpl also for directory --- mod/directory.php | 8 ++++---- view/templates/contact_template.tpl | 2 ++ view/templates/directory_header.tpl | 4 ++-- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/mod/directory.php b/mod/directory.php index 46c4f38ad3..8ed4c22007 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -155,9 +155,9 @@ function directory_content(&$a) { $entry = array( 'id' => $rr['id'], - 'profile_link' => $profile_link, - 'photo' => proxy_url($a->get_cached_avatar_image($rr[$photo]), false, PROXY_SIZE_THUMB), - 'alt_text' => $rr['name'], + 'url' => $profile_link, + 'thumb' => proxy_url($a->get_cached_avatar_image($rr[$photo]), false, PROXY_SIZE_THUMB), + 'img_hover' => $rr['name'], 'name' => $rr['name'], 'details' => $pdesc . $details, 'page_type' => $page_type, @@ -192,7 +192,7 @@ function directory_content(&$a) { '$globaldir' => t('Global Directory'), '$gdirpath' => $gdirpath, '$desc' => t('Find on this site'), - '$entries' => $entries, + '$contacts' => $entries, '$finding' => t('Finding:'), '$findterm' => (strlen($search) ? $search : ""), '$title' => t('Site Directory'), diff --git a/view/templates/contact_template.tpl b/view/templates/contact_template.tpl index 4e8c04297d..39502c91af 100644 --- a/view/templates/contact_template.tpl +++ b/view/templates/contact_template.tpl @@ -1,3 +1,5 @@ +{{* todo: better layout and implement $contact.details and other variables *}} +
      diff --git a/view/templates/directory_header.tpl b/view/templates/directory_header.tpl index eda887a898..46f17de40e 100644 --- a/view/templates/directory_header.tpl +++ b/view/templates/directory_header.tpl @@ -22,8 +22,8 @@
      -{{foreach $entries as $entry}} - {{include file="directory_item.tpl"}} +{{foreach $contacts as $contact}} + {{include file="contact_template.tpl"}} {{/foreach}}
      From 0c3979720f0a2509cbc50662b4eba992ff81af13 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Fri, 23 Oct 2015 00:12:00 +0200 Subject: [PATCH 125/443] template rework: rearrange sidebar widgets for contact related pages --- mod/contacts.php | 16 +++++++++------- mod/directory.php | 4 ++-- mod/dirfind.php | 4 ++-- mod/match.php | 2 +- mod/suggest.php | 2 +- view/templates/contacts-widget-sidebar.tpl | 2 +- 6 files changed, 16 insertions(+), 14 deletions(-) diff --git a/mod/contacts.php b/mod/contacts.php index bdb25b022b..3ace870904 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -27,6 +27,9 @@ function contacts_init(&$a) { require_once('include/group.php'); require_once('include/contact_widgets.php'); + if ($_GET['nets'] == "all") + $_GET['nets'] = ""; + if(! x($a->page,'aside')) $a->page['aside'] = ''; @@ -35,29 +38,28 @@ function contacts_init(&$a) { $vcard_widget = replace_macros(get_markup_template("vcard-widget.tpl"),array( '$name' => htmlentities($a->data['contact']['name']), '$photo' => $a->data['contact']['photo'], - '$url' => ($a->data['contact']['network'] == NETWORK_DFRN) ? $a->get_baseurl()."/redir/".$a->data['contact']['id'] : $a->data['contact']['url'] + '$url' => ($a->data['contact']['network'] == NETWORK_DFRN) ? $a->get_baseurl()."/redir/".$a->data['contact']['id'] : $a->data['contact']['url'] )); $follow_widget = ''; + $networks_widget = ''; } else { $vcard_widget = ''; + $networks_widget .= networks_widget('contacts',$_GET['nets']); if (isset($_GET['add'])) $follow_widget = follow_widget($_GET['add']); else $follow_widget = follow_widget(); } - if ($_GET['nets'] == "all") - $_GET['nets'] = ""; - - $groups_widget .= group_side('contacts','group',false,0,$contact_id); $findpeople_widget .= findpeople_widget(); - $networks_widget .= networks_widget('contacts',$_GET['nets']); + $groups_widget .= group_side('contacts','group',false,0,$contact_id); + $a->page['aside'] .= replace_macros(get_markup_template("contacts-widget-sidebar.tpl"),array( '$vcard_widget' => $vcard_widget, + '$findpeople_widget' => $findpeople_widget, '$follow_widget' => $follow_widget, '$groups_widget' => $groups_widget, - '$findpeople_widget' => $findpeople_widget, '$networks_widget' => $networks_widget )); diff --git a/mod/directory.php b/mod/directory.php index 8ed4c22007..ef80b082a4 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -6,10 +6,10 @@ function directory_init(&$a) { if(local_user()) { require_once('include/contact_widgets.php'); - $a->page['aside'] .= follow_widget(); - $a->page['aside'] .= findpeople_widget(); + $a->page['aside'] .= follow_widget(); + } else { unset($_SESSION['theme']); diff --git a/mod/dirfind.php b/mod/dirfind.php index 77e86c5db3..bbd3badebf 100644 --- a/mod/dirfind.php +++ b/mod/dirfind.php @@ -13,9 +13,9 @@ function dirfind_init(&$a) { if(! x($a->page,'aside')) $a->page['aside'] = ''; - $a->page['aside'] .= follow_widget(); - $a->page['aside'] .= findpeople_widget(); + + $a->page['aside'] .= follow_widget(); } diff --git a/mod/match.php b/mod/match.php index f6174da66c..5da1e036c3 100644 --- a/mod/match.php +++ b/mod/match.php @@ -19,8 +19,8 @@ function match_content(&$a) { if(! local_user()) return; - $a->page['aside'] .= follow_widget(); $a->page['aside'] .= findpeople_widget(); + $a->page['aside'] .= follow_widget(); $_SESSION['return_url'] = $a->get_baseurl() . '/' . $a->cmd; diff --git a/mod/suggest.php b/mod/suggest.php index 5241e485ee..8870c65df8 100644 --- a/mod/suggest.php +++ b/mod/suggest.php @@ -61,8 +61,8 @@ function suggest_content(&$a) { $_SESSION['return_url'] = $a->get_baseurl() . '/' . $a->cmd; - $a->page['aside'] .= follow_widget(); $a->page['aside'] .= findpeople_widget(); + $a->page['aside'] .= follow_widget(); $r = suggestion_query(local_user()); diff --git a/view/templates/contacts-widget-sidebar.tpl b/view/templates/contacts-widget-sidebar.tpl index 5c52f4329a..5b0610fcbd 100644 --- a/view/templates/contacts-widget-sidebar.tpl +++ b/view/templates/contacts-widget-sidebar.tpl @@ -1,7 +1,7 @@ {{$vcard_widget}} +{{$findpeople_widget}} {{$follow_widget}} {{$groups_widget}} -{{$findpeople_widget}} {{$networks_widget}} From b2bb600f3a878409f925524e1de90d0239b662b0 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Fri, 23 Oct 2015 01:04:47 +0200 Subject: [PATCH 126/443] template rework: delete unused css --- view/theme/duepuntozero/style.css | 24 +----------------------- view/theme/frost-mobile/style.css | 26 -------------------------- view/theme/frost/style.css | 26 -------------------------- view/theme/quattro/dark/style.css | 13 ------------- view/theme/quattro/green/style.css | 13 ------------- view/theme/quattro/lilac/style.css | 13 ------------- view/theme/quattro/quattro.less | 9 --------- view/theme/smoothly/style.css | 19 ------------------- view/theme/vier/style.css | 13 ------------- 9 files changed, 1 insertion(+), 155 deletions(-) diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 7220b4c47f..acdcd61c12 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -963,7 +963,7 @@ input#dfrn-url { } .wall-item-content-wrapper.comment { -# margin-left: 50px; +/* margin-left: 50px;*/ background: #EEEEEE; } @@ -1446,24 +1446,6 @@ blockquote.shared_content { .directory-end { clear: both; } -.directory-name { - text-align: center; -} -.directory-photo { - margin-left: 25px; -} -.directory-details { - font-size: 0.7em; - text-align: center; - margin-left: 5px; - margin-right: 5px; -} -.directory-item { - float: left; - width: 225px; - height: 260px; - overflow: auto; -} #directory-search-wrapper { margin-top: 20px; @@ -1474,10 +1456,6 @@ blockquote.shared_content { #directory-search-end { } -.directory-photo-img { - border: none; -} - .pager { padding: 10px; diff --git a/view/theme/frost-mobile/style.css b/view/theme/frost-mobile/style.css index ef030c5f3a..80848e2dc2 100644 --- a/view/theme/frost-mobile/style.css +++ b/view/theme/frost-mobile/style.css @@ -1779,27 +1779,6 @@ input#profile-jot-email { .directory-end { clear: both; } -.directory-name { - text-align: center; -} -.directory-photo { - margin-left: 15px; -} -.directory-details { - font-size: 0.7em; - text-align: center; - margin-left: 5px; - margin-right: 5px; -} -.directory-item { - float: left; -/* width: 225px; - height: 260px;*/ - padding-left: 15px; - width: 130px; - height: 235px; - overflow: auto; -} #directory-search-wrapper { margin-top: 20px; @@ -1810,11 +1789,6 @@ input#profile-jot-email { #directory-search-end { } -.directory-photo-img { - width: 125px; - border: none; -} - .pager { margin-top: 30px; diff --git a/view/theme/frost/style.css b/view/theme/frost/style.css index 66121baf34..fe839dee1a 100644 --- a/view/theme/frost/style.css +++ b/view/theme/frost/style.css @@ -1723,27 +1723,6 @@ input#dfrn-url { .directory-end { clear: both; } -.directory-name { - text-align: center; -} -.directory-photo { - margin-left: 25px; -} -.directory-details { - font-size: 0.7em; - text-align: center; - margin-left: 5px; - margin-right: 5px; -} -.directory-item { - float: left; -/* width: 225px; - height: 260px;*/ - padding-left: 25px; - width: 150px; - height: 225px; - overflow: auto; -} #directory-search-wrapper { margin-top: 20px; @@ -1754,11 +1733,6 @@ input#dfrn-url { #directory-search-end { } -.directory-photo-img { - width: 125px; - border: none; -} - /* NOTE: The order of the "pager" items here is very important! * The concern is maintaining a decent-looking pager for people who still use * the numbers, while also having a nice-looking pager for people who use the diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index b0489af808..57df374206 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -1568,19 +1568,6 @@ span[id^="showmore-wrap"] { padding-top: 5px; font-weight: bold; } -.directory-item { - float: left; - width: 200px; - height: 200px; -} -.directory-item .contact-photo { - width: 175px; - height: 175px; -} -.directory-item .contact-photo img { - width: 175px; - height: 175px; -} .contact-name { font-weight: bold; padding-top: 15px; diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index 0c7050045d..dbc48c1e43 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -1568,19 +1568,6 @@ span[id^="showmore-wrap"] { padding-top: 5px; font-weight: bold; } -.directory-item { - float: left; - width: 200px; - height: 200px; -} -.directory-item .contact-photo { - width: 175px; - height: 175px; -} -.directory-item .contact-photo img { - width: 175px; - height: 175px; -} .contact-name { font-weight: bold; padding-top: 15px; diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index c5f655427a..fcfe7c0ec3 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -1568,19 +1568,6 @@ span[id^="showmore-wrap"] { padding-top: 5px; font-weight: bold; } -.directory-item { - float: left; - width: 200px; - height: 200px; -} -.directory-item .contact-photo { - width: 175px; - height: 175px; -} -.directory-item .contact-photo img { - width: 175px; - height: 175px; -} .contact-name { font-weight: bold; padding-top: 15px; diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index cd604b656a..777ee8ccc1 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -899,15 +899,6 @@ span[id^="showmore-wrap"] { font-weight: bold; } } -.directory-item { - float: left; - width: 200px; - height: 200px; - .contact-photo { - width: 175px; height: 175px; - img { width: 175px; height: 175px; } - } -} .contact-name { font-weight: bold; padding-top: 15px; } .contact-details { color: @Grey3; white-space: nowrap; diff --git a/view/theme/smoothly/style.css b/view/theme/smoothly/style.css index 3fe04c0649..ef2be2fff4 100644 --- a/view/theme/smoothly/style.css +++ b/view/theme/smoothly/style.css @@ -3656,25 +3656,6 @@ margin-left: 0px; margin-top: 10px; } -/* ============= */ -/* = Directory = */ -/* ============= */ - -.directory-item { - float: left; - margin: 50px 50px 0px 0px; -} - -.directory-details { - font-size: 0.9em; - width: 160px; -} - -.directory-name { - font-size: 1em; - width: 150px; -} - /* ========= */ /* = Admin = */ /* ========= */ diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index d914d944a2..3757d79e2d 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -2687,19 +2687,6 @@ a.mail-list-link { left: 0px; top: 63px; } -.directory-item { - float: left; - width: 200px; - height: 200px; -} -.directory-item .contact-photo { - width: 175px; - height: 175px; -} -.directory-item .contact-photo img { - width: 175px; - height: 175px; -} .contact-name { text-align: center; font-weight: bold; From efb12aed20231670107f475c6926aecf6ad07d1f Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Fri, 23 Oct 2015 01:32:03 +0200 Subject: [PATCH 127/443] template rework: little theme specific changes (frost, quattro) --- .../templates/suggest_friends.tpl | 23 ------------------- .../theme/frost/templates/suggest_friends.tpl | 23 ------------------- .../quattro/templates/contact_template.tpl | 5 ++-- 3 files changed, 3 insertions(+), 48 deletions(-) delete mode 100644 view/theme/frost-mobile/templates/suggest_friends.tpl delete mode 100644 view/theme/frost/templates/suggest_friends.tpl diff --git a/view/theme/frost-mobile/templates/suggest_friends.tpl b/view/theme/frost-mobile/templates/suggest_friends.tpl deleted file mode 100644 index a386f30d00..0000000000 --- a/view/theme/frost-mobile/templates/suggest_friends.tpl +++ /dev/null @@ -1,23 +0,0 @@ - -{{include file="section_title.tpl"}} - -{{foreach $entries as $entry}} -
      -
      - - {{$entry.name}} - -
      -
      - -
      - {{if $entry.connlnk}} - - {{/if}} - -
      -{{/foreach}} - -
      diff --git a/view/theme/frost/templates/suggest_friends.tpl b/view/theme/frost/templates/suggest_friends.tpl deleted file mode 100644 index a386f30d00..0000000000 --- a/view/theme/frost/templates/suggest_friends.tpl +++ /dev/null @@ -1,23 +0,0 @@ - -{{include file="section_title.tpl"}} - -{{foreach $entries as $entry}} -
      -
      - - {{$entry.name}} - -
      -
      - -
      - {{if $entry.connlnk}} - - {{/if}} - -
      -{{/foreach}} - -
      diff --git a/view/theme/quattro/templates/contact_template.tpl b/view/theme/quattro/templates/contact_template.tpl index 634630d9ab..7060505e9f 100644 --- a/view/theme/quattro/templates/contact_template.tpl +++ b/view/theme/quattro/templates/contact_template.tpl @@ -28,8 +28,9 @@
      {{$contact.name}}
      {{if $contact.alt_text}}
      {{$contact.alt_text}}
      {{/if}} -
      {{$contact.itemurl}}
      -
      {{$contact.network}}
      + {{if $contact.itemurl}}
      {{$contact.itemurl}}
      {{/if}} + {{if $contact.network}}
      {{$contact.network}}
      {{/if}} + {{if $contact.details}}
      {{$contact.details}}
      {{/if}} {{if $contact.connlnk}}
      {{$contact.conntxt}}
      From fad8ebc355c74d8ff06768342cdd8ecc609ece93 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Fri, 23 Oct 2015 15:18:05 +0200 Subject: [PATCH 128/443] template rework: two row contact page for vier --- view/theme/vier/style.css | 43 ++++++++++++++++--- .../theme/vier/templates/contact_template.tpl | 16 +++++-- 2 files changed, 48 insertions(+), 11 deletions(-) diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index 3757d79e2d..d6e47da010 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -351,7 +351,7 @@ code { margin: 0px; padding: 1em; list-style: none; - border: 3px solid #364e59; + /*border: 3px solid #364e59;*/ z-index: 100000; box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); } @@ -2270,12 +2270,40 @@ aside #id_password { float: left; } /* contacts */ -.contact-entry-wrapper { +/*.contact-entry-wrapper { width: 120px; height: 130px; float: left; -/* overflow: hidden; */ + overflow: hidden; margin-left: 5px; +}*/ + +.contact-entry-wrapper { + float: left; + width: 363px; + height: 90px; + padding-right: 10px; + margin: 0 10px 10px 0px; +} +.contact-entry-wrapper .contact-entry-photo-wrapper { + float: left; + margin-right: 10px; +} +.contact-entry-photo-wrapper { + position: relative; +} +.contact-entry-desc { + overflow: hidden; +} +.contact-entry-name { + font-weight: bold; +} +.contact-entry-details { + font-size: 13px; + color: #999999; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } /* photo */ .lframe { @@ -2323,14 +2351,15 @@ aside #id_password { } .contact-photo-menu { width: 11em; - border: 3px solid #364e59; + /*border: 3px solid #364e59;*/ color: #2d2d2d; background: #FFFFFF; -/* position: absolute;*/ - position: relative; - left: 0px; top: 0px; + position: absolute; + /*position: relative;*/ + left: 0px; /*top: 0px;*/ display: none; z-index: 10000; + box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7); } .contact-photo-menu ul { margin:0px; padding: 0px; list-style: none } .contact-photo-menu li a { diff --git a/view/theme/vier/templates/contact_template.tpl b/view/theme/vier/templates/contact_template.tpl index a065b8fbf4..add2eff5c1 100644 --- a/view/theme/vier/templates/contact_template.tpl +++ b/view/theme/vier/templates/contact_template.tpl @@ -13,12 +13,12 @@ {{if $contact.photo_menu}}
      -
      -
      {{$contact.name}}
      + +
      +
      {{$contact.name}}
      + {{if $contact.alt_text}}
      {{$contact.alt_text}}
      {{/if}} + {{if $contact.itemurl}}
      {{$contact.itemurl}}
      {{/if}} + {{if $contact.network}}
      {{$contact.network}}
      {{/if}} + {{if $contact.details}}
      {{$contact.details}}
      {{/if}} +
      +
      From 7c9df689645f9674d13dd887ad53e838464b40a1 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Fri, 23 Oct 2015 15:23:00 +0200 Subject: [PATCH 129/443] template rework: revert #b2bb600 for vier (is needed for right sidebar) --- view/theme/vier/style.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index d6e47da010..d494cf459c 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -2716,6 +2716,19 @@ a.mail-list-link { left: 0px; top: 63px; } +.directory-item { + float: left; + width: 200px; + height: 200px; +} +.directory-item .contact-photo { + width: 175px; + height: 175px; +} +.directory-item .contact-photo img { + width: 175px; + height: 175px; +} .contact-name { text-align: center; font-weight: bold; From b6cceda131abe24ec1ba56ef8d6cf6a27a8c310d Mon Sep 17 00:00:00 2001 From: rabuzarus Date: Fri, 23 Oct 2015 15:41:49 +0200 Subject: [PATCH 130/443] template rework: revert commit because plugin community home uses the css classes --- view/theme/duepuntozero/style.css | 24 +++++++++++++++++++++++- view/theme/frost-mobile/style.css | 26 ++++++++++++++++++++++++++ view/theme/frost/style.css | 26 ++++++++++++++++++++++++++ view/theme/quattro/dark/style.css | 13 +++++++++++++ view/theme/quattro/green/style.css | 13 +++++++++++++ view/theme/quattro/lilac/style.css | 13 +++++++++++++ view/theme/quattro/quattro.less | 9 +++++++++ view/theme/smoothly/style.css | 19 +++++++++++++++++++ 8 files changed, 142 insertions(+), 1 deletion(-) diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index acdcd61c12..7220b4c47f 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -963,7 +963,7 @@ input#dfrn-url { } .wall-item-content-wrapper.comment { -/* margin-left: 50px;*/ +# margin-left: 50px; background: #EEEEEE; } @@ -1446,6 +1446,24 @@ blockquote.shared_content { .directory-end { clear: both; } +.directory-name { + text-align: center; +} +.directory-photo { + margin-left: 25px; +} +.directory-details { + font-size: 0.7em; + text-align: center; + margin-left: 5px; + margin-right: 5px; +} +.directory-item { + float: left; + width: 225px; + height: 260px; + overflow: auto; +} #directory-search-wrapper { margin-top: 20px; @@ -1456,6 +1474,10 @@ blockquote.shared_content { #directory-search-end { } +.directory-photo-img { + border: none; +} + .pager { padding: 10px; diff --git a/view/theme/frost-mobile/style.css b/view/theme/frost-mobile/style.css index 80848e2dc2..ef030c5f3a 100644 --- a/view/theme/frost-mobile/style.css +++ b/view/theme/frost-mobile/style.css @@ -1779,6 +1779,27 @@ input#profile-jot-email { .directory-end { clear: both; } +.directory-name { + text-align: center; +} +.directory-photo { + margin-left: 15px; +} +.directory-details { + font-size: 0.7em; + text-align: center; + margin-left: 5px; + margin-right: 5px; +} +.directory-item { + float: left; +/* width: 225px; + height: 260px;*/ + padding-left: 15px; + width: 130px; + height: 235px; + overflow: auto; +} #directory-search-wrapper { margin-top: 20px; @@ -1789,6 +1810,11 @@ input#profile-jot-email { #directory-search-end { } +.directory-photo-img { + width: 125px; + border: none; +} + .pager { margin-top: 30px; diff --git a/view/theme/frost/style.css b/view/theme/frost/style.css index fe839dee1a..66121baf34 100644 --- a/view/theme/frost/style.css +++ b/view/theme/frost/style.css @@ -1723,6 +1723,27 @@ input#dfrn-url { .directory-end { clear: both; } +.directory-name { + text-align: center; +} +.directory-photo { + margin-left: 25px; +} +.directory-details { + font-size: 0.7em; + text-align: center; + margin-left: 5px; + margin-right: 5px; +} +.directory-item { + float: left; +/* width: 225px; + height: 260px;*/ + padding-left: 25px; + width: 150px; + height: 225px; + overflow: auto; +} #directory-search-wrapper { margin-top: 20px; @@ -1733,6 +1754,11 @@ input#dfrn-url { #directory-search-end { } +.directory-photo-img { + width: 125px; + border: none; +} + /* NOTE: The order of the "pager" items here is very important! * The concern is maintaining a decent-looking pager for people who still use * the numbers, while also having a nice-looking pager for people who use the diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index 57df374206..b0489af808 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -1568,6 +1568,19 @@ span[id^="showmore-wrap"] { padding-top: 5px; font-weight: bold; } +.directory-item { + float: left; + width: 200px; + height: 200px; +} +.directory-item .contact-photo { + width: 175px; + height: 175px; +} +.directory-item .contact-photo img { + width: 175px; + height: 175px; +} .contact-name { font-weight: bold; padding-top: 15px; diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index dbc48c1e43..0c7050045d 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -1568,6 +1568,19 @@ span[id^="showmore-wrap"] { padding-top: 5px; font-weight: bold; } +.directory-item { + float: left; + width: 200px; + height: 200px; +} +.directory-item .contact-photo { + width: 175px; + height: 175px; +} +.directory-item .contact-photo img { + width: 175px; + height: 175px; +} .contact-name { font-weight: bold; padding-top: 15px; diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index fcfe7c0ec3..c5f655427a 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -1568,6 +1568,19 @@ span[id^="showmore-wrap"] { padding-top: 5px; font-weight: bold; } +.directory-item { + float: left; + width: 200px; + height: 200px; +} +.directory-item .contact-photo { + width: 175px; + height: 175px; +} +.directory-item .contact-photo img { + width: 175px; + height: 175px; +} .contact-name { font-weight: bold; padding-top: 15px; diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index 777ee8ccc1..cd604b656a 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -899,6 +899,15 @@ span[id^="showmore-wrap"] { font-weight: bold; } } +.directory-item { + float: left; + width: 200px; + height: 200px; + .contact-photo { + width: 175px; height: 175px; + img { width: 175px; height: 175px; } + } +} .contact-name { font-weight: bold; padding-top: 15px; } .contact-details { color: @Grey3; white-space: nowrap; diff --git a/view/theme/smoothly/style.css b/view/theme/smoothly/style.css index ef2be2fff4..3fe04c0649 100644 --- a/view/theme/smoothly/style.css +++ b/view/theme/smoothly/style.css @@ -3656,6 +3656,25 @@ margin-left: 0px; margin-top: 10px; } +/* ============= */ +/* = Directory = */ +/* ============= */ + +.directory-item { + float: left; + margin: 50px 50px 0px 0px; +} + +.directory-details { + font-size: 0.9em; + width: 160px; +} + +.directory-name { + font-size: 1em; + width: 150px; +} + /* ========= */ /* = Admin = */ /* ========= */ From eaf5d05030e4c8d09d0fd221b0aa2657c69b0c0d Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Fri, 23 Oct 2015 16:48:32 +0200 Subject: [PATCH 131/443] template rework: display more infos for match and dirfind --- mod/dirfind.php | 8 ++++++-- mod/match.php | 1 + 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/mod/dirfind.php b/mod/dirfind.php index bbd3badebf..492f39d5a6 100644 --- a/mod/dirfind.php +++ b/mod/dirfind.php @@ -2,6 +2,7 @@ require_once('include/contact_widgets.php'); require_once('include/socgraph.php'); require_once('include/Contact.php'); +require_once('include/contact_selectors.php'); function dirfind_init(&$a) { @@ -57,7 +58,7 @@ function dirfind_content(&$a, $prefix = "") { dbesc(escape_tags($search)), dbesc(escape_tags($search)), dbesc(escape_tags($search)), dbesc(escape_tags($search)), dbesc(escape_tags($search))); - $results = q("SELECT `contact`.`id` AS `cid`, `gcontact`.`url`, `gcontact`.`name`, `gcontact`.`photo`, `gcontact`.`keywords` + $results = q("SELECT `contact`.`id` AS `cid`, `gcontact`.`url`, `gcontact`.`name`, `gcontact`.`photo`, `gcontact`.`network` , `gcontact`.`keywords` FROM `gcontact` LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl` AND `contact`.`uid` = %d AND NOT `contact`.`blocked` @@ -76,7 +77,7 @@ function dirfind_content(&$a, $prefix = "") { $j = new stdClass(); $j->total = $count[0]["total"]; $j->items_page = $perpage; - $j->page = $a->pager['page']; + $j->page = $a->pager['page']; foreach ($results AS $result) { if (poco_alternate_ostatus_url($result["url"])) continue; @@ -92,6 +93,7 @@ function dirfind_content(&$a, $prefix = "") { $objresult->url = $result["url"]; $objresult->photo = $result["photo"]; $objresult->tags = $result["keywords"]; + $objresult->network = $result["network"]; $j->results[] = $objresult; } @@ -140,12 +142,14 @@ function dirfind_content(&$a, $prefix = "") { $entry = array( 'url' => zrl($jj->url), + 'itemurl' => $jj->url, 'name' => htmlentities($jj->name), 'thumb' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB), 'img_hover' => $jj->tags, 'conntxt' => $conntxt, 'connlnk' => $connlnk, 'photo_menu' => $photo_menu, + 'network' => network_to_name($jj->network, $jj->url), 'id' => ++$id, ); $entries[] = $entry; diff --git a/mod/match.php b/mod/match.php index 5da1e036c3..ed7c21e4eb 100644 --- a/mod/match.php +++ b/mod/match.php @@ -72,6 +72,7 @@ function match_content(&$a) { $entry = array( 'url' => zrl($jj->url), + 'itemurl' => $jj->url, 'name' => $jj->name, 'thumb' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB), 'inttxt' => ' ' . t('is interested in:'), From 86f94570efb1577bbeaa591f8b7648114c78c1b5 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Fri, 23 Oct 2015 16:49:12 +0200 Subject: [PATCH 132/443] template rework: delete unused templates --- view/templates/match.tpl | 40 ------------------------------ view/templates/suggest_friends.tpl | 23 ----------------- 2 files changed, 63 deletions(-) delete mode 100644 view/templates/match.tpl delete mode 100644 view/templates/suggest_friends.tpl diff --git a/view/templates/match.tpl b/view/templates/match.tpl deleted file mode 100644 index d269a253bc..0000000000 --- a/view/templates/match.tpl +++ /dev/null @@ -1,40 +0,0 @@ -{{include file="section_title.tpl"}} - -{{foreach $entries as $entry}} -
      -
      - - {{$entry.name}} - - {{if $entry.photo_menu}} - menu -
      -
        - {{foreach $entry.photo_menu as $k=>$c}} - {{if $c.2}} -
      • {{$c.0}}
      • - {{else}} -
      • {{$c.0}}
      • - {{/if}} - {{/foreach}} -
      -
      - {{/if}} -
      -
      - -
      - {{if $entry.connlnk}} - - {{/if}} - -
      -{{/foreach}} - -
      - -{{$paginate}} diff --git a/view/templates/suggest_friends.tpl b/view/templates/suggest_friends.tpl deleted file mode 100644 index e7c9c1ac00..0000000000 --- a/view/templates/suggest_friends.tpl +++ /dev/null @@ -1,23 +0,0 @@ - -{{include file="section_title.tpl"}} - -{{foreach $entries as $entry}} -
      - -
      - - {{$entry.name}} - -
      -
      - -
      - {{if $entry.connlnk}} - - {{/if}} -
      -{{/foreach}} - -
      From 442d59abc4c7c54abfee6b0d1d6583634b04ccf1 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Fri, 23 Oct 2015 21:45:16 +0200 Subject: [PATCH 133/443] template rework: multi-row view for the other themes --- view/templates/contact_template.tpl | 12 ++++--- view/theme/duepuntozero/style.css | 21 +++++++---- view/theme/frost-mobile/style.css | 18 +++++++--- .../templates/contact_template.tpl | 12 ++++--- .../templates/contacts-template.tpl | 3 +- .../templates/viewcontact_template.tpl | 12 ------- view/theme/frost/style.css | 20 +++++++---- .../frost/templates/contact_template.tpl | 12 ++++--- view/theme/smoothly/style.css | 35 +++++++++++++++---- 9 files changed, 96 insertions(+), 49 deletions(-) delete mode 100644 view/theme/frost-mobile/templates/viewcontact_template.tpl diff --git a/view/templates/contact_template.tpl b/view/templates/contact_template.tpl index 39502c91af..75f49653b0 100644 --- a/view/templates/contact_template.tpl +++ b/view/templates/contact_template.tpl @@ -1,5 +1,3 @@ -{{* todo: better layout and implement $contact.details and other variables *}} -
      @@ -30,8 +28,14 @@
      -
      -
      {{$contact.name}}
      + +
      +
      {{$contact.name}}
      + {{if $contact.alt_text}}
      {{$contact.alt_text}}
      {{/if}} + {{if $contact.itemurl}}
      {{$contact.itemurl}}
      {{/if}} + {{if $contact.network}}
      {{$contact.network}}
      {{/if}} + {{if $contact.details}}
      {{$contact.details}}
      {{/if}} +
      diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 7220b4c47f..4db523c5ba 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -876,8 +876,14 @@ input#dfrn-url { .contact-entry-wrapper { float: left; - width: 120px; - height: 120px; + min-width: 363px; + height: 90px; + padding-right: 10px; + margin: 0 10px 10px 0px; +} +.contact-entry-wrapper .contact-entry-photo-wrapper { + float: left; + margin-right: 10px; } #contacts-search-end { margin-bottom: 10px; @@ -899,11 +905,14 @@ input#dfrn-url { clear: both; } .contact-entry-name { - float: left; - margin-left: 0px; - margin-right: 10px; - width: 120px; + font-weight: bold; +} +.contact-entry-details { + font-size: 13px; + color: #999999; + white-space: nowrap; overflow: hidden; + text-overflow: ellipsis; } .contact-entry-edit-links { margin-top: 6px; diff --git a/view/theme/frost-mobile/style.css b/view/theme/frost-mobile/style.css index ef030c5f3a..46fe48caf3 100644 --- a/view/theme/frost-mobile/style.css +++ b/view/theme/frost-mobile/style.css @@ -1110,8 +1110,13 @@ input#dfrn-url { height: 120px;*/ padding-left: 15px; padding-right: 15px; - width: 95px; - height: 200px; + max-width: 262px; + height: 90px; + margin: 0 10px 10px 0px; +} +.contact-entry-wrapper .contact-entry-photo-wrapper { + float: left; + margin-right: 10px; } #contacts-search-end { margin-bottom: 10px; @@ -1130,8 +1135,10 @@ input#dfrn-url { .contact-entry-photo-end { clear: both; } +.contact-entry-desc { + overflow: hidden; +} .contact-entry-name { - float: left; margin-left: 0px; margin-right: 10px; padding-bottom: 5px; @@ -1143,6 +1150,9 @@ input#dfrn-url { font-style: italic; font-size: 10px; font-weight: 500; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } .contact-entry-network { font-size: 10px; @@ -2137,7 +2147,7 @@ input#profile-jot-email { border: 1px solid #AAA; background: #FFFFFF; position: absolute; - left: -30px; top: 80px; + /*left: -30px;*/ top: 80px; display: none; z-index: 101; -moz-box-shadow: 3px 3px 5px #555; diff --git a/view/theme/frost-mobile/templates/contact_template.tpl b/view/theme/frost-mobile/templates/contact_template.tpl index 42f4b7372a..198b24746f 100644 --- a/view/theme/frost-mobile/templates/contact_template.tpl +++ b/view/theme/frost-mobile/templates/contact_template.tpl @@ -28,10 +28,14 @@
      -
      -
      {{$contact.name}}

      - {{if $contact.alt_text}}
      {{$contact.alt_text}}
      {{/if}} -
      {{$contact.network}}
      + +
      +
      {{$contact.name}}
      + {{if $contact.alt_text}}
      {{$contact.alt_text}}
      {{/if}} + {{if $contact.itemurl}}
      {{$contact.itemurl}}
      {{/if}} + {{if $contact.network}}
      {{$contact.network}}
      {{/if}} + {{if $contact.details}}
      {{$contact.details}}
      {{/if}} +
    diff --git a/view/theme/frost-mobile/templates/contacts-template.tpl b/view/theme/frost-mobile/templates/contacts-template.tpl index 94e9afbe56..f776222f32 100644 --- a/view/theme/frost-mobile/templates/contacts-template.tpl +++ b/view/theme/frost-mobile/templates/contacts-template.tpl @@ -15,11 +15,10 @@ {{$tabs}} -
    + {{foreach $contacts as $contact}} {{include file="contact_template.tpl"}} {{/foreach}} -
    {{$paginate}} diff --git a/view/theme/frost-mobile/templates/viewcontact_template.tpl b/view/theme/frost-mobile/templates/viewcontact_template.tpl deleted file mode 100644 index 3b68410f95..0000000000 --- a/view/theme/frost-mobile/templates/viewcontact_template.tpl +++ /dev/null @@ -1,12 +0,0 @@ - -{{include file="section_title.tpl"}} - -
    -{{foreach $contacts as $contact}} - {{include file="contact_template.tpl"}} -{{/foreach}} -
    - -
    - -{{$paginate}} diff --git a/view/theme/frost/style.css b/view/theme/frost/style.css index 66121baf34..b35c414053 100644 --- a/view/theme/frost/style.css +++ b/view/theme/frost/style.css @@ -1074,12 +1074,14 @@ input#dfrn-url { .contact-entry-wrapper { float: left; -/* width: 120px; - height: 120px;*/ - padding-left: 8px; - padding-right: 8px; - width: 95px; - height: 170px; + width: 262px; + height: 90px; + padding-right: 10px; + margin: 0 10px 10px 0px; +} +.contact-entry-wrapper .contact-entry-photo-wrapper { + float: left; + margin-right: 10px; } #contacts-search-end { margin-bottom: 10px; @@ -1100,6 +1102,9 @@ input#dfrn-url { .contact-entry-photo-end { clear: both; } +.contact-entry-desc { + overflow: hidden; +} .contact-entry-name { /*float: left;*/ margin-left: 0px; @@ -1113,6 +1118,9 @@ input#dfrn-url { font-style: italic; font-size: 10px; font-weight: 500; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } .contact-entry-network { font-size: 10px; diff --git a/view/theme/frost/templates/contact_template.tpl b/view/theme/frost/templates/contact_template.tpl index 1ed1471a6e..777ed50179 100644 --- a/view/theme/frost/templates/contact_template.tpl +++ b/view/theme/frost/templates/contact_template.tpl @@ -25,10 +25,14 @@
    -
    -
    {{$contact.name}}
    - {{if $contact.alt_text}}
    {{$contact.alt_text}}
    {{/if}} -
    {{$contact.network}}
    + +
    +
    {{$contact.name}}
    + {{if $contact.alt_text}}
    {{$contact.alt_text}}
    {{/if}} + {{if $contact.itemurl}}
    {{$contact.itemurl}}
    {{/if}} + {{if $contact.network}}
    {{$contact.network}}
    {{/if}} + {{if $contact.details}}
    {{$contact.details}}
    {{/if}} +
    diff --git a/view/theme/smoothly/style.css b/view/theme/smoothly/style.css index 3fe04c0649..ae670cf3ad 100644 --- a/view/theme/smoothly/style.css +++ b/view/theme/smoothly/style.css @@ -115,6 +115,10 @@ input[type=submit]:active { #search-save { } +#directory-search-end { + clear: both; +} + .dirsearch-desc { } @@ -2753,11 +2757,10 @@ margin-left: 0px; .view-contact-wrapper, .contact-entry-wrapper { float: left; - margin-right: 30px; - margin-bottom: 20px; - width: 88px; + padding-right: 10px; + width: 345px; height: 120px; - position: relative; + margin: 0 10px 10px 0px; } #view-contact-end { @@ -2768,6 +2771,10 @@ margin-left: 0px; margin-top: 15px; } +.contact-entry-wrapper .contact-entry-photo-wrapper { + float: left; + margin-right: 10px; +} .contact-entry-direction-wrapper { position: absolute; top: 20px; @@ -2784,17 +2791,27 @@ margin-left: 0px; font-weight: bold; } +.contact-entry-desc { + overflow: hidden; +} + .contact-entry-name, .contact-entry-connect { - width: 100px; overflow: hidden; font: #999; font-size: 12px; - text-align: center; font-weight: bold; margin-top: 5px; } -.contact-entry-photo { +.contact-entry-details { + font-size: 13px; + color: #999999; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +.contact-entry-photo-wrapper { position: relative; /*border: 1px solid #7C7D7B; border-radius: 3px; @@ -2805,6 +2822,10 @@ margin-left: 0px; -webkit-box-shadow: 0 0 8px #BDBDBD;*/ } +.contact-entry-photo { + width: 80px; +} + .contact-entry-photo a img { width: 80px; height: 80px; From 87ecd8f6585d1d02ecb851c4acbfe6a09c8dd003 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sat, 24 Oct 2015 15:04:27 +0200 Subject: [PATCH 134/443] tabs have now an ID --- mod/contacts.php | 11 ++++++++ mod/network.php | 71 +++++++++++++++++++++++++++--------------------- 2 files changed, 51 insertions(+), 31 deletions(-) diff --git a/mod/contacts.php b/mod/contacts.php index c562c9822d..0ecc5a76db 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -550,6 +550,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/block', 'sel' => '', 'title' => t('Toggle Blocked status'), + 'id' => 'toggle-block-tab', 'accesskey' => 'b', ), array( @@ -557,6 +558,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/ignore', 'sel' => '', 'title' => t('Toggle Ignored status'), + 'id' => 'toggle-ignore-tab', 'accesskey' => 'i', ), @@ -565,6 +567,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/archive', 'sel' => '', 'title' => t('Toggle Archive status'), + 'id' => 'toggle-archive-tab', 'accesskey' => 'v', ), array( @@ -572,6 +575,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/crepair/' . $contact_id, 'sel' => '', 'title' => t('Advanced Contact Settings'), + 'id' => 'repair-tab', 'accesskey' => 'r', ) ); @@ -693,6 +697,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/suggest', 'sel' => '', 'title' => t('Suggest potential friends'), + 'id' => 'suggestions-tab', 'accesskey' => 'g', ), array( @@ -700,6 +705,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/contacts/all', 'sel' => ($all) ? 'active' : '', 'title' => t('Show all contacts'), + 'id' => 'showall-tab', 'accesskey' => 'l', ), array( @@ -707,6 +713,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/contacts', 'sel' => ((! $all) && (! $blocked) && (! $hidden) && (! $search) && (! $nets) && (! $ignored) && (! $archived)) ? 'active' : '', 'title' => t('Only show unblocked contacts'), + 'id' => 'showunblocked-tab', 'accesskey' => 'o', ), @@ -715,6 +722,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/contacts/blocked', 'sel' => ($blocked) ? 'active' : '', 'title' => t('Only show blocked contacts'), + 'id' => 'showblocked-tab', 'accesskey' => 'b', ), @@ -723,6 +731,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/contacts/ignored', 'sel' => ($ignored) ? 'active' : '', 'title' => t('Only show ignored contacts'), + 'id' => 'showignored-tab', 'accesskey' => 'i', ), @@ -731,6 +740,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/contacts/archived', 'sel' => ($archived) ? 'active' : '', 'title' => t('Only show archived contacts'), + 'id' => 'showarchived-tab', 'accesskey' => 'y', ), @@ -739,6 +749,7 @@ function contacts_content(&$a) { 'url' => $a->get_baseurl(true) . '/contacts/hidden', 'sel' => ($hidden) ? 'active' : '', 'title' => t('Only show hidden contacts'), + 'id' => 'showhidden-tab', 'accesskey' => 'h', ), diff --git a/mod/network.php b/mod/network.php index dfd7c01300..639d868fa2 100644 --- a/mod/network.php +++ b/mod/network.php @@ -119,19 +119,19 @@ function network_init(&$a) { $search = ((x($_GET,'search')) ? escape_tags($_GET['search']) : ''); if(x($_GET,'save')) { - $r = q("select * from `search` where `uid` = %d and `term` = '%s' limit 1", + $r = q("SELECT * FROM `search` WHERE `uid` = %d AND `term` = '%s' LIMIT 1", intval(local_user()), dbesc($search) ); if(! count($r)) { - q("insert into `search` ( `uid`,`term` ) values ( %d, '%s') ", + q("INSERT INTO `search` ( `uid`,`term` ) VALUES ( %d, '%s') ", intval(local_user()), dbesc($search) ); } } if(x($_GET,'remove')) { - q("delete from `search` where `uid` = %d and `term` = '%s'", + q("DELETE FROM `search` WHERE `uid` = %d AND `term` = '%s'", intval(local_user()), dbesc($search) ); @@ -172,7 +172,7 @@ function saved_searches($search) { $o = ''; - $r = q("select `id`,`term` from `search` WHERE `uid` = %d", + $r = q("SELECT `id`,`term` FROM `search` WHERE `uid` = %d", intval(local_user()) ); @@ -355,57 +355,63 @@ function network_content(&$a, $update = 0) { // tabs $tabs = array( array( - 'label' => t('Commented Order'), - 'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . '?f=&order=comment' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''), - 'sel'=>$all_active, - 'title'=> t('Sort by Comment Date'), + 'label' => t('Commented Order'), + 'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . '?f=&order=comment' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''), + 'sel' => $all_active, + 'title' => t('Sort by Comment Date'), + 'id' => 'commented-order-tab', 'accesskey' => "e", ), array( - 'label' => t('Posted Order'), - 'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . '?f=&order=post' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''), - 'sel'=>$postord_active, - 'title' => t('Sort by Post Date'), + 'label' => t('Posted Order'), + 'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . '?f=&order=post' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''), + 'sel' => $postord_active, + 'title' => t('Sort by Post Date'), + 'id' => 'posted-order-tab', 'accesskey' => "t", ), ); if(feature_enabled(local_user(),'personal_tab')) { $tabs[] = array( - 'label' => t('Personal'), - 'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&conv=1', - 'sel' => $conv_active, - 'title' => t('Posts that mention or involve you'), + 'label' => t('Personal'), + 'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&conv=1', + 'sel' => $conv_active, + 'title' => t('Posts that mention or involve you'), + 'id' => 'personal-tab', 'accesskey' => "r", ); } if(feature_enabled(local_user(),'new_tab')) { $tabs[] = array( - 'label' => t('New'), - 'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ($len_naked_cmd ? '/' : '') . 'new' . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : ''), - 'sel' => $new_active, - 'title' => t('Activity Stream - by date'), + 'label' => t('New'), + 'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ($len_naked_cmd ? '/' : '') . 'new' . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : ''), + 'sel' => $new_active, + 'title' => t('Activity Stream - by date'), + 'id' => 'activitiy-by-date-tab', 'accesskey' => "w", ); } if(feature_enabled(local_user(),'link_tab')) { $tabs[] = array( - 'label' => t('Shared Links'), - 'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&bmark=1', - 'sel'=>$bookmarked_active, - 'title'=> t('Interesting Links'), + 'label' => t('Shared Links'), + 'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&bmark=1', + 'sel' => $bookmarked_active, + 'title' => t('Interesting Links'), + 'id' => 'shared-links-tab', 'accesskey' => "b", ); } if(feature_enabled(local_user(),'star_posts')) { $tabs[] = array( - 'label' => t('Starred'), - 'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&star=1', - 'sel'=>$starred_active, - 'title' => t('Favourite Posts'), + 'label' => t('Starred'), + 'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&star=1', + 'sel' => $starred_active, + 'title' => t('Favourite Posts'), + 'id' => 'starred-posts-tab', 'accesskey' => "m", ); } @@ -446,7 +452,7 @@ function network_content(&$a, $update = 0) { $def_acl = array('allow_cid' => '<' . intval($cid) . '>'); if($nets) { - $r = q("select id from contact where uid = %d and network = '%s' and self = 0", + $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND network = '%s' AND `self` = 0", intval(local_user()), dbesc($nets) ); @@ -475,7 +481,10 @@ function network_content(&$a, $update = 0) { $content = ""; if ($cid) { - $contact = q("SELECT `nick` FROM `contact` WHERE `id` = %d AND `uid` = %d AND `forum`", intval($cid), intval(local_user())); + $contact = q("SELECT `nick` FROM `contact` WHERE `id` = %d AND `uid` = %d AND `forum`", + intval($cid), + intval(local_user()) + ); if ($contact) $content = "@".$contact[0]["nick"]."+".$cid; } @@ -569,7 +578,7 @@ function network_content(&$a, $update = 0) { ); if(count($r)) { $sql_post_table = " INNER JOIN (SELECT DISTINCT(`parent`) FROM `item` - WHERE 1 $sql_options AND `contact-id` = ".intval($cid)." and deleted = 0 + WHERE 1 $sql_options AND `contact-id` = ".intval($cid)." AND `deleted` = 0 ORDER BY `item`.`received` DESC) AS `temp1` ON $sql_table.$sql_parent = `temp1`.`parent` "; $sql_extra = ""; From ea2b3b2f762a323ca5a7a820857c4bea51d22637 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sat, 24 Oct 2015 15:57:46 +0200 Subject: [PATCH 135/443] move html from crepair.php to template --- mod/crepair.php | 26 +++++++++++++++----------- view/templates/crepair.tpl | 11 +++++++++++ 2 files changed, 26 insertions(+), 11 deletions(-) diff --git a/mod/crepair.php b/mod/crepair.php index 686be3948f..4f00190990 100644 --- a/mod/crepair.php +++ b/mod/crepair.php @@ -137,16 +137,10 @@ function crepair_content(&$a) { $contact = $r[0]; - $msg1 = t('Repair Contact Settings'); + $warning = t('WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working.'); + $info = t('Please use your browser \'Back\' button now if you are uncertain what to do on this page.'); - $msg2 = t('WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working.'); - $msg3 = t('Please use your browser \'Back\' button now if you are uncertain what to do on this page.'); - - $o .= '

    ' . $msg1 . '

    '; - - $o .= '
    ' . $msg2 . EOL . EOL. $msg3 . '
    '; - - $o .= EOL . '' . t('Return to contact editor') . '' . EOL; + $returnaddr = "contacts/$cid"; $allow_remote_self = get_config('system','allow_users_remote_self'); @@ -165,6 +159,11 @@ function crepair_content(&$a) { $tpl = get_markup_template('crepair.tpl'); $o .= replace_macros($tpl, array( + '$title' => t('Repair Contact Settings'), + '$warning' => $warning, + '$info' => $info, + '$returnaddr' => $returnaddr, + '$return' => t('Return to contact editor'), '$update_profile' => update_profile, '$udprofilenow' => t('Refetch contact data'), '$label_name' => t('Name'), @@ -178,7 +177,12 @@ function crepair_content(&$a) { '$label_photo' => t('New photo from this URL'), '$label_remote_self' => t('Remote Self'), '$allow_remote_self' => $allow_remote_self, - '$remote_self' => array('remote_self', t('Mirror postings from this contact'), $contact['remote_self'], t('Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'), $remote_self_options), + '$remote_self' => array('remote_self', + t('Mirror postings from this contact'), + $contact['remote_self'], + t('Mark this contact as remote_self, this will cause friendica to repost new entries from this contact.'), + $remote_self_options + ), '$contact_name' => htmlentities($contact['name']), '$contact_nick' => htmlentities($contact['nick']), '$contact_id' => $contact['id'], @@ -189,7 +193,7 @@ function crepair_content(&$a) { '$poll' => $contact['poll'], '$contact_attag' => $contact['attag'], '$lbl_submit' => t('Submit') - )); + )); return $o; diff --git a/view/templates/crepair.tpl b/view/templates/crepair.tpl index 5b3a6281eb..91c85303ce 100644 --- a/view/templates/crepair.tpl +++ b/view/templates/crepair.tpl @@ -1,3 +1,14 @@ + +{{include file="section_title.tpl"}} + +
    + {{$warning}} + {{$info}}
    +
    + {{$return}} +
    +
    +

    {{$contact_name}}

    From eb33698556350fde10a4a2f9bba7c52971f6212d Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sat, 24 Oct 2015 16:01:55 +0200 Subject: [PATCH 136/443] some minor changes in crepair.tpl --- view/templates/crepair.tpl | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/view/templates/crepair.tpl b/view/templates/crepair.tpl index 91c85303ce..d500f04720 100644 --- a/view/templates/crepair.tpl +++ b/view/templates/crepair.tpl @@ -1,10 +1,9 @@ {{include file="section_title.tpl"}} -
    - {{$warning}} - {{$info}}
    -
    +
    {{$warning}}

    +
    + {{$info}}
    {{$return}}

    From 8f92b6eea478db950610df2978e3d4fd47025e6b Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sat, 24 Oct 2015 19:51:58 +0200 Subject: [PATCH 137/443] some work on poke template --- mod/poke.php | 49 +++++++++++++-------------- view/templates/poke_content.tpl | 54 ++++++++++++++++-------------- view/templates/poke_head.tpl | 18 ++++++++++ view/theme/duepuntozero/style.css | 15 +++++++++ view/theme/frost-mobile/style.css | 16 +++++++++ view/theme/frost/style.css | 16 +++++++++ view/theme/quattro/dark/style.css | 14 ++++++++ view/theme/quattro/green/style.css | 14 ++++++++ view/theme/quattro/lilac/style.css | 14 ++++++++ view/theme/quattro/quattro.less | 12 +++++++ view/theme/smoothly/style.css | 19 +++++++++++ view/theme/vier/style.css | 16 +++++++++ 12 files changed, 206 insertions(+), 51 deletions(-) create mode 100644 view/templates/poke_head.tpl diff --git a/mod/poke.php b/mod/poke.php index db1c949636..45a577cda6 100644 --- a/mod/poke.php +++ b/mod/poke.php @@ -1,4 +1,18 @@ -get_baseurl(); - $a->page['htmlhead'] .= ''; - $a->page['htmlhead'] .= <<< EOT + $head_tpl = get_markup_template('poke_head.tpl'); + $a->page['htmlhead'] .= replace_macros($head_tpl,array( + '$baseurl' => $a->get_baseurl(true), + '$base' => $base + )); - -EOT; $parent = ((x($_GET,'parent')) ? intval($_GET['parent']) : '0'); - $verbs = get_poke_verbs(); $shortlist = array(); diff --git a/view/templates/poke_content.tpl b/view/templates/poke_content.tpl index 857dfb2003..18191de03f 100644 --- a/view/templates/poke_content.tpl +++ b/view/templates/poke_content.tpl @@ -3,31 +3,33 @@
    {{$desc}}
    - -
    -
    -
    {{$clabel}}
    -
    - - - -
    -
    -
    {{$choice}}
    -
    -
    - -
    -
    -
    {{$prv_desc}}
    - -
    -
    - - +
    +
    + +
    +
    {{$clabel}}
    + + + +
    + +
    +
    {{$choice}}
    + +
    + +
    +
    {{$prv_desc}}
    + +
    + + + +
    +
    diff --git a/view/templates/poke_head.tpl b/view/templates/poke_head.tpl new file mode 100644 index 0000000000..6e30eb7fee --- /dev/null +++ b/view/templates/poke_head.tpl @@ -0,0 +1,18 @@ + + + \ No newline at end of file diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index ae2530b6a2..087104123a 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -2022,6 +2022,21 @@ a.mail-list-link { .message-links-end { clear: both; } +#poke-desc { + margin: 5px 0 10px; +} + +#poke-wrapper { + padding: 10px 0 20px; +} + +#poke-recipient, #poke-action, #poke-privacy-settings { + margin: 10px 0 30px; +} + +#poke-recip-label, #poke-action-label, #prvmail-message-label { + margin: 10px 0 10px; +} #sidebar-group-list ul { list-style-type: none; diff --git a/view/theme/frost-mobile/style.css b/view/theme/frost-mobile/style.css index f4b46fed84..22460b0590 100644 --- a/view/theme/frost-mobile/style.css +++ b/view/theme/frost-mobile/style.css @@ -2500,6 +2500,22 @@ a.mail-list-link { clear: both; } +#poke-desc { + margin: 5px 0 10px; +} + +#poke-wrapper { + padding: 10px 0 0px; +} + +#poke-recipient, #poke-action, #poke-privacy-settings { + margin: 10px 0 30px; +} + +#poke-recip-label, #poke-action-label, #prvmail-message-label { + margin: 10px 0 10px; +} + #sidebar-group-list ul { list-style-type: none; } diff --git a/view/theme/frost/style.css b/view/theme/frost/style.css index 8b87c3bd42..396f32cf97 100644 --- a/view/theme/frost/style.css +++ b/view/theme/frost/style.css @@ -2315,6 +2315,22 @@ a.mail-list-link { clear: both; } +#poke-desc { + margin: 5px 0 10px; +} + +#poke-wrapper { + padding: 10px 0 20px; +} + +#poke-recipient, #poke-action, #poke-privacy-settings { + margin: 10px 0 30px; +} + +#poke-recip-label, #poke-action-label, #prvmail-message-label { + margin: 10px 0 10px; +} + #sidebar-group-list ul { list-style-type: none; } diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index 1eda67de13..aaeb74e752 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -2267,6 +2267,20 @@ ul.tabs li .active { -ms-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } +/* poke */ +#poke-desc { + margin: 5px 0 25px; +} +#poke-recipient, +#poke-action, +#poke-privacy-settings { + margin: 10px 0 30px; +} +#poke-recip-label, +#poke-action-label, +#prvmail-message-label { + margin: 10px 0 10px; +} /* theme screenshot */ .screenshot, #theme-preview { diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index 71569971e5..ef408b4cd2 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -2267,6 +2267,20 @@ ul.tabs li .active { -ms-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } +/* poke */ +#poke-desc { + margin: 5px 0 25px; +} +#poke-recipient, +#poke-action, +#poke-privacy-settings { + margin: 10px 0 30px; +} +#poke-recip-label, +#poke-action-label, +#prvmail-message-label { + margin: 10px 0 10px; +} /* theme screenshot */ .screenshot, #theme-preview { diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index 55b81e5daf..e31a427468 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -2267,6 +2267,20 @@ ul.tabs li .active { -ms-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } +/* poke */ +#poke-desc { + margin: 5px 0 25px; +} +#poke-recipient, +#poke-action, +#poke-privacy-settings { + margin: 10px 0 30px; +} +#poke-recip-label, +#poke-action-label, +#prvmail-message-label { + margin: 10px 0 10px; +} /* theme screenshot */ .screenshot, #theme-preview { diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index 3c9915576f..19847ad2de 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -1525,6 +1525,18 @@ ul.tabs { &:hover .mail-delete { .opaque(1); } } +/* poke */ +#poke-desc { + margin: 5px 0 25px; +} + +#poke-recipient, #poke-action, #poke-privacy-settings { + margin: 10px 0 30px; +} + +#poke-recip-label, #poke-action-label, #prvmail-message-label { + margin: 10px 0 10px; +} /* theme screenshot */ .screenshot, #theme-preview { diff --git a/view/theme/smoothly/style.css b/view/theme/smoothly/style.css index 46d8902aeb..da180ae61e 100644 --- a/view/theme/smoothly/style.css +++ b/view/theme/smoothly/style.css @@ -2693,6 +2693,25 @@ margin-left: 0px; border: 1px solid #7C7D7B; } +/* ========== */ +/* = Poke = */ +/* ========== */ +#poke-desc { + margin: 5px 0 20px; +} +#poke-wrapper { + margin: 40px 0 20px; +} +#poke-recipient, #poke-action, #poke-privacy-settings { + margin: 10px 0 30px; +} +#poke-recip-label, #poke-action-label, #prvmail-message-label { + margin: 10px 0 20px; +} +#poke-recip { + float: none; +} + /* ================= */ /* = Notifications = */ /* ================= */ diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index 1c03edc6bf..a6a27832f5 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -2496,6 +2496,22 @@ a.mail-list-link { border: none; } +/* ========== */ +/* = Poke = */ +/* ========== */ +#poke-desc { + margin: 10px 0 20px; +} +#poke-wrapper { + margin: 40px 0 20px; +} +#poke-recipient, #poke-action, #poke-privacy-settings { + margin: 10px 0 30px; +} +#poke-recip-label, #poke-action-label, #prvmail-message-label { + margin: 10px 0 20px; +} + /* ========== */ /* = Events = */ /* ========== */ From ddc8f069f2f4a6571b162061497e91e0497103b3 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 24 Oct 2015 20:41:21 +0200 Subject: [PATCH 138/443] Workaround for bad configured servers --- include/socgraph.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/include/socgraph.php b/include/socgraph.php index b0f0c8672f..225acda4a2 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -748,8 +748,11 @@ function poco_check_server($server_url, $network = "", $force = false) { } if (!$serverret["success"] OR ($serverret["body"] == "") OR (sizeof($xmlobj) == 0) OR !is_object($xmlobj)) { - $last_failure = datetime_convert(); - $failure = true; + // Workaround for bad configured servers (known nginx problem) + if ($serverret["debug"]["http_code"] != "403") { + $last_failure = datetime_convert(); + $failure = true; + } } elseif ($network == NETWORK_DIASPORA) $last_contact = datetime_convert(); From ecf65e52eec44a2e06ed1fa40248cb1b7889cc32 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 24 Oct 2015 20:42:47 +0200 Subject: [PATCH 139/443] OStatus: send the coordinates in an additional field --- include/items.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/include/items.php b/include/items.php index 7d1ab1cb36..ebda49e9ad 100644 --- a/include/items.php +++ b/include/items.php @@ -4392,7 +4392,7 @@ function subscribe_to_hub($url,$importer,$contact,$hubmode = 'subscribe') { } -function atom_author($tag,$name,$uri,$h,$w,$photo) { +function atom_author($tag,$name,$uri,$h,$w,$photo,$geo) { $o = ''; if(! $tag) return $o; @@ -4410,6 +4410,10 @@ function atom_author($tag,$name,$uri,$h,$w,$photo) { $o .= "\t".'' . "\r\n"; if ($tag == "author") { + + if($geo) + $o .= ''.xmlify($geo).''."\r\n"; + $r = q("SELECT `profile`.`locality`, `profile`.`region`, `profile`.`country-name`, `profile`.`name`, `profile`.`pub_keywords`, `profile`.`about`, `profile`.`homepage`,`contact`.`nick` FROM `profile` @@ -4473,11 +4477,11 @@ function atom_entry($item,$type,$author,$owner,$comment = false,$cid = 0) { $o = "\r\n\r\n\r\n"; if(is_array($author)) - $o .= atom_author('author',$author['name'],$author['url'],80,80,$author['thumb']); + $o .= atom_author('author',$author['name'],$author['url'],80,80,$author['thumb'], $item['coord']); else - $o .= atom_author('author',(($item['author-name']) ? $item['author-name'] : $item['name']),(($item['author-link']) ? $item['author-link'] : $item['url']),80,80,(($item['author-avatar']) ? $item['author-avatar'] : $item['thumb'])); + $o .= atom_author('author',(($item['author-name']) ? $item['author-name'] : $item['name']),(($item['author-link']) ? $item['author-link'] : $item['url']),80,80,(($item['author-avatar']) ? $item['author-avatar'] : $item['thumb']), $item['coord']); if(strlen($item['owner-name'])) - $o .= atom_author('dfrn:owner',$item['owner-name'],$item['owner-link'],80,80,$item['owner-avatar']); + $o .= atom_author('dfrn:owner',$item['owner-name'],$item['owner-link'],80,80,$item['owner-avatar'], $item['coord']); if(($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) { $parent = q("SELECT `guid` FROM `item` WHERE `id` = %d", intval($item["parent"])); From a11833e2486382be9c996bdbd4e5081d8f54a0f3 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 24 Oct 2015 20:44:18 +0200 Subject: [PATCH 140/443] Statusnet is now GNU Social --- include/contact_selectors.php | 2 +- mod/uimport.php | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/contact_selectors.php b/include/contact_selectors.php index f0ac87a09f..f104866232 100644 --- a/include/contact_selectors.php +++ b/include/contact_selectors.php @@ -88,7 +88,7 @@ function network_to_name($s, $profile = "") { NETWORK_PUMPIO => t('pump.io'), NETWORK_TWITTER => t('Twitter'), NETWORK_DIASPORA2 => t('Diaspora Connector'), - NETWORK_STATUSNET => t('Statusnet'), + NETWORK_STATUSNET => t('GNU Social'), NETWORK_APPNET => t('App.net') ); diff --git a/mod/uimport.php b/mod/uimport.php index f61eab0a1b..ffa4f3ed72 100644 --- a/mod/uimport.php +++ b/mod/uimport.php @@ -57,8 +57,8 @@ function uimport_content(&$a) { unset($_SESSION['theme']); if(x($_SESSION,'mobile-theme')) unset($_SESSION['mobile-theme']); - - + + $tpl = get_markup_template("uimport.tpl"); return replace_macros($tpl, array( '$regbutt' => t('Import'), @@ -66,8 +66,8 @@ function uimport_content(&$a) { '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 (statusnet/identi.ca) or from Diaspora"), + '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 4631c13d083b49753acc8a8eae18503ea554afe3 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 25 Oct 2015 09:15:36 +0100 Subject: [PATCH 141/443] Profile data are now reduced to only the most important fields --- mod/profiles.php | 45 ++++--- view/templates/profile_edit.tpl | 124 +++++++++++++++++++ view/theme/vier/templates/profile_edit.tpl | 133 ++++++++++++++++++++- 3 files changed, 284 insertions(+), 18 deletions(-) diff --git a/mod/profiles.php b/mod/profiles.php index 6c1a82c7bb..3ba57c8831 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -206,7 +206,7 @@ function profiles_post(&$a) { if($ignore_year) $dob = '0000-' . $dob; } - + $name = notags(trim($_POST['name'])); if(! strlen($name)) { @@ -327,7 +327,7 @@ function profiles_post(&$a) { $hide_friends = (($_POST['hide-friends'] == 1) ? 1: 0); - + set_pconfig(local_user(),'system','detailled_profile', (($_POST['detailled_profile'] == 1) ? 1: 0)); $changes = array(); $value = ''; @@ -540,7 +540,7 @@ function profile_activity($changed, $value) { return; $arr = array(); - $arr['uri'] = $arr['parent-uri'] = item_new_uri($a->get_hostname(), local_user()); + $arr['uri'] = $arr['parent-uri'] = item_new_uri($a->get_hostname(), local_user()); $arr['uid'] = local_user(); $arr['contact-id'] = $self[0]['id']; $arr['wall'] = 1; @@ -552,7 +552,7 @@ function profile_activity($changed, $value) { $arr['author-avatar'] = $arr['owner-avatar'] = $self[0]['thumb']; $arr['verb'] = ACTIVITY_UPDATE; $arr['object-type'] = ACTIVITY_OBJ_PROFILE; - + $A = '[url=' . $self[0]['url'] . ']' . $self[0]['name'] . '[/url]'; @@ -570,7 +570,7 @@ function profile_activity($changed, $value) { $changes .= $ch; } - $prof = '[url=' . $self[0]['url'] . '?tab=profile' . ']' . t('public profile') . '[/url]'; + $prof = '[url=' . $self[0]['url'] . '?tab=profile' . ']' . t('public profile') . '[/url]'; if($t == 1 && strlen($value)) { $message = sprintf( t('%1$s changed %2$s to “%3$s”'), $A, $changes, $value); @@ -578,9 +578,9 @@ function profile_activity($changed, $value) { } else $message = sprintf( t('%1$s has an updated %2$s, changing %3$s.'), $A, $prof, $changes); - - $arr['body'] = $message; + + $arr['body'] = $message; $arr['object'] = '' . ACTIVITY_OBJ_PROFILE . '' . $self[0]['name'] . '' . '' . $self[0]['url'] . '/' . $self[0]['name'] . ''; @@ -664,8 +664,10 @@ function profiles_content(&$a) { '$no_selected' => (($r[0]['hide-friends'] == 0) ? " checked=\"checked\" " : "") )); + $personal_account = !(in_array($a->user["page-flags"], + array(PAGE_COMMUNITY, PAGE_PRVGROUP))); - + $detailled_profile = (get_pconfig(local_user(),'system','detailled_profile') AND $personal_account); $f = get_config('system','birthday_input_format'); if(! $f) @@ -674,6 +676,17 @@ function profiles_content(&$a) { $is_default = (($r[0]['is-default']) ? 1 : 0); $tpl = get_markup_template("profile_edit.tpl"); $o .= replace_macros($tpl,array( + '$personal_account' => $personal_account, + '$detailled_profile' => $detailled_profile, + + '$details' => array( + 'detailled_profile', //Name + t('Show more profile fields:'), //Label + $detailled_profile, //Value + '', //Help string + array(t('No'),t('Yes')) //Off - On strings + ), + '$multi_profiles' => feature_enabled(local_user(),'multi_profiles'), '$form_security_token' => get_form_security_token("profile_edit"), '$form_security_token_photo' => get_form_security_token("profile_photo"), @@ -775,10 +788,10 @@ function profiles_content(&$a) { return $o; } - + //Profiles list. else { - + //If we don't support multi profiles, don't display this list. if(!feature_enabled(local_user(),'multi_profiles')){ $r = q( @@ -790,11 +803,11 @@ function profiles_content(&$a) { goaway($a->get_baseurl(true) . '/profiles/'.$r[0]['id']); } } - + $r = q("SELECT * FROM `profile` WHERE `uid` = %d", local_user()); if(count($r)) { - + $tpl_header = get_markup_template('profile_listing_header.tpl'); $o .= replace_macros($tpl_header,array( '$header' => t('Edit/Manage Profiles'), @@ -802,17 +815,17 @@ function profiles_content(&$a) { '$cr_new' => t('Create New Profile'), '$cr_new_link' => 'profiles/new?t=' . get_form_security_token("profile_new") )); - - + + $tpl = get_markup_template('profile_entry.tpl'); - + foreach($r as $rr) { $o .= replace_macros($tpl, array( '$photo' => $a->get_cached_avatar_image($rr['thumb']), '$id' => $rr['id'], '$alt' => t('Profile Image'), '$profile_name' => $rr['profile-name'], - '$visible' => (($rr['is-default']) ? '' . t('visible to everybody') . '' + '$visible' => (($rr['is-default']) ? '' . t('visible to everybody') . '' : '' . t('Edit visibility') . '') )); } diff --git a/view/templates/profile_edit.tpl b/view/templates/profile_edit.tpl index 480add4404..76445685d5 100644 --- a/view/templates/profile_edit.tpl +++ b/view/templates/profile_edit.tpl @@ -21,6 +21,8 @@
    +{{if $detailled_profile}} +{{include file="field_yesno.tpl" field=$details}}
    *
    @@ -318,7 +320,129 @@
    +{{else}} +{{if $personal_account}} +{{include file="field_yesno.tpl" field=$details}} +{{/if}} +
    + +
    *
    +
    +
    +
    + + +
    +
    + +{{if $personal_account}} +
    + +{{$gender}} +
    +
    + +
    + +
    +{{$dob}} {{$age}} +
    +
    +
    +{{/if}} + +
    + + +
    +
    + +{{$hide_friends}} + +
    + + +
    +
    + +
    + + +
    +
    + + +
    + + +
    +
    + +
    + + +
    +
    + +
    + + +
    +
    + +
    + + +
    {{$lbl_pubdsc}}
    +
    + +
    + + +
    {{$lbl_prvdsc}}
    +
    + +
    +

    +{{$lbl_about}} +

    + + + +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + +{{/if}}
    diff --git a/view/theme/vier/templates/profile_edit.tpl b/view/theme/vier/templates/profile_edit.tpl index db512eb7f9..9270410561 100644 --- a/view/theme/vier/templates/profile_edit.tpl +++ b/view/theme/vier/templates/profile_edit.tpl @@ -32,9 +32,11 @@ +{{if $detailled_profile}}
    {{$lbl_picture_section}} »
    - +{{/if}}
    - + +{{if $detailled_profile}}
    {{$lbl_basic_section}} » +{{else}} + +{{if $personal_account}} +{{include file="field_yesno.tpl" field=$details}} +{{/if}} +
    + +
    *
    +
    +
    + +
    + + +
    +
    + +{{if $personal_account}} +
    + +{{$gender}} +
    +
    + +
    + +
    +{{$dob}} {{$age}} +
    +
    +
    +{{/if}} + +
    + + +
    +
    + +{{$hide_friends}} + +
    + + +
    +
    + +
    + + +
    +
    + + +
    + + +
    +
    + +
    + + +
    +
    +
    + + +
    +
    + +
    + + +
    {{$lbl_pubdsc}}
    +
    + +
    + + +
    {{$lbl_prvdsc}}
    +
    + +
    +

    +{{$lbl_about}} +

    + + + +
    +
    + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + +{{/if}}
    From c7205ea705797dd1ad27dc5ae7e87d4e98169801 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 25 Oct 2015 10:17:23 +0100 Subject: [PATCH 142/443] Bugfix: Authorization at ejabberd only worked for uid=1 --- include/auth_ejabberd.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/auth_ejabberd.php b/include/auth_ejabberd.php index 5d69f1de7f..9a9d9accad 100755 --- a/include/auth_ejabberd.php +++ b/include/auth_ejabberd.php @@ -140,6 +140,7 @@ class exAuth $sQuery = "SELECT `uid`, `password` FROM `user` WHERE `nickname`='". $db->escape($sUser) ."'"; $this->writeDebugLog("[debug] using query ". $sQuery); if ($oResult = q($sQuery)){ + $uid = $oResult[0]["uid"]; $Error = ($oResult[0]["password"] != hash('whirlpool',$aCommand[3])); /* if ($oResult[0]["password"] == hash('whirlpool',$aCommand[3])) { @@ -156,9 +157,10 @@ class exAuth } else { $this->writeLog("[MySQL] invalid query: ". $sQuery); $Error = true; + $uid = -1; } if ($Error) { - $oConfig = q("SELECT `v` FROM `pconfig` WHERE `uid`=1 AND `cat` = 'xmpp' AND `k`='password' LIMIT 1;"); + $oConfig = q("SELECT `v` FROM `pconfig` WHERE `uid`=%d AND `cat` = 'xmpp' AND `k`='password' LIMIT 1;", intval($uid)); $this->writeLog("[exAuth] got password ".$oConfig[0]["v"]); $Error = ($aCommand[3] != $oConfig[0]["v"]); } From e0e6762ed8074ad24e4a066d8b4ae22d0eafc2db Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sun, 25 Oct 2015 14:00:08 +0100 Subject: [PATCH 143/443] some inital work to have profile pics on manage page --- mod/manage.php | 11 ++++++++++- view/templates/manage.tpl | 22 +++++++++++++++++++--- 2 files changed, 29 insertions(+), 4 deletions(-) diff --git a/mod/manage.php b/mod/manage.php index 5513ebe08d..236a3fb054 100644 --- a/mod/manage.php +++ b/mod/manage.php @@ -98,7 +98,16 @@ function manage_content(&$a) { } $identities = $a->identities; - foreach($identities as $key=>$id) { + + //getting profile pics for delegates + foreach ($identities as $key=>$id) { + $thumb = q("SELECT `thumb` FROM `contact` WHERE `uid` = %d AND `name` = '%s' AND `nick` = '%s' AND (network = 'dfrn' OR self = 1)", + intval($a->user['uid']), + dbesc($id['username']), + dbesc($id['nickname']) + ); + $identities[$key][thumb] = $thumb[0][thumb]; + $identities[$key]['selected'] = (($id['nickname'] === $a->user['nickname']) ? ' selected="selected" ' : ''); } diff --git a/view/templates/manage.tpl b/view/templates/manage.tpl index 80477bc40b..d82ddb6d73 100644 --- a/view/templates/manage.tpl +++ b/view/templates/manage.tpl @@ -2,7 +2,7 @@

    {{$title}}

    {{$desc}}
    {{$choose}}
    -
    +{{*
    - {{**}} -
    + + +
    *}} +
    +
    + + + {{foreach $identities as $id}} + + {{/foreach}} + + + + {{**}} +
    +
    + + \ No newline at end of file From 5b93bff6dad386dc85662f45fab58d239444a19d Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sun, 25 Oct 2015 14:40:56 +0100 Subject: [PATCH 144/443] poke template: make use of global.css --- view/global.css | 17 +++++++++++++++++ view/theme/duepuntozero/style.css | 17 +---------------- view/theme/frost-mobile/style.css | 2 +- view/theme/quattro/dark/style.css | 14 -------------- view/theme/quattro/green/style.css | 14 -------------- view/theme/quattro/lilac/style.css | 14 -------------- view/theme/quattro/quattro.less | 12 ------------ view/theme/smoothly/style.css | 14 +------------- view/theme/vier/style.css | 15 --------------- 9 files changed, 20 insertions(+), 99 deletions(-) diff --git a/view/global.css b/view/global.css index c2f5840039..55f44ee51b 100644 --- a/view/global.css +++ b/view/global.css @@ -212,3 +212,20 @@ a { clip: rect(0,0,0,0); border: 0; } + +/* poke */ +#poke-desc { + margin: 5px 0 10px; +} + +#poke-wrapper { + padding: 10px 0 0px; +} + +#poke-recipient, #poke-action, #poke-privacy-settings { + margin: 10px 0 30px; +} + +#poke-recip-label, #poke-action-label, #prvmail-message-label { + margin: 10px 0 10px; +} diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 087104123a..16c01c6df4 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -959,7 +959,7 @@ input#dfrn-url { } .wall-item-content-wrapper.comment { -# margin-left: 50px; + /*margin-left: 50px;*/ background: #EEEEEE; } @@ -2022,21 +2022,6 @@ a.mail-list-link { .message-links-end { clear: both; } -#poke-desc { - margin: 5px 0 10px; -} - -#poke-wrapper { - padding: 10px 0 20px; -} - -#poke-recipient, #poke-action, #poke-privacy-settings { - margin: 10px 0 30px; -} - -#poke-recip-label, #poke-action-label, #prvmail-message-label { - margin: 10px 0 10px; -} #sidebar-group-list ul { list-style-type: none; diff --git a/view/theme/frost-mobile/style.css b/view/theme/frost-mobile/style.css index 22460b0590..5f78cfc4b7 100644 --- a/view/theme/frost-mobile/style.css +++ b/view/theme/frost-mobile/style.css @@ -4233,7 +4233,7 @@ ul.notifications-menu-popup { #recip { } -.autocomplete-w1 { background: #ffffff; no-repeat bottom right; position:absolute; top:0px; left:0px; margin:6px 0 0 6px; /* IE6 fix: */ _background:none; _margin:1px 0 0 0; } +.autocomplete-w1 { background: #ffffff no-repeat bottom right; position:absolute; top:0px; left:0px; margin:6px 0 0 6px; /* IE6 fix: */ _background:none; _margin:1px 0 0 0; } .autocomplete { color:#000; border:1px solid #999; background:#FFF; cursor:default; text-align:left; max-height:350px; overflow:auto; margin:-6px 6px 6px -6px; /* IE6 specific: */ _height:350px; _margin:0; _overflow-x:hidden; } .autocomplete .selected { background:#F0F0F0; } .autocomplete div { padding:2px 5px; white-space:nowrap; overflow:hidden; } diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index aaeb74e752..1eda67de13 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -2267,20 +2267,6 @@ ul.tabs li .active { -ms-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } -/* poke */ -#poke-desc { - margin: 5px 0 25px; -} -#poke-recipient, -#poke-action, -#poke-privacy-settings { - margin: 10px 0 30px; -} -#poke-recip-label, -#poke-action-label, -#prvmail-message-label { - margin: 10px 0 10px; -} /* theme screenshot */ .screenshot, #theme-preview { diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index ef408b4cd2..71569971e5 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -2267,20 +2267,6 @@ ul.tabs li .active { -ms-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } -/* poke */ -#poke-desc { - margin: 5px 0 25px; -} -#poke-recipient, -#poke-action, -#poke-privacy-settings { - margin: 10px 0 30px; -} -#poke-recip-label, -#poke-action-label, -#prvmail-message-label { - margin: 10px 0 10px; -} /* theme screenshot */ .screenshot, #theme-preview { diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index e31a427468..55b81e5daf 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -2267,20 +2267,6 @@ ul.tabs li .active { -ms-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } -/* poke */ -#poke-desc { - margin: 5px 0 25px; -} -#poke-recipient, -#poke-action, -#poke-privacy-settings { - margin: 10px 0 30px; -} -#poke-recip-label, -#poke-action-label, -#prvmail-message-label { - margin: 10px 0 10px; -} /* theme screenshot */ .screenshot, #theme-preview { diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index 19847ad2de..3c9915576f 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -1525,18 +1525,6 @@ ul.tabs { &:hover .mail-delete { .opaque(1); } } -/* poke */ -#poke-desc { - margin: 5px 0 25px; -} - -#poke-recipient, #poke-action, #poke-privacy-settings { - margin: 10px 0 30px; -} - -#poke-recip-label, #poke-action-label, #prvmail-message-label { - margin: 10px 0 10px; -} /* theme screenshot */ .screenshot, #theme-preview { diff --git a/view/theme/smoothly/style.css b/view/theme/smoothly/style.css index da180ae61e..bcb47367f9 100644 --- a/view/theme/smoothly/style.css +++ b/view/theme/smoothly/style.css @@ -291,7 +291,7 @@ section { margin: 10px 0 0 230px; } -.login-form, +.login-form { margin-top: 10px; } @@ -2696,18 +2696,6 @@ margin-left: 0px; /* ========== */ /* = Poke = */ /* ========== */ -#poke-desc { - margin: 5px 0 20px; -} -#poke-wrapper { - margin: 40px 0 20px; -} -#poke-recipient, #poke-action, #poke-privacy-settings { - margin: 10px 0 30px; -} -#poke-recip-label, #poke-action-label, #prvmail-message-label { - margin: 10px 0 20px; -} #poke-recip { float: none; } diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index a6a27832f5..a35e6d21df 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -2496,21 +2496,6 @@ a.mail-list-link { border: none; } -/* ========== */ -/* = Poke = */ -/* ========== */ -#poke-desc { - margin: 10px 0 20px; -} -#poke-wrapper { - margin: 40px 0 20px; -} -#poke-recipient, #poke-action, #poke-privacy-settings { - margin: 10px 0 30px; -} -#poke-recip-label, #poke-action-label, #prvmail-message-label { - margin: 10px 0 20px; -} /* ========== */ /* = Events = */ From bac61cf596c143a15a430b5ba15d9f3a8dfe21e5 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sun, 25 Oct 2015 16:49:45 +0100 Subject: [PATCH 145/443] manage-selector: some cleanup and css work --- mod/manage.php | 9 +++--- view/global.css | 45 ++++++++++++++++++++++++++++++ view/templates/manage.tpl | 35 +++++++++++------------ view/theme/frost-mobile/style.css | 46 ++++++++++++++++++++++++++----- view/theme/frost/style.css | 46 ++++++++++++++++++++++++++----- 5 files changed, 144 insertions(+), 37 deletions(-) diff --git a/mod/manage.php b/mod/manage.php index 236a3fb054..3f553dfa6b 100644 --- a/mod/manage.php +++ b/mod/manage.php @@ -99,16 +99,17 @@ function manage_content(&$a) { $identities = $a->identities; - //getting profile pics for delegates + //getting additinal information for each identity foreach ($identities as $key=>$id) { - $thumb = q("SELECT `thumb` FROM `contact` WHERE `uid` = %d AND `name` = '%s' AND `nick` = '%s' AND (network = 'dfrn' OR self = 1)", + $thumb = q("SELECT `thumb` FROM `contact` WHERE `uid` = %d AND `name` = '%s' AND `nick` = '%s' AND (`network` = '%s' OR `self` = 1)", intval($a->user['uid']), dbesc($id['username']), - dbesc($id['nickname']) + dbesc($id['nickname']), + dbesc(NETWORK_DFRN) ); $identities[$key][thumb] = $thumb[0][thumb]; - $identities[$key]['selected'] = (($id['nickname'] === $a->user['nickname']) ? ' selected="selected" ' : ''); + $identities[$key]['selected'] = (($id['nickname'] === $a->user['nickname']) ? true : false); } $o = replace_macros(get_markup_template('manage.tpl'), array( diff --git a/view/global.css b/view/global.css index c2f5840039..d1c07d60aa 100644 --- a/view/global.css +++ b/view/global.css @@ -212,3 +212,48 @@ a { clip: rect(0,0,0,0); border: 0; } + +.itentity-match-wrapper { + float: left; + padding: 10px; + width: 120px; + height: 140px; + margin-bottom: 20px; +} + +.identity-match-photo { + float: left; + text-align: center; + width: 120px; +} + +.identity-match-name { + text-align: center; +} + +.identity-match-details { + float: left; + text-align: center; + width: 120px; + overflow: hidden; + font-size: 10px; + font-weight: 500; + color: #999999; +} + +.identity-match-break, .identity-match-end { + clear: both; +} + +.identity-match-photo button { + border: none; + padding: 0; + margin: 0; + background: none; + height: 80px; + width: 80px; +} + +.selected-identity img { + border: 2px solid #ff0000; +} \ No newline at end of file diff --git a/view/templates/manage.tpl b/view/templates/manage.tpl index d82ddb6d73..8a7922d7be 100644 --- a/view/templates/manage.tpl +++ b/view/templates/manage.tpl @@ -2,32 +2,29 @@

    {{$title}}

    {{$desc}}
    {{$choose}}
    -{{*
    -
    - -
    - - -
    -
    *}}
    - {{foreach $identities as $id}} - +
    +
    + +
    + +
    + +
    +
    {{$id.username}}
    +
    ({{$id.nickname}})
    +
    + +
    +
    {{/foreach}} - - - {{**}}
    diff --git a/view/theme/frost-mobile/style.css b/view/theme/frost-mobile/style.css index f4b46fed84..7d47c0b987 100644 --- a/view/theme/frost-mobile/style.css +++ b/view/theme/frost-mobile/style.css @@ -3234,17 +3234,49 @@ aside input[type='text'] { margin: 10px; } -#identity-manage-desc { - margin-top:15px; - margin-bottom: 15px; +.itentity-match-wrapper { + float: left; + padding: 10px; + width: 120px; + height: 140px; + margin-bottom: 20px; } -#identity-manage-choose { - margin-bottom: 15px; +.identity-match-photo { + float: left; + text-align: center; + width: 120px; } -#identity-submit { - margin-top: 20px; +.identity-match-name { + text-align: center; +} + +.identity-match-details { + float: left; + text-align: center; + width: 120px; + overflow: hidden; + font-size: 10px; + font-weight: 500; + color: #999999; +} + +.identity-match-break, .identity-match-end { + clear: both; +} + +.identity-match-photo button { + border: none; + padding: 0; + margin: 0; + background: none; + height: 80px; + width: 80px; +} + +.selected-identity img { + border: 2px solid #ff0000; } #photo-nav { diff --git a/view/theme/frost/style.css b/view/theme/frost/style.css index 8b87c3bd42..5f3ea646ec 100644 --- a/view/theme/frost/style.css +++ b/view/theme/frost/style.css @@ -3006,17 +3006,49 @@ aside input[type='text'] { margin: 10px; } -#identity-manage-desc { - margin-top:15px; - margin-bottom: 15px; +.itentity-match-wrapper { + float: left; + padding: 10px; + width: 120px; + height: 140px; + margin-bottom: 20px; } -#identity-manage-choose { - margin-bottom: 15px; +.identity-match-photo { + float: left; + text-align: center; + width: 120px; } -#identity-submit { - margin-top: 20px; +.identity-match-name { + text-align: center; +} + +.identity-match-details { + float: left; + text-align: center; + width: 120px; + overflow: hidden; + font-size: 10px; + font-weight: 500; + color: #999999; +} + +.identity-match-break, .identity-match-end { + clear: both; +} + +.identity-match-photo button { + border: none; + padding: 0; + margin: 0; + background: none; + height: 80px; + width: 80px; +} + +.selected-identity img { + border: 2px solid #ff0000; } #photo-prev-link, #photo-next-link { From 87c559d60504ed7069f1fdb4784303437f11eb8f Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sun, 25 Oct 2015 18:04:20 +0100 Subject: [PATCH 146/443] manage-selector: sql - check for same baseurl --- mod/manage.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mod/manage.php b/mod/manage.php index 3f553dfa6b..37d7542fe5 100644 --- a/mod/manage.php +++ b/mod/manage.php @@ -101,10 +101,12 @@ function manage_content(&$a) { //getting additinal information for each identity foreach ($identities as $key=>$id) { - $thumb = q("SELECT `thumb` FROM `contact` WHERE `uid` = %d AND `name` = '%s' AND `nick` = '%s' AND (`network` = '%s' OR `self` = 1)", + $thumb = q("SELECT `thumb` FROM `contact` WHERE `uid` = %d AND `name` = '%s' AND `nick` = '%s' AND `nurl` = '%s' + AND (`network` = '%s' OR `self` = 1)", intval($a->user['uid']), dbesc($id['username']), dbesc($id['nickname']), + dbesc(normalise_link($a->get_baseurl() . '/profile/' . $id['nickname'])), dbesc(NETWORK_DFRN) ); $identities[$key][thumb] = $thumb[0][thumb]; From 4f9ec8efacad833918bd96a950e57d86f49e9426 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 25 Oct 2015 21:01:39 +0100 Subject: [PATCH 147/443] Vier: The usability with a touch device is improved --- view/theme/vier/style.css | 7 +++---- view/theme/vier/templates/search_item.tpl | 3 +-- view/theme/vier/templates/wall_item_tag.tpl | 3 +-- view/theme/vier/templates/wall_thread.tpl | 3 +-- 4 files changed, 6 insertions(+), 10 deletions(-) diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index a35e6d21df..eed93b7ed9 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -268,8 +268,8 @@ div.pager { /* global */ body { - /* font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif; */ - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; +/* font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; */ + font-family: system, -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif; font-size: 14px; /* font-size: 13px; line-height: 19.5px; */ @@ -1109,7 +1109,6 @@ section { line-height: 19.5px;*/ font-size: 14.95px; line-height: 21px; - /* font-family: Quodana,Verdana,DejaVu Sans,Bitstream Vera Sans,Helvetica,sans-serif; */ display: table-cell; vertical-align: top; top: 32px; @@ -2944,7 +2943,7 @@ a.mail-list-link { border:1px solid #dcdcdc; display:inline-block; color:#777777; - font-family:Arial; + font-family:Arial, sans-serif; font-size:15px; font-weight:bold; font-style:normal; diff --git a/view/theme/vier/templates/search_item.tpl b/view/theme/vier/templates/search_item.tpl index d8cad5cd0c..73e37e5613 100644 --- a/view/theme/vier/templates/search_item.tpl +++ b/view/theme/vier/templates/search_item.tpl @@ -12,9 +12,8 @@
    - + {{$item.name}} -
    {{$contact_block}} - - diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index 25102ba31d..785b527b27 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -838,6 +838,7 @@ aside #profile-extra-links li { margin: 0px; list-style: none; } +aside #subscribe-feed-link, aside #wallmessage-link { display: block; -moz-border-radius: 5px 5px 5px 5px; @@ -850,6 +851,7 @@ aside #wallmessage-link { padding: 4px 2px 2px 35px; margin-top: 3px; } +aside #subscribe-feed:hover, aside #wallmessage-link:hover { text-decoration: none; background-color: #19aeff; diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index 78de886542..7335440319 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -854,6 +854,7 @@ aside #wallmessage-link:hover { text-decoration: none; background-color: #ccff42; } +aside #subscribe-feed-link, aside #dfrn-request-link { display: block; -moz-border-radius: 5px 5px 5px 5px; @@ -865,6 +866,7 @@ aside #dfrn-request-link { text-transform: uppercase; padding: 4px 2px 2px 35px; } +aside #subscribe-feed-link:hover, aside #dfrn-request-link:hover { text-decoration: none; background-color: #ccff42; diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index 1ca27b895c..c5027928b2 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -854,6 +854,7 @@ aside #wallmessage-link:hover { text-decoration: none; background-color: #86608e; } +aside #subscribe-feed-link, aside #dfrn-request-link { display: block; -moz-border-radius: 5px 5px 5px 5px; @@ -865,6 +866,7 @@ aside #dfrn-request-link { text-transform: uppercase; padding: 4px 2px 2px 35px; } +aside #subscribe-feed-link:hover, aside #dfrn-request-link:hover { text-decoration: none; background-color: #86608e; diff --git a/view/theme/quattro/templates/profile_vcard.tpl b/view/theme/quattro/templates/profile_vcard.tpl index dfa6d0445d..7a06e7588f 100644 --- a/view/theme/quattro/templates/profile_vcard.tpl +++ b/view/theme/quattro/templates/profile_vcard.tpl @@ -73,6 +73,9 @@ {{if $wallmessage}}
  • {{$wallmessage}}
  • {{/if}} + {{if $subscribe_feed}} +
  • {{$subscribe_feed}}
  • + {{/if}} diff --git a/view/theme/smoothly/style.css b/view/theme/smoothly/style.css index ba0c4bff6e..06f32abcdf 100644 --- a/view/theme/smoothly/style.css +++ b/view/theme/smoothly/style.css @@ -690,6 +690,7 @@ aside h4 { list-style: none; } +#subscribe-feed-link, #dfrn-request-link { box-shadow: inset 0px 1px 0px 0px #a65151; -moz-box-shadow: inset 0px 1px 0px 0px #a65151; @@ -725,6 +726,7 @@ aside h4 { background-color: #3465a4; } +#subscribe-feed-link:hover, #dfrn-request-link:hover { background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #1873a2), color-stop(1, #6da6c4) ); background: -moz-linear-gradient( center top, #1873a2 5%, #6da6c4 100% ); @@ -732,6 +734,7 @@ aside h4 { background-color: #1873a2; } +#subscribe-feed-link:active, #dfrn-request-link:active { position: relative; top: 1px; diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index ecbb2ad96c..07d72c0dde 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -1004,9 +1004,11 @@ aside #profile-extra-links ul { } aside #profile-extra-links li { padding: 0px; + padding-bottom: 4px; margin: 0px; list-style: none; } +aside #subscribe-feed-link, aside #dfrn-request-link, aside #wallmessage-link { display: block; @@ -1019,6 +1021,7 @@ aside #wallmessage-link { text-transform: uppercase; padding: 4px 2px 2px 35px; } +aside #subscribe-feed-link:hover, aside #dfrn-request-link:hover, aside #wallmessage-link:hover { text-decoration: none; diff --git a/view/theme/vier/templates/profile_vcard.tpl b/view/theme/vier/templates/profile_vcard.tpl index c5a51ccbaf..1882c15583 100644 --- a/view/theme/vier/templates/profile_vcard.tpl +++ b/view/theme/vier/templates/profile_vcard.tpl @@ -66,6 +66,9 @@ {{if $wallmessage}}
  • {{$wallmessage}}
  • {{/if}} + {{if $subscribe_feed}} +
  • {{$subscribe_feed}}
  • + {{/if}} From 25c0c5d4ad9e155dd5329e197c7a19212d20b578 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 28 Nov 2015 18:49:37 +0100 Subject: [PATCH 331/443] Issue 1925 - display nickname@hostname.com --- include/text.php | 7 +++++-- mod/viewcontacts.php | 1 + 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/include/text.php b/include/text.php index f210bff721..73c441e26a 100644 --- a/include/text.php +++ b/include/text.php @@ -943,6 +943,9 @@ function micropro($contact, $redirect = false, $class = '', $textmode = false) { if($class) $class = ' ' . $class; + if ($contact["addr"] == "") + $contact["addr"] = $contact["url"]; + $url = $contact['url']; $sparkle = ''; $redir = false; @@ -966,7 +969,7 @@ function micropro($contact, $redirect = false, $class = '', $textmode = false) { . (($click) ? ' fakelink' : '') . '" ' . (($redir) ? ' target="redir" ' : '') . (($url) ? ' href="' . $url . '"' : '') . $click - . '" title="' . $contact['name'] . ' [' . $contact['url'] . ']" alt="' . $contact['name'] + . '" title="' . $contact['name'] . ' [' . $contact['addr'] . ']" alt="' . $contact['name'] . '" >'. $contact['name'] . '' . "\r\n"; } else { @@ -974,7 +977,7 @@ function micropro($contact, $redirect = false, $class = '', $textmode = false) { . (($click) ? ' fakelink' : '') . '" ' . (($redir) ? ' target="redir" ' : '') . (($url) ? ' href="' . $url . '"' : '') . $click . ' >' . $contact['name']
+			. proxy_url($contact['micro'], false, PROXY_SIZE_THUMB) . '' . "\r\n"; } }} diff --git a/mod/viewcontacts.php b/mod/viewcontacts.php index c7f139e1e4..c3bf3964f7 100644 --- a/mod/viewcontacts.php +++ b/mod/viewcontacts.php @@ -64,6 +64,7 @@ function viewcontacts_content(&$a) { $contacts[] = array( 'id' => $rr['id'], 'img_hover' => sprintf( t('Visit %s\'s profile [%s]'), $rr['name'], $rr['url']), + 'photo_menu' => contact_photo_menu($rr), 'thumb' => proxy_url($rr['thumb'], false, PROXY_SIZE_THUMB), 'name' => htmlentities(substr($rr['name'],0,20)), 'username' => htmlentities($rr['name']), From cd16eb14af967648cdefaee4f420d483ed9aa309 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 28 Nov 2015 19:42:18 +0100 Subject: [PATCH 332/443] Show the name instead of the nick in the feed --- include/ostatus.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ostatus.php b/include/ostatus.php index 750952e908..ebd5741e51 100644 --- a/include/ostatus.php +++ b/include/ostatus.php @@ -1237,7 +1237,7 @@ function ostatus_add_author($doc, $owner, $profile) { $author = $doc->createElement("author"); xml_add_element($doc, $author, "activity:object-type", ACTIVITY_OBJ_PERSON); xml_add_element($doc, $author, "uri", $owner["url"]); - xml_add_element($doc, $author, "name", $owner["nick"]); + xml_add_element($doc, $author, "name", $profile["name"]); $attributes = array("rel" => "alternate", "type" => "text/html", "href" => $owner["url"]); xml_add_element($doc, $author, "link", "", $attributes); From a3059d02d40684f2bc1a0439c979ca7f79d8f10f Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sat, 28 Nov 2015 20:09:28 +0100 Subject: [PATCH 333/443] group_side - unify look with forumlist --- include/group.php | 34 ++++++++++++------ mod/contacts.php | 2 +- mod/group.php | 2 +- mod/network.php | 2 +- mod/nogroup.php | 2 +- view/templates/group_side.tpl | 68 ++++++++++++++++++----------------- view/theme/smoothly/style.css | 3 +- view/theme/vier/style.css | 13 ++++--- 8 files changed, 74 insertions(+), 52 deletions(-) diff --git a/include/group.php b/include/group.php index fe29d39f1a..862d06818d 100644 --- a/include/group.php +++ b/include/group.php @@ -213,9 +213,20 @@ function mini_group_select($uid,$gid = 0) { } - - -function group_side($every="contacts",$each="group",$edit = false, $group_id = 0, $cid = 0) { +/** + * @brief Create group sidebar widget + * + * @param string $every + * @param string $each + * @param string $editmode + * 'standard' => include link 'Edit groups' + * 'extended' => include link 'Create new group' + * 'full' => include link 'Create new group' and provide for each group a link to edit this group + * @param int $group_id + * @param int $cid + * @return string + */ +function group_side($every="contacts",$each="group",$editmode = "standard", $group_id = 0, $cid = 0) { $o = ''; @@ -239,13 +250,13 @@ function group_side($every="contacts",$each="group",$edit = false, $group_id = 0 $member_of = array(); if($cid) { $member_of = groups_containing(local_user(),$cid); - } + } if(count($r)) { foreach($r as $rr) { $selected = (($group_id == $rr['id']) ? ' group-selected' : ''); - if ($edit) { + if ($editmode == "full") { $groupedit = array( 'href' => "group/".$rr['id'], 'title' => t('edit'), @@ -269,14 +280,17 @@ function group_side($every="contacts",$each="group",$edit = false, $group_id = 0 $tpl = get_markup_template("group_side.tpl"); $o = replace_macros($tpl, array( - '$title' => t('Groups'), + '$title' => t('Groups'), + 'newgroup' => (($editmode == "extended") || ($editmode == "full") ? 1 : ''), + '$editgroupstext' => t('Edit groups'), + 'grouppage' => "group/", '$edittext' => t('Edit group'), '$createtext' => t('Create a new group'), - '$creategroup' => t('Group Name: '), - '$form_security_token' => get_form_security_token("group_edit"), + '$creategroup' => t('Group Name: '), + '$form_security_token' => get_form_security_token("group_edit"), '$ungrouped' => (($every === 'contacts') ? t('Contacts not in any group') : ''), - '$groups' => $groups, - '$add' => t('add'), + '$groups' => $groups, + '$add' => t('add'), )); diff --git a/mod/contacts.php b/mod/contacts.php index 017b1d6435..1dc886363a 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -55,7 +55,7 @@ function contacts_init(&$a) { $findpeople_widget .= findpeople_widget(); } - $groups_widget .= group_side('contacts','group',false,0,$contact_id); + $groups_widget .= group_side('contacts','group','full',0,$contact_id); $a->page['aside'] .= replace_macros(get_markup_template("contacts-widget-sidebar.tpl"),array( '$vcard_widget' => $vcard_widget, diff --git a/mod/group.php b/mod/group.php index 263586e2e9..e9f9561f46 100644 --- a/mod/group.php +++ b/mod/group.php @@ -7,7 +7,7 @@ function validate_members(&$item) { function group_init(&$a) { if(local_user()) { require_once('include/group.php'); - $a->page['aside'] = group_side('contacts','group',false,(($a->argc > 1) ? intval($a->argv[1]) : 0)); + $a->page['aside'] = group_side('contacts','group','extended',(($a->argc > 1) ? intval($a->argv[1]) : 0)); } } diff --git a/mod/network.php b/mod/network.php index 903ee41548..fd22f3e192 100644 --- a/mod/network.php +++ b/mod/network.php @@ -145,7 +145,7 @@ function network_init(&$a) { )); } - $a->page['aside'] .= (feature_enabled(local_user(),'groups') ? group_side('network/0','network',true,$group_id) : ''); + $a->page['aside'] .= (feature_enabled(local_user(),'groups') ? group_side('network/0','network','standard',$group_id) : ''); $a->page['aside'] .= (feature_enabled(local_user(),'forumlist_widget') ? widget_forumlist($a) : ''); $a->page['aside'] .= posted_date_widget($a->get_baseurl() . '/network',local_user(),false); $a->page['aside'] .= networks_widget($a->get_baseurl(true) . '/network',(x($_GET, 'nets') ? $_GET['nets'] : '')); diff --git a/mod/nogroup.php b/mod/nogroup.php index 06fa730e0d..9f6e978433 100644 --- a/mod/nogroup.php +++ b/mod/nogroup.php @@ -15,7 +15,7 @@ function nogroup_init(&$a) { if(! x($a->page,'aside')) $a->page['aside'] = ''; - $a->page['aside'] .= group_side('contacts','group',false,0,$contact_id); + $a->page['aside'] .= group_side('contacts','group','extended',0,$contact_id); } diff --git a/view/templates/group_side.tpl b/view/templates/group_side.tpl index 4905c2fa1a..466882370f 100644 --- a/view/templates/group_side.tpl +++ b/view/templates/group_side.tpl @@ -1,38 +1,42 @@
    -

    {{$title}}

    +

    {{$title}}

    - diff --git a/view/theme/smoothly/style.css b/view/theme/smoothly/style.css index ba0c4bff6e..3b6b73dc6e 100644 --- a/view/theme/smoothly/style.css +++ b/view/theme/smoothly/style.css @@ -854,7 +854,8 @@ li.widget-list { padding: 3px 24px; } -#sidebar-new-group { +#sidebar-new-group, +#sidebar-edit-groups { padding: 7px; width: 165px; margin: auto; diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index ecbb2ad96c..5bd475759f 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -347,7 +347,7 @@ code { display: inline-block; min-width: 10px; padding: 3px 7px; - font-size: 12px; + font-size: 10px; font-weight: 700; line-height: 1; color: #fff; @@ -382,7 +382,7 @@ code { #sidebar-group-list .tool:hover { background: #EEE; } -#sidebar-group-list .notify { +/*#sidebar-group-list .notify { min-width: 10px; text-align: center; color: #FFF; @@ -391,6 +391,9 @@ code { padding: 3px; border-radius: 10px; display: none; +}*/ +#sidebar-group-list .notify { + display: none; } #sidebar-group-list .notify.show { display: inline-block; } .tool .label { @@ -416,7 +419,7 @@ code { opacity: 1; } -.sidebar-group-li:hover, #sidebar-new-group:hover, #forum-widget-collapse:hover, +.sidebar-group-li:hover, #sidebar-new-group:hover, #sidebar-edit-groups:hover, #forum-widget-collapse:hover, #sidebar-ungrouped:hover, .side-link:hover, .nets-ul li:hover, #forumlist-sidebar li:hover, #forumlist-sidebar-right li:hover, .nets-all:hover, .saved-search-li:hover, li.tool:hover, .admin.link:hover, aside h4 a:hover, right_aside h4 a:hover, #message-new:hover { /* background-color: #ddd; */ @@ -436,7 +439,7 @@ code { font-weight: bold; } -#forum-widget-showmore, #sidebar-new-group, #forum-widget-collapse, #forumlist-rsidebar-right, #sidebar-ungrouped, +#forum-widget-showmore, #sidebar-new-group, #sidebar-edit-groups, #forum-widget-collapse, #forumlist-rsidebar-right, #sidebar-ungrouped, .side-link, #peoplefind-desc, #connect-desc, .nets-all, .admin.link, #message-new { padding-left: 10px; padding-top: 3px; @@ -464,7 +467,7 @@ code { display: inline-block; } -a.nets-link, .side-link a, #sidebar-new-group a, a.savedsearchterm, a.fileas-link, aside h4 a, right_aside h4 a { +a.nets-link, .side-link a, #sidebar-new-group a, #sidebar-edit-groups a, a.savedsearchterm, a.fileas-link, aside h4 a, right_aside h4 a { display: block; color: #737373; } From aa047e16d7b95788f1efdf216960e16c09e17754 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sat, 28 Nov 2015 21:12:44 +0100 Subject: [PATCH 334/443] directory - reduce the number of queries --- mod/contacts.php | 3 +++ mod/directory.php | 17 +++++++---------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/mod/contacts.php b/mod/contacts.php index 13f316aa17..83388ed4ed 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -830,6 +830,9 @@ function contacts_content(&$a) { } function _contact_detail_for_template($rr){ + + $community = ''; + switch($rr['rel']) { case CONTACT_IS_FRIEND: $dir_icon = 'images/lrarrow.gif'; diff --git a/mod/directory.php b/mod/directory.php index b0f1cb716b..4695ca6b82 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -85,9 +85,11 @@ function directory_content(&$a) { $limit = intval($a->pager['start']).",".intval($a->pager['itemspage']); - $r = $db->q("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`, `user`.`timezone` , `user`.`page-flags` FROM `profile` + $r = $db->q("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`, `user`.`timezone` , `user`.`page-flags`, + `contact`.`addr` AS faddr, `contact`.`url` AS profile_url FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` - WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $sql_extra $order LIMIT ".$limit); + INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid` + WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 AND `contact`.`self` $sql_extra $order LIMIT ".$limit); if(count($r)) { if(in_array('small', $a->argv)) @@ -98,14 +100,9 @@ function directory_content(&$a) { foreach($r as $rr) { $community = ''; + $itemurl= ''; - // get the friendica address and the profile url of the user - $p = q("SELECT `addr` AS faddr, `url` AS profile_url FROM `contact` WHERE `uid` = %d AND `self`", - intval($rr['uid']) - ); - - if(count($p)) - $itemurl = (($p['0']['faddr'] != "") ? $p['0']['faddr'] : $p['0']['profile_url']); + $itemurl = (($rr['faddr'] != "") ? $rr['faddr'] : $rr['profile_url']); $profile_link = z_root() . '/profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']); @@ -135,7 +132,7 @@ function directory_content(&$a) { // show if account is a community account // ToDo the other should be also respected, but first we need a good translatiion // and systemwide consistency for displaying the page type - if(intval($rr['page-flags']) == PAGE_COMMUNITY OR intval($rr['page-flags']) == PAGE_PRVGROUP) + if((intval($rr['page-flags']) == PAGE_COMMUNITY) OR (intval($rr['page-flags']) == PAGE_PRVGROUP)) $community = true; $profile = $rr; From 3067663909e7a5553d55d0dc385d02998c1961a0 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 28 Nov 2015 22:56:48 +0100 Subject: [PATCH 335/443] The manage page now shows the unread notifications --- mod/manage.php | 14 ++++++++++++++ view/templates/manage.tpl | 2 +- view/theme/vier/plus.css | 6 ++++++ view/theme/vier/style.css | 19 +++++++++++++++++++ 4 files changed, 40 insertions(+), 1 deletion(-) diff --git a/mod/manage.php b/mod/manage.php index c0eedc2ba0..3f2023b7e3 100644 --- a/mod/manage.php +++ b/mod/manage.php @@ -114,6 +114,20 @@ function manage_content(&$a) { $identities[$key][thumb] = $thumb[0][thumb]; $identities[$key]['selected'] = (($id['nickname'] === $a->user['nickname']) ? true : false); + + $notifications = 0; + + $r = q("SELECT DISTINCT(`parent`) FROM `notify` WHERE `uid` = %d AND NOT `seen` AND NOT (`type` IN (%d, %d))", + intval($id['uid']), intval(NOTIFY_INTRO), intval(NOTIFY_MAIL)); + if ($r) + $notifications = sizeof($r); + + $r = q("SELECT DISTINCT(`convid`) FROM `mail` WHERE `uid` = %d AND NOT `seen`", + intval($id['uid'])); + if ($r) + $notifications = $notifications + sizeof($r); + + $identities[$key]['notifications'] = $notifications; } $o = replace_macros(get_markup_template('manage.tpl'), array( diff --git a/view/templates/manage.tpl b/view/templates/manage.tpl index e23c402754..dd27092e9b 100644 --- a/view/templates/manage.tpl +++ b/view/templates/manage.tpl @@ -11,6 +11,7 @@
    @@ -22,7 +23,6 @@
    ({{$id.nickname}})
    -
    {{/foreach}} diff --git a/view/theme/vier/plus.css b/view/theme/vier/plus.css index 5faf069c22..8e1865a869 100644 --- a/view/theme/vier/plus.css +++ b/view/theme/vier/plus.css @@ -17,6 +17,12 @@ nav a:hover, color: #000; } +.manage-notify { + background-color: #CB4437; + border-radius: 10px; + font: bold 11px/16px Arial; +} + nav .nav-notify { /* background-color: #427FED; */ background-color: #CB4437; diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index 5bd475759f..a9c5e7ec8e 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -667,6 +667,7 @@ nav .nav-menu img { margin-top: -3px; margin-right: 4px; } + nav .nav-menu-icon .nav-notify { top: 3px; } @@ -701,6 +702,23 @@ nav .nav-menu:hover { /* background: #4c619c; */ text-decoration: none; } + +.manage-notify { + background-color: #F80; + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; + font-size: 10px; + padding: 1px 3px; + top: 0px; + min-width: 15px; + text-align: center; + color: white; + float: right; + margin-top: -14px; + margin-right: -20px; +} + nav .nav-notify { display: none; position: absolute; @@ -720,6 +738,7 @@ nav .nav-notify { text-align: center; color: white; } + nav .nav-notify.show { display: block; } From 58a261a29a3445afad1fe47ee7175fbce669a976 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 28 Nov 2015 23:18:01 +0100 Subject: [PATCH 336/443] Other themes are now supported as well --- view/theme/duepuntozero/style.css | 11 +++++++++++ view/theme/frost/style.css | 16 ++++++++++++++++ view/theme/smoothly/style.css | 11 +++++++++++ 3 files changed, 38 insertions(+) diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 255a1d089a..2729e01278 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -3312,6 +3312,17 @@ div.jGrowl div.info { } /* notifications popup menu */ +.manage-notify { + font-size: 10px; + padding: 1px 3px; + top: 0px; + min-width: 15px; + text-align: center; + float: right; + margin-top: -14px; + margin-right: -20px; +} + .nav-notify { display: none; position: absolute; diff --git a/view/theme/frost/style.css b/view/theme/frost/style.css index 24fe47559a..0e51128e29 100644 --- a/view/theme/frost/style.css +++ b/view/theme/frost/style.css @@ -4040,6 +4040,22 @@ div.jGrowl-notification { } /* notifications popup menu */ +.manage-notify { + padding: 1px 3px; + top: 0px; + min-width: 15px; + text-align: center; + float: right; + margin-top: -14px; + margin-right: -20px; + + font-size: 0.8em; + border-radius: 4px; + -moz-border-radius: 4px; + -webkit-border-radius: 4px; + background-color: gold !important; +} + .nav-notify { display: none; position: absolute; diff --git a/view/theme/smoothly/style.css b/view/theme/smoothly/style.css index 3b6b73dc6e..f441ea5412 100644 --- a/view/theme/smoothly/style.css +++ b/view/theme/smoothly/style.css @@ -4216,6 +4216,17 @@ a.active { } /* notifications popup menu */ +.manage-notify { + font-size: 10px; + padding: 1px 3px; + top: 0px; + min-width: 15px; + text-align: center; + float: right; + margin-top: -14px; + margin-right: -20px; +} + .nav-notify { display: none; position: absolute; From 68916689de86eabde434aaf1349aab0ca32a3b00 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 28 Nov 2015 23:35:02 +0100 Subject: [PATCH 337/443] Introductions are now added as well --- mod/manage.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mod/manage.php b/mod/manage.php index 3f2023b7e3..adcc3d787a 100644 --- a/mod/manage.php +++ b/mod/manage.php @@ -127,6 +127,11 @@ function manage_content(&$a) { if ($r) $notifications = $notifications + sizeof($r); + $r = q("SELECT COUNT(*) AS `introductions` FROM `intro` WHERE NOT `blocked` AND NOT `ignore` AND `uid` = %d", + intval($id['uid'])); + if ($r) + $notifications = $notifications + $r[0]["introductions"]; + $identities[$key]['notifications'] = $notifications; } From f5597da059b126b6910cfeee7f5d154fa49cdf0b Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sat, 28 Nov 2015 23:52:12 +0100 Subject: [PATCH 338/443] forumlist - mark selected forum as selected --- include/forums.php | 15 ++++-- mod/network.php | 4 +- view/templates/widget_forumlist.tpl | 4 +- view/theme/duepuntozero/style.css | 2 +- view/theme/frost-mobile/style.css | 2 +- view/theme/frost/style.css | 2 +- .../quattro/templates/widget_forumlist.tpl | 46 +++++++++++++++++++ view/theme/vier/style.css | 2 +- .../vier/templates/widget_forumlist_right.tpl | 8 ++-- view/theme/vier/theme.php | 10 +++- 10 files changed, 77 insertions(+), 18 deletions(-) create mode 100644 view/theme/quattro/templates/widget_forumlist.tpl diff --git a/include/forums.php b/include/forums.php index 59bf5a6b07..995a29cad1 100644 --- a/include/forums.php +++ b/include/forums.php @@ -60,10 +60,12 @@ function get_forumlist($uid, $showhidden = true, $lastitem, $showprivate = false * Sidebar widget to show subcribed friendica forums. If activated * in the settings, it appears at the notwork page sidebar * - * @param App $a + * @param int $uid + * @param int $cid + * The contact id which is used to mark a forum as "selected" * @return string */ -function widget_forumlist($a) { +function widget_forumlist($uid,$cid = 0) { if(! intval(feature_enabled(local_user(),'forumlist_widget'))) return; @@ -73,7 +75,7 @@ function widget_forumlist($a) { //sort by last updated item $lastitem = true; - $contacts = get_forumlist($a->user['uid'],true,$lastitem, true); + $contacts = get_forumlist($uid,true,$lastitem, true); $total = count($contacts); $visible_forums = 10; @@ -83,11 +85,14 @@ function widget_forumlist($a) { foreach($contacts as $contact) { + $selected = (($cid == $contact['id']) ? ' forum-selected' : ''); + $entry = array( - 'url' => $a->get_baseurl() . '/network?f=&cid=' . $contact['id'], - 'external_url' => $a->get_baseurl() . '/redir/' . $contact['id'], + 'url' => z_root() . '/network?f=&cid=' . $contact['id'], + 'external_url' => z_root() . '/redir/' . $contact['id'], 'name' => $contact['name'], 'cid' => $contact['id'], + 'selected' => $selected, 'micro' => proxy_url($contact['micro'], false, PROXY_SIZE_MICRO), 'id' => ++$id, ); diff --git a/mod/network.php b/mod/network.php index fd22f3e192..f18e3001d0 100644 --- a/mod/network.php +++ b/mod/network.php @@ -6,6 +6,8 @@ function network_init(&$a) { } $is_a_date_query = false; + if(x($_GET['cid']) && intval($_GET['cid']) != 0) + $cid = $_GET['cid']; if($a->argc > 1) { for($x = 1; $x < $a->argc; $x ++) { @@ -146,7 +148,7 @@ function network_init(&$a) { } $a->page['aside'] .= (feature_enabled(local_user(),'groups') ? group_side('network/0','network','standard',$group_id) : ''); - $a->page['aside'] .= (feature_enabled(local_user(),'forumlist_widget') ? widget_forumlist($a) : ''); + $a->page['aside'] .= (feature_enabled(local_user(),'forumlist_widget') ? widget_forumlist(local_user(),$cid) : ''); $a->page['aside'] .= posted_date_widget($a->get_baseurl() . '/network',local_user(),false); $a->page['aside'] .= networks_widget($a->get_baseurl(true) . '/network',(x($_GET, 'nets') ? $_GET['nets'] : '')); $a->page['aside'] .= saved_searches($search); diff --git a/view/templates/widget_forumlist.tpl b/view/templates/widget_forumlist.tpl index 54d7df82d2..32da71f816 100644 --- a/view/templates/widget_forumlist.tpl +++ b/view/templates/widget_forumlist.tpl @@ -24,7 +24,7 @@ function showHideForumlist() { {{$forum.link_desc}} - {{$forum.name}} + {{$forum.name}} {{/if}} @@ -34,7 +34,7 @@ function showHideForumlist() { {{$forum.link_desc}} - {{$forum.name}} + {{$forum.name}} {{/if}} {{/foreach}} diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 255a1d089a..cbf0410359 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -340,7 +340,7 @@ div.wall-item-content-wrapper.shiny { margin-bottom: 10px; } -.group-selected, .nets-selected, .fileas-selected, .categories-selected { +.group-selected, .nets-selected, .fileas-selected, .categories-selected, .forum-selected { padding: 3px; -moz-border-radius: 3px; border-radius: 3px; diff --git a/view/theme/frost-mobile/style.css b/view/theme/frost-mobile/style.css index 4485c056ff..9a0c50e1e7 100644 --- a/view/theme/frost-mobile/style.css +++ b/view/theme/frost-mobile/style.css @@ -511,7 +511,7 @@ footer { margin-bottom: 10px; } -.group-selected, .nets-selected, .fileas-selected, .categories-selected { +.group-selected, .nets-selected, .fileas-selected, .categories-selected, .forum-selected { padding: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; diff --git a/view/theme/frost/style.css b/view/theme/frost/style.css index 24fe47559a..c0e85facb0 100644 --- a/view/theme/frost/style.css +++ b/view/theme/frost/style.css @@ -489,7 +489,7 @@ div.wall-item-content-wrapper.shiny { margin-bottom: 10px; } -.group-selected, .nets-selected, .fileas-selected, .categories-selected { +.group-selected, .nets-selected, .fileas-selected, .categories-selected, .forum-selected { padding: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; diff --git a/view/theme/quattro/templates/widget_forumlist.tpl b/view/theme/quattro/templates/widget_forumlist.tpl new file mode 100644 index 0000000000..35c54bc690 --- /dev/null +++ b/view/theme/quattro/templates/widget_forumlist.tpl @@ -0,0 +1,46 @@ + + +
    +

    {{$title}}

    + + +
    diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index 5bd475759f..fcc6c7b8cc 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -435,7 +435,7 @@ code { /* color: #000; */ } -.group-selected, .nets-selected, .fileas-selected { +.group-selected, .nets-selected, .fileas-selected, .forum-selected { font-weight: bold; } diff --git a/view/theme/vier/templates/widget_forumlist_right.tpl b/view/theme/vier/templates/widget_forumlist_right.tpl index 49e7723e8e..93f8e8f105 100644 --- a/view/theme/vier/templates/widget_forumlist_right.tpl +++ b/view/theme/vier/templates/widget_forumlist_right.tpl @@ -20,21 +20,21 @@ function showHideForumlist() { {{foreach $forums as $forum}} {{if $forum.id <= $visible_forums}} {{/if}} {{if $forum.id > $visible_forums}} {{/if}} {{/foreach}} diff --git a/view/theme/vier/theme.php b/view/theme/vier/theme.php index 789ba1daf1..91c384f805 100644 --- a/view/theme/vier/theme.php +++ b/view/theme/vier/theme.php @@ -222,6 +222,9 @@ function vier_community_info() { require_once('include/forums.php'); + if(x($_GET['cid']) && intval($_GET['cid']) != 0) + $cid = $_GET['cid']; + //sort by last updated item $lastitem = true; @@ -235,11 +238,14 @@ function vier_community_info() { foreach($contacts as $contact) { + $selected = (($cid == $contact['id']) ? ' forum-selected' : ''); + $entry = array( - 'url' => $a->get_baseurl() . '/network?f=&cid=' . $contact['id'], - 'external_url' => $a->get_baseurl() . '/redir/' . $contact['id'], + 'url' => z_root() . '/network?f=&cid=' . $contact['id'], + 'external_url' => z_root() . '/redir/' . $contact['id'], 'name' => $contact['name'], 'cid' => $contact['id'], + 'selected' => $selected, 'micro' => proxy_url($contact['micro'], false, PROXY_SIZE_MICRO), 'id' => ++$id, ); From 73dbd73990b0b31d9fe47146c2dbb2714c4d7b05 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sun, 29 Nov 2015 00:09:09 +0100 Subject: [PATCH 339/443] directory - little change in the sql query --- mod/directory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/directory.php b/mod/directory.php index 4695ca6b82..bedc71907e 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -88,7 +88,7 @@ function directory_content(&$a) { $r = $db->q("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`, `user`.`timezone` , `user`.`page-flags`, `contact`.`addr` AS faddr, `contact`.`url` AS profile_url FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` - INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid` + LEFT JOIN `contact` ON `contact`.`uid` = `user`.`uid` WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 AND `contact`.`self` $sql_extra $order LIMIT ".$limit); if(count($r)) { From 1a0cb99d56de2700f5cab4fb62cee12bbf87feae Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Sun, 29 Nov 2015 04:57:42 +0100 Subject: [PATCH 340/443] redesign the network page header when cid selected --- mod/network.php | 31 ++++++++++++++++++++----------- view/theme/vier/style.css | 15 +++++++++++++++ 2 files changed, 35 insertions(+), 11 deletions(-) diff --git a/mod/network.php b/mod/network.php index fd22f3e192..3e841d2759 100644 --- a/mod/network.php +++ b/mod/network.php @@ -152,14 +152,14 @@ function network_init(&$a) { $a->page['aside'] .= saved_searches($search); $a->page['aside'] .= fileas_widget($a->get_baseurl(true) . '/network',(x($_GET, 'file') ? $_GET['file'] : '')); - if(x($_GET['cid']) && intval($_GET['cid']) != 0) { - $r = q("SELECT `url` FROM `contact` WHERE `id` = %d", - intval($_GET['cid'])); - if ($r) { - $a->page['aside'] = ""; - profile_load($a, "", 0, get_contact_details_by_url($r[0]["url"])); - } - } +// if(x($_GET['cid']) && intval($_GET['cid']) != 0) { +// $r = q("SELECT `url` FROM `contact` WHERE `id` = %d", +// intval($_GET['cid'])); +// if ($r) { +// $a->page['aside'] = ""; +// profile_load($a, "", 0, get_contact_details_by_url($r[0]["url"])); +// } +// } } function saved_searches($search) { @@ -583,7 +583,7 @@ function network_content(&$a, $update = 0) { } elseif($cid) { - $r = q("SELECT `id`,`name`,`network`,`writable`,`nurl` FROM `contact` WHERE `id` = %d + $r = q("SELECT `id`,`name`,`network`,`writable`,`nurl`, `forum`, `prv`, `addr`, `thumb`, `location` FROM `contact` WHERE `id` = %d AND `blocked` = 0 AND `pending` = 0 LIMIT 1", intval($cid) ); @@ -594,8 +594,17 @@ function network_content(&$a, $update = 0) { ON $sql_table.$sql_parent = `temp1`.`parent` "; $sql_extra = ""; - $o = replace_macros(get_markup_template("section_title.tpl"),array( - '$title' => sprintf( t('Contact: %s'), htmlentities($r[0]['name'])) + $entries[0] = array( + 'id' => 'network', + 'name' => htmlentities($r[0]['name']), + 'itemurl' => (($r[0]['addr']) ? ($r[0]['addr']) : ($r[0]['nurl'])), + 'thumb' => proxy_url($r[0]['thumb'], false, PROXY_SIZE_THUMB), + 'account_type' => (($r[0]['forum']) || ($r[0]['prv']) ? t('Forum') : ''), + 'details' => $r[0]['location'], + ); + + $o = replace_macros(get_markup_template("viewcontact_template.tpl"),array( + 'contacts' => $entries, )) . $o; if($r[0]['network'] === NETWORK_OSTATUS && $r[0]['writable'] && (! get_pconfig(local_user(),'system','nowarn_insecure'))) { diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index 5bd475759f..d4da5e2d6c 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -1199,6 +1199,21 @@ section.minimal { height: 100%; } +#contact-entry-wrapper-network { + float: none; + width: 100%; + background-color: #FAFAFA; + box-shadow: 1px 2px 0px 0px #D8D8D8; + border-bottom: 1px solid #D2D2D2; + padding: 10px 10px 0 10px; + width: 745px; +} +#contact-entry-accounttype-network { + font-size: 20px; +} +#contact-entry-name-network { + font-size: 24.5px; +} /* wall item */ .tread-wrapper { /* border-bottom: 1px solid #BDCDD4; */ From 00cc409461c07852afbd7449ccea4a39e77df00f Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 29 Nov 2015 09:35:35 +0100 Subject: [PATCH 341/443] The photo menu now respects if the local users differs from the contact owner --- include/Contact.php | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/include/Contact.php b/include/Contact.php index b98c9f7056..fe73557de3 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -286,7 +286,7 @@ function get_contact_details_by_url($url, $uid = -1) { } if(! function_exists('contact_photo_menu')){ -function contact_photo_menu($contact) { +function contact_photo_menu($contact, $uid = 0) { $a = get_app(); @@ -298,6 +298,33 @@ function contact_photo_menu($contact) { $contact_drop_link = ""; $poke_link=""; + if ($uid == 0) + $uid = local_user(); + + if ($contact["uid"] != $uid) { + if ($uid == 0) { + $profile_link = zrl($contact['url']); + $menu = Array('profile' => array(t("View Profile"), $profile_link, true)); + + return $menu; + } + + $r = q("SELECT * FROM `contact` WHERE `nurl` = '%s' AND `network` = '%s' AND `uid` = %d", + dbesc($contact["nurl"]), dbesc($contact["network"]), intval($uid)); + if ($r) + return contact_photo_menu($r[0], $uid); + else { + $profile_link = zrl($contact['url']); + $connlnk = 'follow/?url='.$contact['url']; + $menu = Array( + 'profile' => array(t("View Profile"), $profile_link, true), + 'follow' => array(t("Connect/Follow"), $connlnk, true) + ); + + return $menu; + } + } + $sparkle = false; if($contact['network'] === NETWORK_DFRN) { $sparkle = true; From c77ef0c4938144e5d7764664e6029c1f0ec49d67 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 29 Nov 2015 09:56:34 +0100 Subject: [PATCH 342/443] Viewcontacts now only shows native contacts (no more connector contacts) --- mod/viewcontacts.php | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/mod/viewcontacts.php b/mod/viewcontacts.php index c3bf3964f7..d16a48e349 100644 --- a/mod/viewcontacts.php +++ b/mod/viewcontacts.php @@ -26,19 +26,30 @@ function viewcontacts_content(&$a) { } - $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0 ", - intval($a->profile['uid']) + $r = q("SELECT COUNT(*) AS `total` FROM `contact` + WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0 + AND `network` IN ('%s', '%s', '%s')", + intval($a->profile['uid']), + dbesc(NETWORK_DFRN), + dbesc(NETWORK_DIASPORA), + dbesc(NETWORK_OSTATUS) ); if(count($r)) $a->set_pager_total($r[0]['total']); - $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0 ORDER BY `name` ASC LIMIT %d , %d ", + $r = q("SELECT * FROM `contact` + WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0 + AND `network` IN ('%s', '%s', '%s') + ORDER BY `name` ASC LIMIT %d, %d", intval($a->profile['uid']), + dbesc(NETWORK_DFRN), + dbesc(NETWORK_DIASPORA), + dbesc(NETWORK_OSTATUS), intval($a->pager['start']), intval($a->pager['itemspage']) ); - if(! count($r)) { - info( t('No contacts.') . EOL ); + if(!count($r)) { + info(t('No contacts.').EOL); return $o; } From ba441789b903b3da8e992f0617874dfa705c86ce Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 29 Nov 2015 11:18:32 +0100 Subject: [PATCH 343/443] followup for #2110 putting the styling in less file and recompile css --- view/theme/quattro/dark/style.css | 17 +++++++++++++++-- view/theme/quattro/green/style.css | 17 +++++++++++++++-- view/theme/quattro/lilac/style.css | 17 +++++++++++++++-- view/theme/quattro/quattro.less | 11 +++++++++++ 4 files changed, 56 insertions(+), 6 deletions(-) diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index 785b527b27..7b20b4797a 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -838,7 +838,6 @@ aside #profile-extra-links li { margin: 0px; list-style: none; } -aside #subscribe-feed-link, aside #wallmessage-link { display: block; -moz-border-radius: 5px 5px 5px 5px; @@ -851,7 +850,6 @@ aside #wallmessage-link { padding: 4px 2px 2px 35px; margin-top: 3px; } -aside #subscribe-feed:hover, aside #wallmessage-link:hover { text-decoration: none; background-color: #19aeff; @@ -871,6 +869,21 @@ aside #dfrn-request-link:hover { text-decoration: none; background-color: #19aeff; } +aside #subscribe-feed-link { + display: block; + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; + color: #ffffff; + background: #005c94 url('../../../images/connect-bg.png') no-repeat left center; + font-weight: bold; + text-transform: uppercase; + padding: 4px 2px 2px 35px; +} +aside #subscribe-feed-link:hover { + text-decoration: none; + background-color: #19aeff; +} aside #profiles-menu { width: 20em; } diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index 7335440319..c29e9bfbc4 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -854,7 +854,6 @@ aside #wallmessage-link:hover { text-decoration: none; background-color: #ccff42; } -aside #subscribe-feed-link, aside #dfrn-request-link { display: block; -moz-border-radius: 5px 5px 5px 5px; @@ -866,11 +865,25 @@ aside #dfrn-request-link { text-transform: uppercase; padding: 4px 2px 2px 35px; } -aside #subscribe-feed-link:hover, aside #dfrn-request-link:hover { text-decoration: none; background-color: #ccff42; } +aside #subscribe-feed-link { + display: block; + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; + color: #ffffff; + background: #009100 url('../../../images/connect-bg.png') no-repeat left center; + font-weight: bold; + text-transform: uppercase; + padding: 4px 2px 2px 35px; +} +aside #subscribe-feed-link:hover { + text-decoration: none; + background-color: #ccff42; +} aside #profiles-menu { width: 20em; } diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index c5027928b2..b672edaa97 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -854,7 +854,6 @@ aside #wallmessage-link:hover { text-decoration: none; background-color: #86608e; } -aside #subscribe-feed-link, aside #dfrn-request-link { display: block; -moz-border-radius: 5px 5px 5px 5px; @@ -866,11 +865,25 @@ aside #dfrn-request-link { text-transform: uppercase; padding: 4px 2px 2px 35px; } -aside #subscribe-feed-link:hover, aside #dfrn-request-link:hover { text-decoration: none; background-color: #86608e; } +aside #subscribe-feed-link { + display: block; + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; + color: #ffffff; + background: #521f5c url('../../../images/connect-bg.png') no-repeat left center; + font-weight: bold; + text-transform: uppercase; + padding: 4px 2px 2px 35px; +} +aside #subscribe-feed-link:hover { + text-decoration: none; + background-color: #86608e; +} aside #profiles-menu { width: 20em; } diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index db1f42d769..c2410244f9 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -352,6 +352,17 @@ aside { &:hover { text-decoration: none; background-color: @AsideConnectHoverBg; } } + #subscribe-feed-link { + display: block; + .rounded(); + color: @AsideConnect; + background: @AsideConnectBg url('../../../images/connect-bg.png') no-repeat left center; + font-weight: bold; + text-transform:uppercase; + padding: 4px 2px 2px 35px; + + &:hover { text-decoration: none; background-color: @AsideConnectHoverBg; } + } #profiles-menu { width: 20em; } From 1cd06df5fa4e620efee726ab83c02861752a14b7 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 29 Nov 2015 12:02:14 +0100 Subject: [PATCH 344/443] Bugfix: Only show the feed link for local profiles --- include/identity.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/identity.php b/include/identity.php index 0282b2d9a5..48fd5056dc 100644 --- a/include/identity.php +++ b/include/identity.php @@ -218,15 +218,15 @@ if(! function_exists('profile_sidebar')) { if ($connect AND ($profile['network'] != NETWORK_DFRN) AND !isset($profile['remoteconnect'])) $connect = false; - if ($connect) + if (isset($profile['remoteconnect'])) + $remoteconnect = $profile['remoteconnect']; + + if ($connect AND ($profile['network'] == NETWORK_DFRN) AND !isset($remoteconnect)) $subscribe_feed = t("Atom feed"); else $subscribe_feed = false; - if (isset($profile['remoteconnect'])) - $remoteconnect = $profile['remoteconnect']; - - if( get_my_url() && $profile['unkmail'] && ($profile['uid'] != local_user()) ) + if(get_my_url() && $profile['unkmail'] && ($profile['uid'] != local_user())) $wallmessage = t('Message'); else $wallmessage = false; From 8b23e771714c1a2687460120bf6006430458c1f8 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 29 Nov 2015 13:37:24 +0100 Subject: [PATCH 345/443] Only show supported networks in sidebar and contact list --- include/acl_selectors.php | 3 +++ include/contact_widgets.php | 43 ++++++++++++++++++++++++++++++++++--- mod/contacts.php | 5 +++-- 3 files changed, 46 insertions(+), 5 deletions(-) diff --git a/include/acl_selectors.php b/include/acl_selectors.php index a1154399a7..4ef3d05ea3 100644 --- a/include/acl_selectors.php +++ b/include/acl_selectors.php @@ -1,6 +1,7 @@ page['aside'] .= replace_macros(get_markup_template("contacts-widget-sidebar.tpl"),array( '$vcard_widget' => $vcard_widget, '$findpeople_widget' => $findpeople_widget, @@ -786,8 +786,9 @@ function contacts_content(&$a) { $total = $r[0]['total']; } + $sql_extra3 = unavailable_networks(); - $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `pending` = 0 $sql_extra $sql_extra2 ORDER BY `name` ASC LIMIT %d , %d ", + $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `pending` = 0 $sql_extra $sql_extra2 $sql_extra3 ORDER BY `name` ASC LIMIT %d , %d ", intval($_SESSION['uid']), intval($a->pager['start']), intval($a->pager['itemspage']) From 2fabde5d2d06f2e9a8e6c3a84b3e3fdd19fdda6a Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 29 Nov 2015 13:42:31 +0100 Subject: [PATCH 346/443] Added the old Facebook addon for addon check --- include/contact_widgets.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/contact_widgets.php b/include/contact_widgets.php index a7c82c33cf..bbbd941b56 100644 --- a/include/contact_widgets.php +++ b/include/contact_widgets.php @@ -20,12 +20,12 @@ function findpeople_widget() { if(get_config('system','invitation_only')) { $x = get_pconfig(local_user(),'system','invites_remaining'); if($x || is_site_admin()) { - $a->page['aside'] .= '
    From 42d903dd6845c4895656e9c5aac7f78f810222a5 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 29 Nov 2015 23:22:05 +0100 Subject: [PATCH 349/443] Redesign of the contact pages, new tab for contact statuses --- include/Contact.php | 2 +- include/conversation.php | 2 +- mod/contacts.php | 164 +++++++++++++++++++++++--------- mod/crepair.php | 15 ++- view/global.css | 12 +++ view/templates/contact_edit.tpl | 1 + view/templates/crepair.tpl | 7 +- 7 files changed, 150 insertions(+), 53 deletions(-) diff --git a/include/Contact.php b/include/Contact.php index b98c9f7056..a30a3c6c7a 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -322,7 +322,7 @@ function contact_photo_menu($contact) { $poke_link = $a->get_baseurl() . '/poke/?f=&c=' . $contact['id']; $contact_url = $a->get_baseurl() . '/contacts/' . $contact['id']; - $posts_link = $a->get_baseurl() . '/network/0?nets=all&cid=' . $contact['id']; + $posts_link = $a->get_baseurl() . "/contacts/" . $contact['id'] . '/posts'; $contact_drop_link = $a->get_baseurl() . "/contacts/" . $contact['id'] . '/drop?confirm=1'; diff --git a/include/conversation.php b/include/conversation.php index 3b2eb54bde..476ae80bea 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -891,7 +891,7 @@ function item_photo_menu($item){ if(($cid) && (! $item['self'])) { $poke_link = $a->get_baseurl($ssl_state) . '/poke/?f=&c=' . $cid; $contact_url = $a->get_baseurl($ssl_state) . '/contacts/' . $cid; - $posts_link = $a->get_baseurl($ssl_state) . '/network/0?nets=all&cid=' . $cid; + $posts_link = $a->get_baseurl($ssl_state) . '/contacts/' . $cid . '/posts'; $clean_url = normalise_link($item['author-link']); diff --git a/mod/contacts.php b/mod/contacts.php index def07db93a..c3720d2176 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -13,7 +13,7 @@ function contacts_init(&$a) { $contact_id = 0; - if(($a->argc == 2) && intval($a->argv[1])) { + if((($a->argc == 2) && intval($a->argv[1])) OR (($a->argc == 3) && intval($a->argv[1]) && ($a->argv[2] == "posts"))) { $contact_id = intval($a->argv[1]); $r = q("SELECT * FROM `contact` WHERE `uid` = %d and `id` = %d LIMIT 1", intval(local_user()), @@ -55,7 +55,8 @@ function contacts_init(&$a) { $findpeople_widget .= findpeople_widget(); } - $groups_widget .= group_side('contacts','group','full',0,$contact_id); + if ($a->argv[2] != "posts") + $groups_widget .= group_side('contacts','group','full',0,$contact_id); $a->page['aside'] .= replace_macros(get_markup_template("contacts-widget-sidebar.tpl"),array( '$vcard_widget' => $vcard_widget, @@ -464,6 +465,9 @@ function contacts_content(&$a) { goaway($a->get_baseurl(true) . '/contacts'); return; // NOTREACHED } + if($cmd === 'posts') { + return contact_posts($a, $contact_id); + } } @@ -548,51 +552,7 @@ function contacts_content(&$a) { $all_friends = (($x) ? t('View all contacts') : ''); // tabs - $tabs = array( - array( - 'label'=>t('Network Posts'), - 'url' => "network/0?nets=all&cid=".$contact["id"], - 'sel' => ((!isset($tab)&&$a->argv[0]=='profile')?'active':''), - 'title' => t('Status Messages and Posts'), - 'id' => 'status-tab', - 'accesskey' => 'm', - ), - array( - 'label' => (($contact['blocked']) ? t('Unblock') : t('Block') ), - 'url' => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/block', - 'sel' => '', - 'title' => t('Toggle Blocked status'), - 'id' => 'toggle-block-tab', - 'accesskey' => 'b', - ), - array( - 'label' => (($contact['readonly']) ? t('Unignore') : t('Ignore') ), - 'url' => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/ignore', - 'sel' => '', - 'title' => t('Toggle Ignored status'), - 'id' => 'toggle-ignore-tab', - 'accesskey' => 'i', - ), - - array( - 'label' => (($contact['archive']) ? t('Unarchive') : t('Archive') ), - 'url' => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/archive', - 'sel' => '', - 'title' => t('Toggle Archive status'), - 'id' => 'toggle-archive-tab', - 'accesskey' => 'v', - ), - array( - 'label' => t('Repair'), - 'url' => $a->get_baseurl(true) . '/crepair/' . $contact_id, - 'sel' => '', - 'title' => t('Advanced Contact Settings'), - 'id' => 'repair-tab', - 'accesskey' => 'r', - ) - ); - $tab_tpl = get_markup_template('common_tabs.tpl'); - $tab_str = replace_macros($tab_tpl, array('$tabs' => $tabs)); + $tab_str = contact_tabs($a, $contact_id, 2); $lost_contact = (($contact['archive'] && $contact['term-date'] != '0000-00-00 00:00:00' && $contact['term-date'] < datetime_convert('','','now')) ? t('Communications lost with this contact!') : ''); @@ -853,6 +813,116 @@ function contacts_content(&$a) { return $o; } +function contact_tabs($a, $contact_id, $active_tab) { + // tabs + $tabs = array( + array( + 'label'=>t('Status'), + 'url' => "contacts/".$contact_id."/posts", + 'sel' => (($active_tab == 1)?'active':''), + 'title' => t('Status Messages and Posts'), + 'id' => 'status-tab', + 'accesskey' => 'm', + ), + array( + 'label'=>t('Profile'), + 'url' => "contacts/".$contact_id, + 'sel' => (($active_tab == 2)?'active':''), + 'title' => t('Profile Details'), + 'id' => 'status-tab', + 'accesskey' => 'r', + ), + array( + 'label' => t('Repair'), + 'url' => $a->get_baseurl(true) . '/crepair/' . $contact_id, + 'sel' => (($active_tab == 3)?'active':''), + 'title' => t('Advanced Contact Settings'), + 'id' => 'repair-tab', + 'accesskey' => 'r', + ), + array( + 'label' => (($contact['blocked']) ? t('Unblock') : t('Block') ), + 'url' => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/block', + 'sel' => '', + 'title' => t('Toggle Blocked status'), + 'id' => 'toggle-block-tab', + 'accesskey' => 'b', + ), + array( + 'label' => (($contact['readonly']) ? t('Unignore') : t('Ignore') ), + 'url' => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/ignore', + 'sel' => '', + 'title' => t('Toggle Ignored status'), + 'id' => 'toggle-ignore-tab', + 'accesskey' => 'i', + ), + array( + 'label' => (($contact['archive']) ? t('Unarchive') : t('Archive') ), + 'url' => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/archive', + 'sel' => '', + 'title' => t('Toggle Archive status'), + 'id' => 'toggle-archive-tab', + 'accesskey' => 'v', + ) + ); + $tab_tpl = get_markup_template('common_tabs.tpl'); + $tab_str = replace_macros($tab_tpl, array('$tabs' => $tabs)); + + return $tab_str; +} + +function contact_posts($a, $contact_id) { + + require_once('include/conversation.php'); + + $r = q("SELECT * FROM `contact` WHERE `id` = %d", intval($contact_id)); + if ($r) { + $contact = $r[0]; + $a->page['aside'] = ""; + profile_load($a, "", 0, get_contact_details_by_url($contact["url"])); + } + + $r = q("SELECT COUNT(*) AS `total` FROM `item` + WHERE `item`.`uid` = %d AND `contact-id` = %d AND `item`.`id` = `item`.`parent`", + intval(local_user()), intval($contact_id)); + + $a->set_pager_total($r[0]['total']); + + $r = q("SELECT `item`.`uri`, `item`.*, `item`.`id` AS `item_id`, + `author-name` AS `name`, `owner-avatar` AS `photo`, + `owner-link` AS `url`, `owner-avatar` AS `thumb` + FROM `item` WHERE `item`.`uid` = %d AND `contact-id` = %d AND `item`.`id` = `item`.`parent` + ORDER BY `item`.`created` DESC LIMIT %d, %d", + intval(local_user()), + intval($contact_id), + intval($a->pager['start']), + intval($a->pager['itemspage']) + ); + + $tab_str = contact_tabs($a, $contact_id, 1); + + $header = $contact["name"]; + + if ($contact["addr"] != "") + $header .= " <".$contact["addr"].">"; + + $header .= " (".network_to_name($contact['network'], $contact['url']).")"; + +//{{include file="section_title.tpl"}} + + $o = "

    ".htmlentities($header)."

    ".$tab_str; + + $o .= conversation($a,$r,'community',false); + + if(!get_config('system', 'old_pager')) { + $o .= alt_pager($a,count($r)); + } else { + $o .= paginate($a); + } + + return $o; +} + function _contact_detail_for_template($rr){ switch($rr['rel']) { case CONTACT_IS_FRIEND: diff --git a/mod/crepair.php b/mod/crepair.php index 4f00190990..d16adf8c74 100644 --- a/mod/crepair.php +++ b/mod/crepair.php @@ -1,4 +1,6 @@ "; + + $header .= " (".network_to_name($contact['network'], $contact['url']).")"; + $tpl = get_markup_template('crepair.tpl'); $o .= replace_macros($tpl, array( - '$title' => t('Repair Contact Settings'), + //'$title' => t('Repair Contact Settings'), + '$title' => htmlentities($header), + '$tab_str' => $tab_str, '$warning' => $warning, '$info' => $info, '$returnaddr' => $returnaddr, diff --git a/view/global.css b/view/global.css index 115fab2711..63575ff21b 100644 --- a/view/global.css +++ b/view/global.css @@ -301,3 +301,15 @@ ul.credits li { #forum-widget-collapse:hover { opacity: 1.0; } + +.crepair-label { + margin-top: 10px; + float: left; + width: 250px; +} + +.crepair-input { + margin-top: 10px; + float: left; + width: 200px; +} diff --git a/view/templates/contact_edit.tpl b/view/templates/contact_edit.tpl index 9d49780259..0733c9e187 100644 --- a/view/templates/contact_edit.tpl +++ b/view/templates/contact_edit.tpl @@ -62,6 +62,7 @@
    +
    diff --git a/view/templates/crepair.tpl b/view/templates/crepair.tpl index d500f04720..1d20983310 100644 --- a/view/templates/crepair.tpl +++ b/view/templates/crepair.tpl @@ -1,16 +1,17 @@ - {{include file="section_title.tpl"}} +{{$tab_str}} +
    {{$warning}}

    {{$info}}
    - {{$return}} +

    -

    {{$contact_name}}

    +
    {{if $update_profile}} From a7ea6ef09639a76a04ebb9d68360144f65264a00 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 29 Nov 2015 23:33:32 +0100 Subject: [PATCH 350/443] Use the template for the header. --- mod/contacts.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mod/contacts.php b/mod/contacts.php index c3720d2176..6e1bbe05b8 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -908,9 +908,12 @@ function contact_posts($a, $contact_id) { $header .= " (".network_to_name($contact['network'], $contact['url']).")"; -//{{include file="section_title.tpl"}} + $tpl = get_markup_template("section_title.tpl"); + $o = replace_macros($tpl,array( + '$title' => htmlentities($header) + )); - $o = "

    ".htmlentities($header)."

    ".$tab_str; + $o .= $tab_str; $o .= conversation($a,$r,'community',false); From 91011b71903a059d65b9eb9cc62c3e73fbfe3c7a Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 29 Nov 2015 23:36:19 +0100 Subject: [PATCH 351/443] Removing of useless code --- mod/contacts.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mod/contacts.php b/mod/contacts.php index 6e1bbe05b8..3cb5454a64 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -55,8 +55,7 @@ function contacts_init(&$a) { $findpeople_widget .= findpeople_widget(); } - if ($a->argv[2] != "posts") - $groups_widget .= group_side('contacts','group','full',0,$contact_id); + $groups_widget .= group_side('contacts','group','full',0,$contact_id); $a->page['aside'] .= replace_macros(get_markup_template("contacts-widget-sidebar.tpl"),array( '$vcard_widget' => $vcard_widget, From a638417ab58e7b0379679e1b4f7682389fddf060 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 29 Nov 2015 23:46:10 +0100 Subject: [PATCH 352/443] Show contact comments in the post --- mod/contacts.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mod/contacts.php b/mod/contacts.php index 3cb5454a64..48d9c87e83 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -890,14 +890,18 @@ function contact_posts($a, $contact_id) { $r = q("SELECT `item`.`uri`, `item`.*, `item`.`id` AS `item_id`, `author-name` AS `name`, `owner-avatar` AS `photo`, `owner-link` AS `url`, `owner-avatar` AS `thumb` - FROM `item` WHERE `item`.`uid` = %d AND `contact-id` = %d AND `item`.`id` = `item`.`parent` + FROM `item` WHERE `item`.`uid` = %d AND `contact-id` = %d + AND ((`item`.`id` = `item`.`parent`) OR (`author-link` = '%s')) ORDER BY `item`.`created` DESC LIMIT %d, %d", intval(local_user()), intval($contact_id), + dbesc($contact["url"]), intval($a->pager['start']), intval($a->pager['itemspage']) ); + + $tab_str = contact_tabs($a, $contact_id, 1); $header = $contact["name"]; From a6aac8f950cd7a5d73ce32ee079156f14b8990ec Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Mon, 30 Nov 2015 01:24:22 +0100 Subject: [PATCH 353/443] networkheader: do css work the other supported themes --- mod/network.php | 9 +------ view/templates/viewcontact_template.tpl | 2 ++ view/theme/duepuntozero/deriv/darkzero.css | 3 +++ view/theme/duepuntozero/deriv/easterbunny.css | 4 ++- view/theme/duepuntozero/deriv/greenzero.css | 1 + view/theme/duepuntozero/deriv/purplezero.css | 3 ++- view/theme/duepuntozero/style.css | 25 +++++++++++++++++++ view/theme/frost-mobile/style.css | 21 ++++++++++++++++ view/theme/frost/style.css | 21 ++++++++++++++++ view/theme/quattro/dark/style.css | 23 +++++++++++++++++ view/theme/quattro/green/style.css | 23 +++++++++++++++++ view/theme/quattro/lilac/style.css | 23 +++++++++++++++++ view/theme/quattro/quattro.less | 17 ++++++++++++- view/theme/smoothly/style.css | 24 ++++++++++++++++++ view/theme/vier/breathe.css | 4 +++ view/theme/vier/dark.css | 6 ++++- view/theme/vier/flat.css | 5 ++++ view/theme/vier/style.css | 18 ++++++++++--- 18 files changed, 216 insertions(+), 16 deletions(-) diff --git a/mod/network.php b/mod/network.php index 3e841d2759..fb48bba738 100644 --- a/mod/network.php +++ b/mod/network.php @@ -152,14 +152,6 @@ function network_init(&$a) { $a->page['aside'] .= saved_searches($search); $a->page['aside'] .= fileas_widget($a->get_baseurl(true) . '/network',(x($_GET, 'file') ? $_GET['file'] : '')); -// if(x($_GET['cid']) && intval($_GET['cid']) != 0) { -// $r = q("SELECT `url` FROM `contact` WHERE `id` = %d", -// intval($_GET['cid'])); -// if ($r) { -// $a->page['aside'] = ""; -// profile_load($a, "", 0, get_contact_details_by_url($r[0]["url"])); -// } -// } } function saved_searches($search) { @@ -605,6 +597,7 @@ function network_content(&$a, $update = 0) { $o = replace_macros(get_markup_template("viewcontact_template.tpl"),array( 'contacts' => $entries, + 'id' => 'network', )) . $o; if($r[0]['network'] === NETWORK_OSTATUS && $r[0]['writable'] && (! get_pconfig(local_user(),'system','nowarn_insecure'))) { diff --git a/view/templates/viewcontact_template.tpl b/view/templates/viewcontact_template.tpl index 455551c680..205ad736d5 100644 --- a/view/templates/viewcontact_template.tpl +++ b/view/templates/viewcontact_template.tpl @@ -1,9 +1,11 @@ {{include file="section_title.tpl"}} +
    {{foreach $contacts as $contact}} {{include file="contact_template.tpl"}} {{/foreach}} +
    diff --git a/view/theme/duepuntozero/deriv/darkzero.css b/view/theme/duepuntozero/deriv/darkzero.css index fe2ad73cf2..908574f706 100644 --- a/view/theme/duepuntozero/deriv/darkzero.css +++ b/view/theme/duepuntozero/deriv/darkzero.css @@ -20,6 +20,9 @@ div.wall-item-content-wrapper.shiny { background-image: url('ingdarkzero/shiny. nav #banner #logo-text a { color: #ffffff; } +/* Contact-Header for the Network Stream */ +#viewcontact_wrapper-network {background-image: url('imgdarkzero/head.jpg');} + .wall-item-content-wrapper { border: 1px solid #444444; background: #444444; diff --git a/view/theme/duepuntozero/deriv/easterbunny.css b/view/theme/duepuntozero/deriv/easterbunny.css index 0619644eaf..34bf58f460 100644 --- a/view/theme/duepuntozero/deriv/easterbunny.css +++ b/view/theme/duepuntozero/deriv/easterbunny.css @@ -25,8 +25,10 @@ section { background: #EEFFFF; } a, a:visited { color: #0000FF; text-decoration: none; } a:hover {text-decoration: underline; } +/* Contact-Header for the Network Stream */ +#viewcontact_wrapper-network { background: #FFDDFF; } -aside( background-image: url('imgeasterbunny/border.jpg'); } +aside { background-image: url('imgeasterbunny/border.jpg'); } .tabs { background-image: url('imgeasterbunny/head.jpg'); } div.wall-item-content-wrapper.shiny { background-image: url('imgeasterbunny/shiny.png'); } diff --git a/view/theme/duepuntozero/deriv/greenzero.css b/view/theme/duepuntozero/deriv/greenzero.css index 0f6f7881ed..d446a61611 100644 --- a/view/theme/duepuntozero/deriv/greenzero.css +++ b/view/theme/duepuntozero/deriv/greenzero.css @@ -21,6 +21,7 @@ body { background-image: url('imggreenzero/head.jpg'); } aside { background-image: url('imggreenzero/border.jpg'); } section { background-image: url('imggreenzero/border.jpg'); } .tabs { background-image: url('imggreenzero/head.jpg'); } +#viewcontact_wrapper-network { background: #DBEAD7; } div.wall-item-content-wrapper.shiny { background-image: url('imggreenzero/shiny.png'); } .fakelink, .fakelink:visited, .fakelink:hover, .fakelink:link { diff --git a/view/theme/duepuntozero/deriv/purplezero.css b/view/theme/duepuntozero/deriv/purplezero.css index d59cf5dcab..2971857683 100644 --- a/view/theme/duepuntozero/deriv/purplezero.css +++ b/view/theme/duepuntozero/deriv/purplezero.css @@ -3,8 +3,9 @@ a:hover {text-decoration: underline; } body { background-image: url('imgpurplezero/head.jpg'); } -aside( background-image: url('imgpurplezero/border.jpg'); } +aside { background-image: url('imgpurplezero/border.jpg'); } section { background-image: url('imgpurplezero/border.jpg'); } +#viewcontact_wrapper-network { background: #ECCAEB; } .tabs { background-image: url('imgpurplezero/head.jpg'); } div.wall-item-content-wrapper.shiny { background-image: url('imgpurplezero/shiny.png'); } diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 255a1d089a..83f131af60 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -277,6 +277,31 @@ div.wall-item-content-wrapper.shiny { margin: 15px 0 15px 150px; } +/* Contact-Header for the Network Stream */ +#viewcontact_wrapper-network { + width: 100%; + min-height: 100px; + background-color: #DBE6F1; + border-bottom: 1px solid #babdb6; +} +#contact-entry-wrapper-network { + float: none; + width: auto; + height: auto; + padding: 10px; + margin: 0px +} +#contact-entry-accounttype-network { + font-size: 20px; +} +#contact-entry-name-network { + font-size: 24.5px; +} +/*#contact-entry-name-network>.contact-entry-details, #contact-entry-url-network, +#contact-entry-details-network, contact-entry-network-network { + color: #000; +}*/ + /* from default */ #jot-perms-icon, #profile-location, diff --git a/view/theme/frost-mobile/style.css b/view/theme/frost-mobile/style.css index 4485c056ff..c41c2aa27c 100644 --- a/view/theme/frost-mobile/style.css +++ b/view/theme/frost-mobile/style.css @@ -421,6 +421,27 @@ section { clear: both; } +/* Contact-Header for the Network Stream */ +#viewcontact_wrapper-network { + width: 100%; + min-height: 100px; + background-color: #FAFAFA; + border: 1px solid #DDDDDD; + border-radius: 5px; +} +#contact-entry-wrapper-network { + float: none; + width: auto; + height: auto; + padding: 10px; + margin: 0; +} +#contact-entry-accounttype-network { + font-size: 0.9em; +} +#contact-entry-name-network { + font-size: 1.5em; +} /* footer */ footer { diff --git a/view/theme/frost/style.css b/view/theme/frost/style.css index 24fe47559a..3bfca31ee4 100644 --- a/view/theme/frost/style.css +++ b/view/theme/frost/style.css @@ -383,6 +383,27 @@ section { padding-top: 3em; } +/* Contact-Header for the Network Stream */ +#viewcontact_wrapper-network { + width: 100%; + min-height: 100px; + background-color: #FAFAFA; + border: 1px solid #DDDDDD; + border-radius: 5px; +} +#contact-entry-wrapper-network { + float: none; + width: auto; + height: auto; + padding: 10px; + margin: 0; +} +#contact-entry-accounttype-network { + font-size: 0.9em; +} +#contact-entry-name-network { + font-size: 1.5em; +} /* footer */ footer { diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index 25102ba31d..5792c09e6d 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -791,6 +791,29 @@ ul.menu-popup .toolbar a:hover { color: #9eabb0; display: block; } +/* Contact-Header for the Network Stream */ +#viewcontact_wrapper-network { + width: 100%; + min-height: 100px; + background-color: #eff0f1; + border-bottom: 1px solid #cccccc; +} +#viewcontact_wrapper-network #contact-entry-wrapper-network { + float: none; + width: auto; + height: auto; + padding: 10px; +} +#viewcontact_wrapper-network #contact-entry-wrapper-network #contact-entry-accounttype-network { + font-size: 22px; +} +#viewcontact_wrapper-network #contact-entry-wrapper-network #contact-entry-name-network { + font-size: 24.5px; + font-weight: normal; +} +#viewcontact_wrapper-network #contact-entry-wrapper-network .contact-details { + font-size: 12px; +} /* aside 230px*/ aside { display: table-cell; diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index 78de886542..1aafb26710 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -791,6 +791,29 @@ ul.menu-popup .toolbar a:hover { color: #9eabb0; display: block; } +/* Contact-Header for the Network Stream */ +#viewcontact_wrapper-network { + width: 100%; + min-height: 100px; + background-color: #eff0f1; + border-bottom: 1px solid #cccccc; +} +#viewcontact_wrapper-network #contact-entry-wrapper-network { + float: none; + width: auto; + height: auto; + padding: 10px; +} +#viewcontact_wrapper-network #contact-entry-wrapper-network #contact-entry-accounttype-network { + font-size: 22px; +} +#viewcontact_wrapper-network #contact-entry-wrapper-network #contact-entry-name-network { + font-size: 24.5px; + font-weight: normal; +} +#viewcontact_wrapper-network #contact-entry-wrapper-network .contact-details { + font-size: 12px; +} /* aside 230px*/ aside { display: table-cell; diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index 1ca27b895c..089dd227ce 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -791,6 +791,29 @@ ul.menu-popup .toolbar a:hover { color: #9eabb0; display: block; } +/* Contact-Header for the Network Stream */ +#viewcontact_wrapper-network { + width: 100%; + min-height: 100px; + background-color: #eff0f1; + border-bottom: 1px solid #cccccc; +} +#viewcontact_wrapper-network #contact-entry-wrapper-network { + float: none; + width: auto; + height: auto; + padding: 10px; +} +#viewcontact_wrapper-network #contact-entry-wrapper-network #contact-entry-accounttype-network { + font-size: 22px; +} +#viewcontact_wrapper-network #contact-entry-wrapper-network #contact-entry-name-network { + font-size: 24.5px; + font-weight: normal; +} +#viewcontact_wrapper-network #contact-entry-wrapper-network .contact-details { + font-size: 12px; +} /* aside 230px*/ aside { display: table-cell; diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index db1f42d769..3fa74de36e 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -301,7 +301,22 @@ ul.menu-popup { .notif-when { font-size: 10px; color: @MenuItemDetail; display: block; } } - +/* Contact-Header for the Network Stream */ +#viewcontact_wrapper-network { + width: 100%; + min-height: 100px; + background-color: #eff0f1; + border-bottom: 1px solid #cccccc; + #contact-entry-wrapper-network { + float: none; + width: auto; + height: auto; + padding: 10px; + #contact-entry-accounttype-network { font-size: 22px; } + #contact-entry-name-network { font-size: 24.5px; font-weight: normal; } + .contact-details { font-size: 12px; } + } +} /* aside 230px*/ diff --git a/view/theme/smoothly/style.css b/view/theme/smoothly/style.css index 3b6b73dc6e..f68fd45f96 100644 --- a/view/theme/smoothly/style.css +++ b/view/theme/smoothly/style.css @@ -149,6 +149,30 @@ section { padding-bottom: 2em; } +/* Contact-Header for the Network Stream */ +#viewcontact_wrapper-network { + width: 100%; + min-height: 110px; + background-color: #FAFAFA; + box-shadow: 0 0 8px #BDBDBD; + border-bottom: 1px solid #dedede; + border: 1px solid #7C7D7B; + border-radius: 5px; +} +#contact-entry-wrapper-network { + float: none; + width: auto; + height: auto; + padding: 10px; + margin: 0; +} +#contact-entry-accounttype-network { + font-size: 20px; +} +#contact-entry-name-network { + font-size: 24.5px; +} + .lframe { border: 1px solid #7C7D7B; box-shadow: 3px 3px 6px #959494; diff --git a/view/theme/vier/breathe.css b/view/theme/vier/breathe.css index 049c1bf4b6..5a36de03e0 100644 --- a/view/theme/vier/breathe.css +++ b/view/theme/vier/breathe.css @@ -122,3 +122,7 @@ div.pager, ul.tabs { .mail-list-wrapper { border-radius: 5px; } + +#viewcontact_wrapper-network { + border-radius: 5px; +} diff --git a/view/theme/vier/dark.css b/view/theme/vier/dark.css index 01045b6ff4..8e128ae27f 100644 --- a/view/theme/vier/dark.css +++ b/view/theme/vier/dark.css @@ -57,5 +57,9 @@ input#side-peoplefind-submit, input#side-follow-submit { } li :hover { - color: #767676 !important; + color: #767676 !important; +} + +#viewcontact_wrapper-network { + background-color: #343434; } diff --git a/view/theme/vier/flat.css b/view/theme/vier/flat.css index a00d19c39c..03e18f1070 100644 --- a/view/theme/vier/flat.css +++ b/view/theme/vier/flat.css @@ -16,3 +16,8 @@ aside { right_aside { border-left: 1px solid #D2D2D2; } + +#viewcontact_wrapper-network { + background-color: #FFF; + border-bottom: 1px solid #D2D2D2; +} \ No newline at end of file diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index d4da5e2d6c..a62f9e80c6 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -1199,14 +1199,20 @@ section.minimal { height: 100%; } -#contact-entry-wrapper-network { - float: none; +/* Contact-Header for the Network Stream */ +#viewcontact_wrapper-network { width: 100%; + min-height: 100px; background-color: #FAFAFA; box-shadow: 1px 2px 0px 0px #D8D8D8; border-bottom: 1px solid #D2D2D2; - padding: 10px 10px 0 10px; - width: 745px; +} +#contact-entry-wrapper-network { + float: none; + width: auto; + height: auto; + padding: 10px; + margin: 0; } #contact-entry-accounttype-network { font-size: 20px; @@ -1214,6 +1220,10 @@ section.minimal { #contact-entry-name-network { font-size: 24.5px; } +.contact-entry-photo img { + border-radius: 4px; +} + /* wall item */ .tread-wrapper { /* border-bottom: 1px solid #BDCDD4; */ From 45c2a4868efbf8f457914f87bee8553cc28fa77f Mon Sep 17 00:00:00 2001 From: rabuzarus Date: Mon, 30 Nov 2015 03:25:23 +0100 Subject: [PATCH 354/443] make viewcontacts part of the profile tab --- include/identity.php | 10 ++++++++++ mod/viewcontacts.php | 24 ++++++++++++++++++++++-- 2 files changed, 32 insertions(+), 2 deletions(-) diff --git a/include/identity.php b/include/identity.php index 48fd5056dc..8abcce27c6 100644 --- a/include/identity.php +++ b/include/identity.php @@ -700,6 +700,16 @@ if(! function_exists('profile_tabs')){ ); } + if ((! $is_owner) && ((count($a->profile)) || (! $a->profile['hide-friends']))) { + $tabs[] = array( + 'label' => t('Contacts'), + 'url' => $a->get_baseurl() . '/viewcontacts/' . $nickname, + 'sel' => ((!isset($tab)&&$a->argv[0]=='viewcontacts')?'active':''), + 'title' => t('Contacts'), + 'id' => 'viewcontacts-tab', + 'accesskey' => 's', + ); + } $arr = array('is_owner' => $is_owner, 'nickname' => $nickname, 'tab' => (($tab) ? $tab : false), 'tabs' => $tabs); call_hooks('profile_tabs', $arr); diff --git a/mod/viewcontacts.php b/mod/viewcontacts.php index d16a48e349..04520e0d93 100644 --- a/mod/viewcontacts.php +++ b/mod/viewcontacts.php @@ -8,7 +8,23 @@ function viewcontacts_init(&$a) { return; } - profile_load($a,$a->argv[1]); + nav_set_selected('home'); + + if($a->argc > 1) { + $nick = $a->argv[1]; + $r = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `blocked` = 0 LIMIT 1", + dbesc($nick) + ); + + if(! count($r)) + return; + + $a->data['user'] = $r[0]; + $a->profile_uid = $r[0]['uid']; + $is_owner = (local_user() && (local_user() == $a->profile_uid)); + + profile_load($a,$a->argv[1]); + } } @@ -25,6 +41,10 @@ function viewcontacts_content(&$a) { return; } + $o = ""; + + // tabs + $o .= profile_tabs($a,$is_owner, $a->data['user']['nickname']); $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0 @@ -93,7 +113,7 @@ function viewcontacts_content(&$a) { $tpl = get_markup_template("viewcontact_template.tpl"); $o .= replace_macros($tpl, array( - '$title' => t('View Contacts'), + '$title' => t('Contacts'), '$contacts' => $contacts, '$paginate' => paginate($a), )); From 8c35304013dad110a240978ef21f6e1d0ee3e06d Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 30 Nov 2015 08:25:11 +0100 Subject: [PATCH 355/443] Some SQL improvements --- mod/contacts.php | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/mod/contacts.php b/mod/contacts.php index 48d9c87e83..0c0b88a823 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -881,17 +881,20 @@ function contact_posts($a, $contact_id) { profile_load($a, "", 0, get_contact_details_by_url($contact["url"])); } - $r = q("SELECT COUNT(*) AS `total` FROM `item` - WHERE `item`.`uid` = %d AND `contact-id` = %d AND `item`.`id` = `item`.`parent`", - intval(local_user()), intval($contact_id)); + if(get_config('system', 'old_pager')) { + $r = q("SELECT COUNT(*) AS `total` FROM `item` + WHERE `item`.`uid` = %d AND (`author-link` = '%s')", + intval(local_user()), dbesc($contact["url"])); - $a->set_pager_total($r[0]['total']); + $a->set_pager_total($r[0]['total']); + } $r = q("SELECT `item`.`uri`, `item`.*, `item`.`id` AS `item_id`, `author-name` AS `name`, `owner-avatar` AS `photo`, `owner-link` AS `url`, `owner-avatar` AS `thumb` - FROM `item` WHERE `item`.`uid` = %d AND `contact-id` = %d - AND ((`item`.`id` = `item`.`parent`) OR (`author-link` = '%s')) + FROM `item` FORCE INDEX (uid_contactid_created) + WHERE `item`.`uid` = %d AND `contact-id` = %d + AND (`author-link` = '%s') ORDER BY `item`.`created` DESC LIMIT %d, %d", intval(local_user()), intval($contact_id), @@ -900,8 +903,6 @@ function contact_posts($a, $contact_id) { intval($a->pager['itemspage']) ); - - $tab_str = contact_tabs($a, $contact_id, 1); $header = $contact["name"]; From 50c004aa5ff14a4d65fd57e4ca8231de3546b569 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 30 Nov 2015 13:16:23 +0100 Subject: [PATCH 356/443] regenerated credits.txt --- util/credits.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/util/credits.txt b/util/credits.txt index d31c741d53..a0890ef3d9 100644 --- a/util/credits.txt +++ b/util/credits.txt @@ -6,6 +6,7 @@ Alex Alexander Kampmann AlfredSK Andi Stadler +Andreas H. André Lohan Anthronaut Arian - Cazare Muncitori @@ -114,6 +115,7 @@ Rabuzarus Radek Rafael Rainulf Pineda +Ralph rcmaniac rebeka-catalina repat From 6da6504738e29decf3129b1f7f0f9271a4fc1bc1 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 30 Nov 2015 13:16:46 +0100 Subject: [PATCH 357/443] regenerated master messages.po file --- util/messages.po | 1647 ++++++++++++++++++++++++---------------------- 1 file changed, 870 insertions(+), 777 deletions(-) diff --git a/util/messages.po b/util/messages.po index 5388b94daf..7dcd971931 100644 --- a/util/messages.po +++ b/util/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-08 21:46+0100\n" +"POT-Creation-Date: 2015-11-30 13:14+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -37,13 +37,13 @@ msgstr "" msgid "Contact updated." msgstr "" -#: mod/contacts.php:198 mod/dfrn_request.php:576 +#: mod/contacts.php:198 mod/dfrn_request.php:578 msgid "Failed to update contact record." msgstr "" #: mod/contacts.php:354 mod/manage.php:96 mod/display.php:496 -#: mod/profile_photo.php:19 mod/profile_photo.php:169 mod/profile_photo.php:180 -#: mod/profile_photo.php:193 mod/ostatus_subscribe.php:9 mod/follow.php:10 +#: 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:10 #: mod/follow.php:72 mod/follow.php:137 mod/item.php:169 mod/item.php:185 #: 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:24 @@ -58,7 +58,7 @@ msgstr "" #: 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:163 mod/photos.php:1097 #: mod/regmod.php:110 mod/uimport.php:23 mod/attach.php:33 -#: include/items.php:5103 index.php:382 +#: include/items.php:5041 index.php:382 msgid "Permission denied." msgstr "" @@ -86,7 +86,7 @@ msgstr "" msgid "Contact has been unarchived" msgstr "" -#: mod/contacts.php:443 mod/contacts.php:816 +#: mod/contacts.php:443 mod/contacts.php:817 msgid "Do you really want to delete this contact?" msgstr "" @@ -95,18 +95,18 @@ msgstr "" #: mod/settings.php:1109 mod/settings.php:1114 mod/settings.php:1120 #: mod/settings.php:1126 mod/settings.php:1132 mod/settings.php:1158 #: mod/settings.php:1159 mod/settings.php:1160 mod/settings.php:1161 -#: mod/settings.php:1162 mod/dfrn_request.php:848 mod/register.php:235 +#: mod/settings.php:1162 mod/dfrn_request.php:850 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:4935 +#: mod/profiles.php:687 mod/api.php:105 include/items.php:4873 msgid "Yes" msgstr "" #: mod/contacts.php:448 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:116 #: mod/videos.php:123 mod/message.php:219 mod/fbrowser.php:93 #: mod/fbrowser.php:128 mod/settings.php:649 mod/settings.php:675 -#: mod/dfrn_request.php:862 mod/suggest.php:32 mod/editpost.php:147 +#: mod/dfrn_request.php:864 mod/suggest.php:32 mod/editpost.php:147 #: mod/photos.php:239 mod/photos.php:328 include/conversation.php:1221 -#: include/items.php:4938 +#: include/items.php:4876 msgid "Cancel" msgstr "" @@ -133,7 +133,7 @@ msgstr "" msgid "Private communications are not available for this contact." msgstr "" -#: mod/contacts.php:530 mod/admin.php:643 +#: mod/contacts.php:530 mod/admin.php:645 msgid "Never" msgstr "" @@ -154,7 +154,7 @@ msgstr "" msgid "Network type: %s" msgstr "" -#: mod/contacts.php:543 include/contact_widgets.php:200 +#: mod/contacts.php:543 include/contact_widgets.php:237 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" @@ -165,13 +165,13 @@ msgstr[1] "" msgid "View all contacts" msgstr "" -#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:820 -#: mod/admin.php:1114 +#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:821 +#: mod/admin.php:1117 msgid "Unblock" msgstr "" -#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:820 -#: mod/admin.php:1113 +#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:821 +#: mod/admin.php:1116 msgid "Block" msgstr "" @@ -179,11 +179,11 @@ msgstr "" msgid "Toggle Blocked status" msgstr "" -#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:821 +#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:822 msgid "Unignore" msgstr "" -#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:821 +#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:822 #: mod/notifications.php:54 mod/notifications.php:179 mod/notifications.php:259 msgid "Ignore" msgstr "" @@ -192,11 +192,11 @@ msgstr "" msgid "Toggle Ignored status" msgstr "" -#: mod/contacts.php:570 mod/contacts.php:822 +#: mod/contacts.php:570 mod/contacts.php:823 msgid "Unarchive" msgstr "" -#: mod/contacts.php:570 mod/contacts.php:822 +#: mod/contacts.php:570 mod/contacts.php:823 msgid "Archive" msgstr "" @@ -220,7 +220,7 @@ msgstr "" msgid "Fetch further information for feeds" msgstr "" -#: mod/contacts.php:593 mod/admin.php:652 +#: mod/contacts.php:593 mod/admin.php:654 msgid "Disabled" msgstr "" @@ -236,17 +236,17 @@ msgstr "" msgid "Contact Editor" msgstr "" -#: mod/contacts.php:608 mod/manage.php:124 mod/fsuggest.php:107 +#: mod/contacts.php:608 mod/manage.php:143 mod/fsuggest.php:107 #: mod/message.php:342 mod/message.php:525 mod/crepair.php:195 -#: mod/events.php:574 mod/content.php:712 mod/install.php:253 -#: mod/install.php:291 mod/mood.php:137 mod/profiles.php:696 +#: 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:1129 #: mod/photos.php:1253 mod/photos.php:1571 mod/photos.php:1622 #: mod/photos.php:1670 mod/photos.php:1758 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 +#: view/theme/diabook/theme.php:633 view/theme/clean/config.php:83 +#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59 msgid "Submit" msgstr "" @@ -269,7 +269,7 @@ msgstr "" msgid "Edit contact notes" msgstr "" -#: mod/contacts.php:617 mod/contacts.php:860 mod/viewcontacts.php:66 +#: mod/contacts.php:617 mod/contacts.php:861 mod/viewcontacts.php:77 #: mod/nogroup.php:41 #, php-format msgid "Visit %s's profile [%s]" @@ -303,13 +303,13 @@ msgstr "" msgid "Update public posts" msgstr "" -#: mod/contacts.php:631 mod/admin.php:1650 +#: mod/contacts.php:631 mod/admin.php:1653 msgid "Update now" msgstr "" #: mod/contacts.php:633 mod/dirfind.php:190 mod/allfriends.php:67 #: mod/match.php:71 mod/suggest.php:82 include/contact_widgets.php:32 -#: include/conversation.php:924 +#: include/Contact.php:321 include/conversation.php:924 msgid "Connect/Follow" msgstr "" @@ -412,46 +412,46 @@ msgstr "" msgid "Only show hidden contacts" msgstr "" -#: mod/contacts.php:807 include/text.php:1005 include/nav.php:123 +#: mod/contacts.php:808 include/text.php:1012 include/nav.php:123 #: include/nav.php:187 view/theme/diabook/theme.php:125 msgid "Contacts" msgstr "" -#: mod/contacts.php:811 +#: mod/contacts.php:812 msgid "Search your contacts" msgstr "" -#: mod/contacts.php:812 +#: mod/contacts.php:813 msgid "Finding: " msgstr "" -#: mod/contacts.php:813 mod/directory.php:202 include/contact_widgets.php:34 +#: mod/contacts.php:814 mod/directory.php:202 include/contact_widgets.php:34 msgid "Find" msgstr "" -#: mod/contacts.php:819 mod/settings.php:146 mod/settings.php:674 +#: mod/contacts.php:820 mod/settings.php:146 mod/settings.php:674 msgid "Update" msgstr "" -#: mod/contacts.php:823 mod/group.php:171 mod/admin.php:1112 +#: mod/contacts.php:824 mod/group.php:171 mod/admin.php:1115 #: mod/content.php:440 mod/content.php:743 mod/settings.php:711 #: mod/photos.php:1715 object/Item.php:134 include/conversation.php:635 msgid "Delete" msgstr "" -#: mod/contacts.php:836 +#: mod/contacts.php:837 msgid "Mutual Friendship" msgstr "" -#: mod/contacts.php:840 +#: mod/contacts.php:841 msgid "is a fan of yours" msgstr "" -#: mod/contacts.php:844 +#: mod/contacts.php:845 msgid "you are a fan of" msgstr "" -#: mod/contacts.php:861 mod/nogroup.php:42 +#: mod/contacts.php:862 mod/nogroup.php:42 msgid "Edit contact" msgstr "" @@ -459,17 +459,17 @@ msgstr "" msgid "No profile" msgstr "" -#: mod/manage.php:120 +#: mod/manage.php:139 msgid "Manage Identities and/or Pages" msgstr "" -#: mod/manage.php:121 +#: 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:122 +#: mod/manage.php:141 msgid "Select an identity to manage: " msgstr "" @@ -489,8 +489,8 @@ msgstr "" msgid "Profile Visibility Editor" msgstr "" -#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:530 -#: include/identity.php:611 include/identity.php:641 include/nav.php:76 +#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:542 +#: include/identity.php:628 include/identity.php:658 include/nav.php:76 #: view/theme/diabook/theme.php:124 msgid "Profile" msgstr "" @@ -508,13 +508,13 @@ msgid "All Contacts (with secure profile access)" msgstr "" #: mod/display.php:82 mod/display.php:283 mod/display.php:500 -#: mod/viewsrc.php:15 mod/admin.php:196 mod/admin.php:1157 mod/admin.php:1378 -#: mod/notice.php:15 include/items.php:4894 +#: mod/viewsrc.php:15 mod/admin.php:196 mod/admin.php:1160 mod/admin.php:1381 +#: mod/notice.php:15 include/items.php:4832 msgid "Item not found." msgstr "" #: mod/display.php:211 mod/videos.php:189 mod/viewcontacts.php:19 -#: mod/community.php:18 mod/dfrn_request.php:777 mod/search.php:93 +#: mod/community.php:18 mod/dfrn_request.php:779 mod/search.php:93 #: mod/search.php:99 mod/directory.php:37 mod/photos.php:968 msgid "Public access denied." msgstr "" @@ -558,7 +558,7 @@ msgid "" "join." msgstr "" -#: mod/newmember.php:22 mod/admin.php:1209 mod/admin.php:1454 +#: mod/newmember.php:22 mod/admin.php:1212 mod/admin.php:1457 #: mod/settings.php:99 include/nav.php:182 view/theme/diabook/theme.php:544 #: view/theme/diabook/theme.php:648 msgid "Settings" @@ -583,7 +583,7 @@ msgid "" "potential friends know exactly how to find you." msgstr "" -#: mod/newmember.php:36 mod/profile_photo.php:244 mod/profiles.php:709 +#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:709 msgid "Upload Profile Photo" msgstr "" @@ -682,7 +682,7 @@ msgid "" "hours." msgstr "" -#: mod/newmember.php:66 include/group.php:272 +#: mod/newmember.php:66 include/group.php:283 msgid "Groups" msgstr "" @@ -740,86 +740,86 @@ 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:70 mod/photos.php:184 +#: mod/profile_photo.php:210 mod/profile_photo.php:302 +#: mod/profile_photo.php:311 mod/photos.php:70 mod/photos.php:184 #: mod/photos.php:767 mod/photos.php:1237 mod/photos.php:1260 -#: mod/photos.php:1854 include/user.php:343 include/user.php:350 -#: include/user.php:357 view/theme/diabook/theme.php:500 +#: mod/photos.php:1854 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:308 +#: mod/profile_photo.php:314 #, php-format msgid "Image size reduction [%s] failed." msgstr "" -#: mod/profile_photo.php:118 +#: 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:128 +#: mod/profile_photo.php:134 msgid "Unable to process image" msgstr "" -#: mod/profile_photo.php:144 mod/wall_upload.php:151 mod/photos.php:803 +#: mod/profile_photo.php:150 mod/wall_upload.php:151 mod/photos.php:803 #, php-format msgid "Image exceeds size limit of %s" msgstr "" -#: mod/profile_photo.php:153 mod/wall_upload.php:183 mod/photos.php:843 +#: mod/profile_photo.php:159 mod/wall_upload.php:183 mod/photos.php:843 msgid "Unable to process image." msgstr "" -#: mod/profile_photo.php:242 +#: mod/profile_photo.php:248 msgid "Upload File:" msgstr "" -#: mod/profile_photo.php:243 +#: mod/profile_photo.php:249 msgid "Select a profile:" msgstr "" -#: mod/profile_photo.php:245 +#: mod/profile_photo.php:251 msgid "Upload" msgstr "" -#: mod/profile_photo.php:248 +#: mod/profile_photo.php:254 msgid "or" msgstr "" -#: mod/profile_photo.php:248 +#: mod/profile_photo.php:254 msgid "skip this step" msgstr "" -#: mod/profile_photo.php:248 +#: mod/profile_photo.php:254 msgid "select a photo from your photo albums" msgstr "" -#: mod/profile_photo.php:262 +#: mod/profile_photo.php:268 msgid "Crop Image" msgstr "" -#: mod/profile_photo.php:263 +#: mod/profile_photo.php:269 msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: mod/profile_photo.php:265 +#: mod/profile_photo.php:271 msgid "Done Editing" msgstr "" -#: mod/profile_photo.php:299 +#: mod/profile_photo.php:305 msgid "Image uploaded successfully." msgstr "" -#: mod/profile_photo.php:301 mod/wall_upload.php:216 mod/photos.php:870 +#: mod/profile_photo.php:307 mod/wall_upload.php:216 mod/photos.php:870 msgid "Image upload failed." msgstr "" #: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 #: include/conversation.php:130 include/conversation.php:266 -#: include/text.php:1988 include/diaspora.php:2140 +#: include/text.php:1995 include/diaspora.php:2140 #: view/theme/diabook/theme.php:471 msgid "photo" msgstr "" @@ -897,11 +897,11 @@ msgstr "" msgid "- select -" msgstr "" -#: mod/filer.php:31 mod/editpost.php:108 mod/notes.php:61 include/text.php:997 +#: mod/filer.php:31 mod/editpost.php:108 mod/notes.php:61 include/text.php:1004 msgid "Save" msgstr "" -#: mod/follow.php:18 mod/dfrn_request.php:861 +#: mod/follow.php:18 mod/dfrn_request.php:863 msgid "Submit Request" msgstr "" @@ -921,11 +921,11 @@ msgstr "" msgid "The network type couldn't be detected. Contact can't be added." msgstr "" -#: mod/follow.php:104 mod/dfrn_request.php:847 +#: mod/follow.php:104 mod/dfrn_request.php:849 msgid "Please answer the following:" msgstr "" -#: mod/follow.php:105 mod/dfrn_request.php:848 +#: mod/follow.php:105 mod/dfrn_request.php:850 #, php-format msgid "Does %s know you?" msgstr "" @@ -934,32 +934,32 @@ msgstr "" #: mod/settings.php:1105 mod/settings.php:1109 mod/settings.php:1114 #: mod/settings.php:1120 mod/settings.php:1126 mod/settings.php:1132 #: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160 -#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:848 -#: mod/register.php:236 mod/profiles.php:658 mod/profiles.php:662 +#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:850 +#: 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:106 mod/dfrn_request.php:852 +#: mod/follow.php:106 mod/dfrn_request.php:854 msgid "Add a personal note:" msgstr "" -#: mod/follow.php:112 mod/dfrn_request.php:858 +#: mod/follow.php:112 mod/dfrn_request.php:860 msgid "Your Identity Address:" msgstr "" #: mod/follow.php:125 mod/notifications.php:244 mod/events.php:566 -#: mod/directory.php:139 include/identity.php:268 include/bb2diaspora.php:170 +#: mod/directory.php:139 include/identity.php:278 include/bb2diaspora.php:170 #: include/event.php:36 include/event.php:60 msgid "Location:" msgstr "" #: mod/follow.php:127 mod/notifications.php:246 mod/directory.php:147 -#: include/identity.php:277 include/identity.php:582 +#: include/identity.php:287 include/identity.php:594 msgid "About:" msgstr "" -#: mod/follow.php:129 mod/notifications.php:248 include/identity.php:576 +#: mod/follow.php:129 mod/notifications.php:248 include/identity.php:588 msgid "Tags:" msgstr "" @@ -975,34 +975,34 @@ msgstr "" msgid "Empty post discarded." msgstr "" -#: mod/item.php:461 mod/wall_upload.php:213 mod/wall_upload.php:227 +#: mod/item.php:460 mod/wall_upload.php:213 mod/wall_upload.php:227 #: mod/wall_upload.php:234 include/Photo.php:954 include/Photo.php:969 #: include/Photo.php:976 include/Photo.php:998 include/message.php:145 msgid "Wall Photos" msgstr "" -#: mod/item.php:835 +#: mod/item.php:834 msgid "System error. Post not saved." msgstr "" -#: mod/item.php:964 +#: mod/item.php:963 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social network." msgstr "" -#: mod/item.php:966 +#: mod/item.php:965 #, php-format msgid "You may visit them online at %s" msgstr "" -#: mod/item.php:967 +#: mod/item.php:966 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "" -#: mod/item.php:971 +#: mod/item.php:970 #, php-format msgid "%s posted an update." msgstr "" @@ -1031,7 +1031,7 @@ msgstr "" msgid "Create a group of contacts/friends." msgstr "" -#: mod/group.php:94 mod/group.php:178 include/group.php:275 +#: mod/group.php:94 mod/group.php:178 include/group.php:289 msgid "Group Name: " msgstr "" @@ -1149,7 +1149,7 @@ msgstr "" msgid "Unable to update your contact profile details on our system" msgstr "" -#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:732 include/items.php:4313 +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:734 include/items.php:4244 msgid "[Name Withheld]" msgstr "" @@ -1158,7 +1158,7 @@ msgstr "" msgid "%1$s has joined %2$s" msgstr "" -#: mod/profile.php:21 include/identity.php:77 +#: mod/profile.php:21 include/identity.php:82 msgid "Requested profile is not available." msgstr "" @@ -1182,7 +1182,7 @@ msgstr "" msgid "Access to this item is restricted." msgstr "" -#: mod/videos.php:375 include/text.php:1458 +#: mod/videos.php:375 include/text.php:1465 msgid "View Video" msgstr "" @@ -1218,7 +1218,7 @@ msgstr "" #: 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:1702 +#: mod/wall_attach.php:25 mod/wall_attach.php:76 include/api.php:1711 msgid "Invalid request." msgstr "" @@ -1353,7 +1353,7 @@ msgid "Reset" msgstr "" #: mod/like.php:170 include/conversation.php:122 include/conversation.php:258 -#: include/text.php:1986 view/theme/diabook/theme.php:463 +#: include/text.php:1993 view/theme/diabook/theme.php:463 msgid "event" msgstr "" @@ -1383,23 +1383,28 @@ msgstr "" msgid "%1$s may attend %2$s's %3$s" msgstr "" -#: mod/ping.php:257 +#: mod/ping.php:273 msgid "{0} wants to be your friend" msgstr "" -#: mod/ping.php:272 +#: mod/ping.php:288 msgid "{0} sent you a message" msgstr "" -#: mod/ping.php:287 +#: mod/ping.php:303 msgid "{0} requested registration" msgstr "" -#: mod/viewcontacts.php:41 +#: mod/viewcontacts.php:52 msgid "No contacts." msgstr "" -#: mod/viewcontacts.php:83 include/text.php:917 +#: mod/viewcontacts.php:85 mod/dirfind.php:208 mod/network.php:596 +#: mod/allfriends.php:79 mod/match.php:82 mod/common.php:122 mod/suggest.php:95 +msgid "Forum" +msgstr "" + +#: mod/viewcontacts.php:96 include/text.php:921 msgid "View Contacts" msgstr "" @@ -1419,7 +1424,7 @@ msgstr "" msgid "Network" msgstr "" -#: mod/notifications.php:93 mod/network.php:385 +#: mod/notifications.php:93 mod/network.php:381 msgid "Personal" msgstr "" @@ -1461,7 +1466,7 @@ msgstr "" msgid "if applicable" msgstr "" -#: mod/notifications.php:176 mod/notifications.php:257 mod/admin.php:1110 +#: mod/notifications.php:176 mod/notifications.php:257 mod/admin.php:1113 msgid "Approve" msgstr "" @@ -1511,8 +1516,8 @@ msgstr "" msgid "New Follower" msgstr "" -#: mod/notifications.php:250 mod/directory.php:141 include/identity.php:270 -#: include/identity.php:541 +#: mod/notifications.php:250 mod/directory.php:141 include/identity.php:280 +#: include/identity.php:553 msgid "Gender:" msgstr "" @@ -1822,8 +1827,8 @@ msgstr "" msgid "Refetch contact data" msgstr "" -#: mod/crepair.php:169 mod/admin.php:1108 mod/admin.php:1120 mod/admin.php:1121 -#: mod/admin.php:1134 mod/settings.php:650 mod/settings.php:676 +#: mod/crepair.php:169 mod/admin.php:1111 mod/admin.php:1123 mod/admin.php:1124 +#: mod/admin.php:1137 mod/settings.php:650 mod/settings.php:676 msgid "Name" msgstr "" @@ -1885,27 +1890,28 @@ msgstr "" msgid "Access denied." msgstr "" -#: mod/dirfind.php:188 mod/allfriends.php:82 mod/match.php:84 -#: mod/suggest.php:97 include/contact_widgets.php:10 include/identity.php:188 +#: mod/dirfind.php:188 mod/allfriends.php:82 mod/match.php:85 +#: mod/suggest.php:98 include/contact_widgets.php:10 include/identity.php:193 msgid "Connect" msgstr "" #: mod/dirfind.php:189 mod/allfriends.php:66 mod/match.php:70 -#: mod/directory.php:156 mod/suggest.php:81 include/Contact.php:335 -#: include/conversation.php:912 include/conversation.php:926 +#: mod/directory.php:156 mod/suggest.php:81 include/Contact.php:307 +#: include/Contact.php:320 include/Contact.php:362 include/conversation.php:912 +#: include/conversation.php:926 msgid "View Profile" msgstr "" -#: mod/dirfind.php:217 +#: mod/dirfind.php:218 #, php-format msgid "People Search - %s" msgstr "" -#: mod/dirfind.php:224 mod/match.php:104 +#: mod/dirfind.php:225 mod/match.php:105 msgid "No matches" msgstr "" -#: mod/fbrowser.php:32 include/identity.php:649 include/nav.php:77 +#: mod/fbrowser.php:32 include/identity.php:666 include/nav.php:77 #: view/theme/diabook/theme.php:126 msgid "Photos" msgstr "" @@ -1928,19 +1934,19 @@ msgstr "" msgid "Theme settings updated." msgstr "" -#: mod/admin.php:127 mod/admin.php:709 +#: mod/admin.php:127 mod/admin.php:711 msgid "Site" msgstr "" -#: mod/admin.php:128 mod/admin.php:653 mod/admin.php:1103 mod/admin.php:1118 +#: mod/admin.php:128 mod/admin.php:655 mod/admin.php:1106 mod/admin.php:1121 msgid "Users" msgstr "" -#: mod/admin.php:129 mod/admin.php:1207 mod/admin.php:1267 mod/settings.php:66 +#: mod/admin.php:129 mod/admin.php:1210 mod/admin.php:1270 mod/settings.php:66 msgid "Plugins" msgstr "" -#: mod/admin.php:130 mod/admin.php:1452 mod/admin.php:1503 +#: mod/admin.php:130 mod/admin.php:1455 mod/admin.php:1506 msgid "Themes" msgstr "" @@ -1952,7 +1958,7 @@ msgstr "" msgid "Inspect Queue" msgstr "" -#: mod/admin.php:147 mod/admin.php:156 mod/admin.php:1591 +#: mod/admin.php:147 mod/admin.php:156 mod/admin.php:1594 msgid "Logs" msgstr "" @@ -1980,9 +1986,9 @@ msgstr "" msgid "User registrations waiting for confirmation" msgstr "" -#: mod/admin.php:222 mod/admin.php:272 mod/admin.php:708 mod/admin.php:1102 -#: mod/admin.php:1206 mod/admin.php:1266 mod/admin.php:1451 mod/admin.php:1502 -#: mod/admin.php:1590 +#: mod/admin.php:222 mod/admin.php:272 mod/admin.php:710 mod/admin.php:1105 +#: mod/admin.php:1209 mod/admin.php:1269 mod/admin.php:1454 mod/admin.php:1505 +#: mod/admin.php:1593 msgid "Administration" msgstr "" @@ -2013,19 +2019,19 @@ msgid "" "eventually deleted if the delivery fails permanently." msgstr "" -#: mod/admin.php:243 mod/admin.php:1056 +#: mod/admin.php:243 mod/admin.php:1059 msgid "Normal Account" msgstr "" -#: mod/admin.php:244 mod/admin.php:1057 +#: mod/admin.php:244 mod/admin.php:1060 msgid "Soapbox Account" msgstr "" -#: mod/admin.php:245 mod/admin.php:1058 +#: mod/admin.php:245 mod/admin.php:1061 msgid "Community/Celebrity Account" msgstr "" -#: mod/admin.php:246 mod/admin.php:1059 +#: mod/admin.php:246 mod/admin.php:1062 msgid "Automatic Friend Account" msgstr "" @@ -2065,615 +2071,625 @@ msgstr "" msgid "Can not parse base url. Must have at least ://" msgstr "" -#: mod/admin.php:585 +#: mod/admin.php:587 msgid "RINO2 needs mcrypt php extension to work." msgstr "" -#: mod/admin.php:593 +#: mod/admin.php:595 msgid "Site settings updated." msgstr "" -#: mod/admin.php:617 mod/settings.php:901 +#: mod/admin.php:619 mod/settings.php:901 msgid "No special theme for mobile devices" msgstr "" -#: mod/admin.php:636 +#: mod/admin.php:638 msgid "No community page" msgstr "" -#: mod/admin.php:637 +#: mod/admin.php:639 msgid "Public postings from users of this site" msgstr "" -#: mod/admin.php:638 +#: mod/admin.php:640 msgid "Global community page" msgstr "" -#: mod/admin.php:644 +#: mod/admin.php:646 msgid "At post arrival" msgstr "" -#: mod/admin.php:645 include/contact_selectors.php:56 +#: mod/admin.php:647 include/contact_selectors.php:56 msgid "Frequently" msgstr "" -#: mod/admin.php:646 include/contact_selectors.php:57 +#: mod/admin.php:648 include/contact_selectors.php:57 msgid "Hourly" msgstr "" -#: mod/admin.php:647 include/contact_selectors.php:58 +#: mod/admin.php:649 include/contact_selectors.php:58 msgid "Twice daily" msgstr "" -#: mod/admin.php:648 include/contact_selectors.php:59 +#: mod/admin.php:650 include/contact_selectors.php:59 msgid "Daily" msgstr "" -#: mod/admin.php:654 +#: mod/admin.php:656 msgid "Users, Global Contacts" msgstr "" -#: mod/admin.php:655 +#: mod/admin.php:657 msgid "Users, Global Contacts/fallback" msgstr "" -#: mod/admin.php:659 +#: mod/admin.php:661 msgid "One month" msgstr "" -#: mod/admin.php:660 +#: mod/admin.php:662 msgid "Three months" msgstr "" -#: mod/admin.php:661 +#: mod/admin.php:663 msgid "Half a year" msgstr "" -#: mod/admin.php:662 +#: mod/admin.php:664 msgid "One year" msgstr "" -#: mod/admin.php:667 +#: mod/admin.php:669 msgid "Multi user instance" msgstr "" -#: mod/admin.php:690 +#: mod/admin.php:692 msgid "Closed" msgstr "" -#: mod/admin.php:691 +#: mod/admin.php:693 msgid "Requires approval" msgstr "" -#: mod/admin.php:692 +#: mod/admin.php:694 msgid "Open" msgstr "" -#: mod/admin.php:696 +#: mod/admin.php:698 msgid "No SSL policy, links will track page SSL state" msgstr "" -#: mod/admin.php:697 +#: mod/admin.php:699 msgid "Force all links to use SSL" msgstr "" -#: mod/admin.php:698 +#: mod/admin.php:700 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "" -#: mod/admin.php:710 mod/admin.php:1268 mod/admin.php:1504 mod/admin.php:1592 +#: mod/admin.php:712 mod/admin.php:1271 mod/admin.php:1507 mod/admin.php:1595 #: mod/settings.php:648 mod/settings.php:758 mod/settings.php:802 #: mod/settings.php:871 mod/settings.php:957 mod/settings.php:1192 msgid "Save Settings" msgstr "" -#: mod/admin.php:711 mod/register.php:260 +#: mod/admin.php:713 mod/register.php:263 msgid "Registration" msgstr "" -#: mod/admin.php:712 +#: mod/admin.php:714 msgid "File upload" msgstr "" -#: mod/admin.php:713 +#: mod/admin.php:715 msgid "Policies" msgstr "" -#: mod/admin.php:714 +#: mod/admin.php:716 msgid "Advanced" msgstr "" -#: mod/admin.php:715 +#: mod/admin.php:717 msgid "Auto Discovered Contact Directory" msgstr "" -#: mod/admin.php:716 +#: mod/admin.php:718 msgid "Performance" msgstr "" -#: mod/admin.php:717 +#: mod/admin.php:719 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "" -#: mod/admin.php:720 +#: mod/admin.php:722 msgid "Site name" msgstr "" -#: mod/admin.php:721 +#: mod/admin.php:723 msgid "Host name" msgstr "" -#: mod/admin.php:722 +#: mod/admin.php:724 msgid "Sender Email" msgstr "" -#: mod/admin.php:722 +#: mod/admin.php:724 msgid "" "The email address your server shall use to send notification emails from." msgstr "" -#: mod/admin.php:723 +#: mod/admin.php:725 msgid "Banner/Logo" msgstr "" -#: mod/admin.php:724 +#: mod/admin.php:726 msgid "Shortcut icon" msgstr "" -#: mod/admin.php:724 +#: mod/admin.php:726 msgid "Link to an icon that will be used for browsers." msgstr "" -#: mod/admin.php:725 +#: mod/admin.php:727 msgid "Touch icon" msgstr "" -#: mod/admin.php:725 +#: mod/admin.php:727 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "" -#: mod/admin.php:726 +#: mod/admin.php:728 msgid "Additional Info" msgstr "" -#: mod/admin.php:726 +#: mod/admin.php:728 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/siteinfo." msgstr "" -#: mod/admin.php:727 +#: mod/admin.php:729 msgid "System language" msgstr "" -#: mod/admin.php:728 +#: mod/admin.php:730 msgid "System theme" msgstr "" -#: mod/admin.php:728 +#: mod/admin.php:730 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: mod/admin.php:729 +#: mod/admin.php:731 msgid "Mobile system theme" msgstr "" -#: mod/admin.php:729 +#: mod/admin.php:731 msgid "Theme for mobile devices" msgstr "" -#: mod/admin.php:730 +#: mod/admin.php:732 msgid "SSL link policy" msgstr "" -#: mod/admin.php:730 +#: mod/admin.php:732 msgid "Determines whether generated links should be forced to use SSL" msgstr "" -#: mod/admin.php:731 +#: mod/admin.php:733 msgid "Force SSL" msgstr "" -#: mod/admin.php:731 +#: mod/admin.php:733 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead " "to endless loops." msgstr "" -#: mod/admin.php:732 +#: mod/admin.php:734 msgid "Old style 'Share'" msgstr "" -#: mod/admin.php:732 +#: mod/admin.php:734 msgid "Deactivates the bbcode element 'share' for repeating items." msgstr "" -#: mod/admin.php:733 +#: mod/admin.php:735 msgid "Hide help entry from navigation menu" msgstr "" -#: mod/admin.php:733 +#: mod/admin.php:735 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:734 +#: mod/admin.php:736 msgid "Single user instance" msgstr "" -#: mod/admin.php:734 +#: mod/admin.php:736 msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: mod/admin.php:735 +#: mod/admin.php:737 msgid "Maximum image size" msgstr "" -#: mod/admin.php:735 +#: mod/admin.php:737 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "" -#: mod/admin.php:736 +#: mod/admin.php:738 msgid "Maximum image length" msgstr "" -#: mod/admin.php:736 +#: mod/admin.php:738 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "" -#: mod/admin.php:737 +#: mod/admin.php:739 msgid "JPEG image quality" msgstr "" -#: mod/admin.php:737 +#: mod/admin.php:739 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "" -#: mod/admin.php:739 +#: mod/admin.php:741 msgid "Register policy" msgstr "" -#: mod/admin.php:740 +#: mod/admin.php:742 msgid "Maximum Daily Registrations" msgstr "" -#: mod/admin.php:740 +#: mod/admin.php:742 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:741 +#: mod/admin.php:743 msgid "Register text" msgstr "" -#: mod/admin.php:741 +#: mod/admin.php:743 msgid "Will be displayed prominently on the registration page." msgstr "" -#: mod/admin.php:742 +#: mod/admin.php:744 msgid "Accounts abandoned after x days" msgstr "" -#: mod/admin.php:742 +#: mod/admin.php:744 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: mod/admin.php:743 +#: mod/admin.php:745 msgid "Allowed friend domains" msgstr "" -#: mod/admin.php:743 +#: mod/admin.php:745 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:744 +#: mod/admin.php:746 msgid "Allowed email domains" msgstr "" -#: mod/admin.php:744 +#: mod/admin.php:746 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:745 +#: mod/admin.php:747 msgid "Block public" msgstr "" -#: mod/admin.php:745 +#: mod/admin.php:747 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:746 +#: mod/admin.php:748 msgid "Force publish" msgstr "" -#: mod/admin.php:746 +#: mod/admin.php:748 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: mod/admin.php:747 +#: mod/admin.php:749 msgid "Global directory URL" msgstr "" -#: mod/admin.php:747 +#: mod/admin.php:749 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "" -#: mod/admin.php:748 +#: mod/admin.php:750 msgid "Allow threaded items" msgstr "" -#: mod/admin.php:748 +#: mod/admin.php:750 msgid "Allow infinite level threading for items on this site." msgstr "" -#: mod/admin.php:749 +#: mod/admin.php:751 msgid "Private posts by default for new users" msgstr "" -#: mod/admin.php:749 +#: mod/admin.php:751 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "" -#: mod/admin.php:750 +#: mod/admin.php:752 msgid "Don't include post content in email notifications" msgstr "" -#: mod/admin.php:750 +#: mod/admin.php:752 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:751 +#: mod/admin.php:753 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: mod/admin.php:751 +#: mod/admin.php:753 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: mod/admin.php:752 +#: mod/admin.php:754 msgid "Don't embed private images in posts" msgstr "" -#: mod/admin.php:752 +#: mod/admin.php:754 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:753 +#: mod/admin.php:755 msgid "Allow Users to set remote_self" msgstr "" -#: mod/admin.php:753 +#: mod/admin.php:755 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:754 +#: mod/admin.php:756 msgid "Block multiple registrations" msgstr "" -#: mod/admin.php:754 +#: mod/admin.php:756 msgid "Disallow users to register additional accounts for use as pages." msgstr "" -#: mod/admin.php:755 +#: mod/admin.php:757 msgid "OpenID support" msgstr "" -#: mod/admin.php:755 +#: mod/admin.php:757 msgid "OpenID support for registration and logins." msgstr "" -#: mod/admin.php:756 +#: mod/admin.php:758 msgid "Fullname check" msgstr "" -#: mod/admin.php:756 +#: mod/admin.php:758 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "" -#: mod/admin.php:757 +#: mod/admin.php:759 msgid "UTF-8 Regular expressions" msgstr "" -#: mod/admin.php:757 +#: mod/admin.php:759 msgid "Use PHP UTF8 regular expressions" msgstr "" -#: mod/admin.php:758 +#: mod/admin.php:760 msgid "Community Page Style" msgstr "" -#: mod/admin.php:758 +#: mod/admin.php:760 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:759 +#: mod/admin.php:761 msgid "Posts per user on community page" msgstr "" -#: mod/admin.php:759 +#: mod/admin.php:761 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" msgstr "" -#: mod/admin.php:760 +#: mod/admin.php:762 msgid "Enable OStatus support" msgstr "" -#: mod/admin.php:760 +#: mod/admin.php:762 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:761 +#: mod/admin.php:763 msgid "OStatus conversation completion interval" msgstr "" -#: mod/admin.php:761 +#: mod/admin.php:763 msgid "" "How often shall the poller check for new entries in OStatus conversations? " "This can be a very ressource task." msgstr "" -#: mod/admin.php:762 +#: mod/admin.php:764 msgid "OStatus support can only be enabled if threading is enabled." msgstr "" -#: mod/admin.php:764 +#: mod/admin.php:766 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub " "directory." msgstr "" -#: mod/admin.php:765 +#: mod/admin.php:767 msgid "Enable Diaspora support" msgstr "" -#: mod/admin.php:765 +#: mod/admin.php:767 msgid "Provide built-in Diaspora network compatibility." msgstr "" -#: mod/admin.php:766 +#: mod/admin.php:768 msgid "Only allow Friendica contacts" msgstr "" -#: mod/admin.php:766 +#: mod/admin.php:768 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "" -#: mod/admin.php:767 +#: mod/admin.php:769 msgid "Verify SSL" msgstr "" -#: mod/admin.php:767 +#: mod/admin.php:769 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:768 +#: mod/admin.php:770 msgid "Proxy user" msgstr "" -#: mod/admin.php:769 +#: mod/admin.php:771 msgid "Proxy URL" msgstr "" -#: mod/admin.php:770 +#: mod/admin.php:772 msgid "Network timeout" msgstr "" -#: mod/admin.php:770 +#: mod/admin.php:772 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: mod/admin.php:771 +#: mod/admin.php:773 msgid "Delivery interval" msgstr "" -#: mod/admin.php:771 +#: mod/admin.php:773 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:772 +#: mod/admin.php:774 msgid "Poll interval" msgstr "" -#: mod/admin.php:772 +#: mod/admin.php:774 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "" -#: mod/admin.php:773 +#: mod/admin.php:775 msgid "Maximum Load Average" msgstr "" -#: mod/admin.php:773 +#: mod/admin.php:775 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "" -#: mod/admin.php:774 +#: mod/admin.php:776 msgid "Maximum Load Average (Frontend)" msgstr "" -#: mod/admin.php:774 +#: mod/admin.php:776 msgid "Maximum system load before the frontend quits service - default 50." msgstr "" -#: mod/admin.php:776 +#: mod/admin.php:777 +msgid "Maximum table size for optimization" +msgstr "" + +#: mod/admin.php:777 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "" + +#: mod/admin.php:779 msgid "Periodical check of global contacts" msgstr "" -#: mod/admin.php:776 +#: mod/admin.php:779 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:777 +#: mod/admin.php:780 msgid "Days between requery" msgstr "" -#: mod/admin.php:777 +#: mod/admin.php:780 msgid "Number of days after which a server is requeried for his contacts." msgstr "" -#: mod/admin.php:778 +#: mod/admin.php:781 msgid "Discover contacts from other servers" msgstr "" -#: mod/admin.php:778 +#: mod/admin.php:781 msgid "" "Periodically query other servers for contacts. You can choose between " "'users': the users on the remote system, 'Global Contacts': active contacts " @@ -2683,32 +2699,32 @@ msgid "" "Global Contacts'." msgstr "" -#: mod/admin.php:779 +#: mod/admin.php:782 msgid "Timeframe for fetching global contacts" msgstr "" -#: mod/admin.php:779 +#: mod/admin.php:782 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:780 +#: mod/admin.php:783 msgid "Search the local directory" msgstr "" -#: mod/admin.php:780 +#: mod/admin.php:783 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:782 +#: mod/admin.php:785 msgid "Publish server information" msgstr "" -#: mod/admin.php:782 +#: mod/admin.php:785 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 " @@ -2716,204 +2732,204 @@ msgid "" "href='http://the-federation.info/'>the-federation.info for details." msgstr "" -#: mod/admin.php:784 +#: mod/admin.php:787 msgid "Use MySQL full text engine" msgstr "" -#: mod/admin.php:784 +#: mod/admin.php:787 msgid "" "Activates the full text engine. Speeds up search - but can only search for " "four and more characters." msgstr "" -#: mod/admin.php:785 +#: mod/admin.php:788 msgid "Suppress Language" msgstr "" -#: mod/admin.php:785 +#: mod/admin.php:788 msgid "Suppress language information in meta information about a posting." msgstr "" -#: mod/admin.php:786 +#: mod/admin.php:789 msgid "Suppress Tags" msgstr "" -#: mod/admin.php:786 +#: mod/admin.php:789 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: mod/admin.php:787 +#: mod/admin.php:790 msgid "Path to item cache" msgstr "" -#: mod/admin.php:787 +#: mod/admin.php:790 msgid "The item caches buffers generated bbcode and external images." msgstr "" -#: mod/admin.php:788 +#: mod/admin.php:791 msgid "Cache duration in seconds" msgstr "" -#: mod/admin.php:788 +#: mod/admin.php:791 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:789 +#: mod/admin.php:792 msgid "Maximum numbers of comments per post" msgstr "" -#: mod/admin.php:789 +#: mod/admin.php:792 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: mod/admin.php:790 +#: mod/admin.php:793 msgid "Path for lock file" msgstr "" -#: mod/admin.php:790 +#: mod/admin.php:793 msgid "" "The lock file is used to avoid multiple pollers at one time. Only define a " "folder here." msgstr "" -#: mod/admin.php:791 +#: mod/admin.php:794 msgid "Temp path" msgstr "" -#: mod/admin.php:791 +#: mod/admin.php:794 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:792 +#: mod/admin.php:795 msgid "Base path to installation" msgstr "" -#: mod/admin.php:792 +#: mod/admin.php:795 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:793 +#: mod/admin.php:796 msgid "Disable picture proxy" msgstr "" -#: mod/admin.php:793 +#: mod/admin.php:796 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on " "systems with very low bandwith." msgstr "" -#: mod/admin.php:794 +#: mod/admin.php:797 msgid "Enable old style pager" msgstr "" -#: mod/admin.php:794 +#: mod/admin.php:797 msgid "" "The old style pager has page numbers but slows down massively the page speed." msgstr "" -#: mod/admin.php:795 +#: mod/admin.php:798 msgid "Only search in tags" msgstr "" -#: mod/admin.php:795 +#: mod/admin.php:798 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: mod/admin.php:797 +#: mod/admin.php:800 msgid "New base url" msgstr "" -#: mod/admin.php:797 +#: mod/admin.php:800 msgid "" "Change base url for this server. Sends relocate message to all DFRN contacts " "of all users." msgstr "" -#: mod/admin.php:799 +#: mod/admin.php:802 msgid "RINO Encryption" msgstr "" -#: mod/admin.php:799 +#: mod/admin.php:802 msgid "Encryption layer between nodes." msgstr "" -#: mod/admin.php:800 +#: mod/admin.php:803 msgid "Embedly API key" msgstr "" -#: mod/admin.php:800 +#: mod/admin.php:803 msgid "" "Embedly is used to fetch additional data for " "web pages. This is an optional parameter." msgstr "" -#: mod/admin.php:818 +#: mod/admin.php:821 msgid "Update has been marked successful" msgstr "" -#: mod/admin.php:826 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "" - #: mod/admin.php:829 #, php-format -msgid "Executing of database structure update %s failed with error: %s" +msgid "Database structure update %s was successfully applied." msgstr "" -#: mod/admin.php:841 +#: mod/admin.php:832 #, php-format -msgid "Executing %s failed with error: %s" +msgid "Executing of database structure update %s failed with error: %s" msgstr "" #: mod/admin.php:844 #, php-format +msgid "Executing %s failed with error: %s" +msgstr "" + +#: mod/admin.php:847 +#, php-format msgid "Update %s was successfully applied." msgstr "" -#: mod/admin.php:848 +#: mod/admin.php:851 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: mod/admin.php:850 +#: mod/admin.php:853 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: mod/admin.php:869 +#: mod/admin.php:872 msgid "No failed updates." msgstr "" -#: mod/admin.php:870 +#: mod/admin.php:873 msgid "Check database structure" msgstr "" -#: mod/admin.php:875 +#: mod/admin.php:878 msgid "Failed Updates" msgstr "" -#: mod/admin.php:876 +#: mod/admin.php:879 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "" -#: mod/admin.php:877 +#: mod/admin.php:880 msgid "Mark success (if update was manually applied)" msgstr "" -#: mod/admin.php:878 +#: mod/admin.php:881 msgid "Attempt to execute this update step automatically" msgstr "" -#: mod/admin.php:910 +#: mod/admin.php:913 #, php-format msgid "" "\n" @@ -2921,7 +2937,7 @@ msgid "" "\t\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: mod/admin.php:913 +#: mod/admin.php:916 #, php-format msgid "" "\n" @@ -2957,295 +2973,295 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "" -#: mod/admin.php:945 include/user.php:421 +#: mod/admin.php:948 include/user.php:423 #, php-format msgid "Registration details for %s" msgstr "" -#: mod/admin.php:957 +#: mod/admin.php:960 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "" msgstr[1] "" -#: mod/admin.php:964 +#: mod/admin.php:967 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "" msgstr[1] "" -#: mod/admin.php:1003 +#: mod/admin.php:1006 #, php-format msgid "User '%s' deleted" msgstr "" -#: mod/admin.php:1011 +#: mod/admin.php:1014 #, php-format msgid "User '%s' unblocked" msgstr "" -#: mod/admin.php:1011 +#: mod/admin.php:1014 #, php-format msgid "User '%s' blocked" msgstr "" -#: mod/admin.php:1104 +#: mod/admin.php:1107 msgid "Add User" msgstr "" -#: mod/admin.php:1105 +#: mod/admin.php:1108 msgid "select all" msgstr "" -#: mod/admin.php:1106 +#: mod/admin.php:1109 msgid "User registrations waiting for confirm" msgstr "" -#: mod/admin.php:1107 +#: mod/admin.php:1110 msgid "User waiting for permanent deletion" msgstr "" -#: mod/admin.php:1108 +#: mod/admin.php:1111 msgid "Request date" msgstr "" -#: mod/admin.php:1108 mod/admin.php:1120 mod/admin.php:1121 mod/admin.php:1136 +#: mod/admin.php:1111 mod/admin.php:1123 mod/admin.php:1124 mod/admin.php:1139 #: include/contact_selectors.php:79 include/contact_selectors.php:86 msgid "Email" msgstr "" -#: mod/admin.php:1109 +#: mod/admin.php:1112 msgid "No registrations." msgstr "" -#: mod/admin.php:1111 +#: mod/admin.php:1114 msgid "Deny" msgstr "" -#: mod/admin.php:1115 +#: mod/admin.php:1118 msgid "Site admin" msgstr "" -#: mod/admin.php:1116 +#: mod/admin.php:1119 msgid "Account expired" msgstr "" -#: mod/admin.php:1119 +#: mod/admin.php:1122 msgid "New User" msgstr "" -#: mod/admin.php:1120 mod/admin.php:1121 +#: mod/admin.php:1123 mod/admin.php:1124 msgid "Register date" msgstr "" -#: mod/admin.php:1120 mod/admin.php:1121 +#: mod/admin.php:1123 mod/admin.php:1124 msgid "Last login" msgstr "" -#: mod/admin.php:1120 mod/admin.php:1121 +#: mod/admin.php:1123 mod/admin.php:1124 msgid "Last item" msgstr "" -#: mod/admin.php:1120 +#: mod/admin.php:1123 msgid "Deleted since" msgstr "" -#: mod/admin.php:1121 mod/settings.php:41 +#: mod/admin.php:1124 mod/settings.php:41 msgid "Account" msgstr "" -#: mod/admin.php:1123 +#: mod/admin.php:1126 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:1124 +#: mod/admin.php:1127 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:1134 +#: mod/admin.php:1137 msgid "Name of the new user." msgstr "" -#: mod/admin.php:1135 +#: mod/admin.php:1138 msgid "Nickname" msgstr "" -#: mod/admin.php:1135 +#: mod/admin.php:1138 msgid "Nickname of the new user." msgstr "" -#: mod/admin.php:1136 +#: mod/admin.php:1139 msgid "Email address of the new user." msgstr "" -#: mod/admin.php:1169 +#: mod/admin.php:1172 #, php-format msgid "Plugin %s disabled." msgstr "" -#: mod/admin.php:1173 +#: mod/admin.php:1176 #, php-format msgid "Plugin %s enabled." msgstr "" -#: mod/admin.php:1183 mod/admin.php:1407 +#: mod/admin.php:1186 mod/admin.php:1410 msgid "Disable" msgstr "" -#: mod/admin.php:1185 mod/admin.php:1409 +#: mod/admin.php:1188 mod/admin.php:1412 msgid "Enable" msgstr "" -#: mod/admin.php:1208 mod/admin.php:1453 +#: mod/admin.php:1211 mod/admin.php:1456 msgid "Toggle" msgstr "" -#: mod/admin.php:1216 mod/admin.php:1463 +#: mod/admin.php:1219 mod/admin.php:1466 msgid "Author: " msgstr "" -#: mod/admin.php:1217 mod/admin.php:1464 +#: mod/admin.php:1220 mod/admin.php:1467 msgid "Maintainer: " msgstr "" -#: mod/admin.php:1269 +#: mod/admin.php:1272 msgid "Reload active plugins" msgstr "" -#: mod/admin.php:1367 +#: mod/admin.php:1370 msgid "No themes found." msgstr "" -#: mod/admin.php:1445 +#: mod/admin.php:1448 msgid "Screenshot" msgstr "" -#: mod/admin.php:1505 +#: mod/admin.php:1508 msgid "Reload active themes" msgstr "" -#: mod/admin.php:1509 +#: mod/admin.php:1512 msgid "[Experimental]" msgstr "" -#: mod/admin.php:1510 +#: mod/admin.php:1513 msgid "[Unsupported]" msgstr "" -#: mod/admin.php:1537 +#: mod/admin.php:1540 msgid "Log settings updated." msgstr "" -#: mod/admin.php:1593 +#: mod/admin.php:1596 msgid "Clear" msgstr "" -#: mod/admin.php:1599 +#: mod/admin.php:1602 msgid "Enable Debugging" msgstr "" -#: mod/admin.php:1600 +#: mod/admin.php:1603 msgid "Log file" msgstr "" -#: mod/admin.php:1600 +#: mod/admin.php:1603 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "" -#: mod/admin.php:1601 +#: mod/admin.php:1604 msgid "Log level" msgstr "" -#: mod/admin.php:1651 include/acl_selectors.php:347 +#: mod/admin.php:1654 include/acl_selectors.php:348 msgid "Close" msgstr "" -#: mod/admin.php:1657 +#: mod/admin.php:1660 msgid "FTP Host" msgstr "" -#: mod/admin.php:1658 +#: mod/admin.php:1661 msgid "FTP Path" msgstr "" -#: mod/admin.php:1659 +#: mod/admin.php:1662 msgid "FTP User" msgstr "" -#: mod/admin.php:1660 +#: mod/admin.php:1663 msgid "FTP Password" msgstr "" -#: mod/network.php:143 +#: mod/network.php:146 #, php-format msgid "Search Results For: %s" msgstr "" -#: mod/network.php:195 mod/search.php:25 +#: mod/network.php:191 mod/search.php:25 msgid "Remove term" msgstr "" -#: mod/network.php:204 mod/search.php:34 include/features.php:43 +#: mod/network.php:200 mod/search.php:34 include/features.php:79 msgid "Saved Searches" msgstr "" -#: mod/network.php:205 include/group.php:279 +#: mod/network.php:201 include/group.php:293 msgid "add" msgstr "" -#: mod/network.php:366 +#: mod/network.php:362 msgid "Commented Order" msgstr "" -#: mod/network.php:369 +#: mod/network.php:365 msgid "Sort by Comment Date" msgstr "" -#: mod/network.php:374 +#: mod/network.php:370 msgid "Posted Order" msgstr "" -#: mod/network.php:377 +#: mod/network.php:373 msgid "Sort by Post Date" msgstr "" -#: mod/network.php:388 +#: mod/network.php:384 msgid "Posts that mention or involve you" msgstr "" -#: mod/network.php:396 +#: mod/network.php:392 msgid "New" msgstr "" -#: mod/network.php:399 +#: mod/network.php:395 msgid "Activity Stream - by date" msgstr "" -#: mod/network.php:407 +#: mod/network.php:403 msgid "Shared Links" msgstr "" -#: mod/network.php:410 +#: mod/network.php:406 msgid "Interesting Links" msgstr "" -#: mod/network.php:418 +#: mod/network.php:414 msgid "Starred" msgstr "" -#: mod/network.php:421 +#: mod/network.php:417 msgid "Favourite Posts" msgstr "" -#: mod/network.php:480 +#: mod/network.php:476 #, php-format msgid "Warning: This group contains %s member from an insecure network." msgid_plural "" @@ -3253,33 +3269,28 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: mod/network.php:483 +#: mod/network.php:479 msgid "Private messages to this group are at risk of public disclosure." msgstr "" -#: mod/network.php:550 mod/content.php:119 +#: mod/network.php:546 mod/content.php:119 msgid "No such group" msgstr "" -#: mod/network.php:567 mod/content.php:130 +#: mod/network.php:563 mod/content.php:130 msgid "Group is empty" msgstr "" -#: mod/network.php:578 mod/content.php:135 +#: mod/network.php:574 mod/content.php:135 #, php-format msgid "Group: %s" msgstr "" -#: mod/network.php:596 -#, php-format -msgid "Contact: %s" -msgstr "" - -#: mod/network.php:600 +#: mod/network.php:606 msgid "Private messages to this person are at risk of public disclosure." msgstr "" -#: mod/network.php:605 +#: mod/network.php:611 msgid "Invalid contact." msgstr "" @@ -3287,10 +3298,6 @@ msgstr "" msgid "No friends to display." msgstr "" -#: mod/allfriends.php:79 mod/common.php:122 -msgid "Forum" -msgstr "" - #: mod/allfriends.php:92 #, php-format msgid "Friends of %s" @@ -3332,31 +3339,31 @@ msgstr "" msgid "Sat" msgstr "" -#: mod/events.php:208 mod/settings.php:936 include/text.php:1267 +#: mod/events.php:208 mod/settings.php:936 include/text.php:1274 msgid "Sunday" msgstr "" -#: mod/events.php:209 mod/settings.php:936 include/text.php:1267 +#: mod/events.php:209 mod/settings.php:936 include/text.php:1274 msgid "Monday" msgstr "" -#: mod/events.php:210 include/text.php:1267 +#: mod/events.php:210 include/text.php:1274 msgid "Tuesday" msgstr "" -#: mod/events.php:211 include/text.php:1267 +#: mod/events.php:211 include/text.php:1274 msgid "Wednesday" msgstr "" -#: mod/events.php:212 include/text.php:1267 +#: mod/events.php:212 include/text.php:1274 msgid "Thursday" msgstr "" -#: mod/events.php:213 include/text.php:1267 +#: mod/events.php:213 include/text.php:1274 msgid "Friday" msgstr "" -#: mod/events.php:214 include/text.php:1267 +#: mod/events.php:214 include/text.php:1274 msgid "Saturday" msgstr "" @@ -3376,7 +3383,7 @@ msgstr "" msgid "Apr" msgstr "" -#: mod/events.php:219 mod/events.php:231 include/text.php:1271 +#: mod/events.php:219 mod/events.php:231 include/text.php:1278 msgid "May" msgstr "" @@ -3408,47 +3415,47 @@ msgstr "" msgid "Dec" msgstr "" -#: mod/events.php:227 include/text.php:1271 +#: mod/events.php:227 include/text.php:1278 msgid "January" msgstr "" -#: mod/events.php:228 include/text.php:1271 +#: mod/events.php:228 include/text.php:1278 msgid "February" msgstr "" -#: mod/events.php:229 include/text.php:1271 +#: mod/events.php:229 include/text.php:1278 msgid "March" msgstr "" -#: mod/events.php:230 include/text.php:1271 +#: mod/events.php:230 include/text.php:1278 msgid "April" msgstr "" -#: mod/events.php:232 include/text.php:1271 +#: mod/events.php:232 include/text.php:1278 msgid "June" msgstr "" -#: mod/events.php:233 include/text.php:1271 +#: mod/events.php:233 include/text.php:1278 msgid "July" msgstr "" -#: mod/events.php:234 include/text.php:1271 +#: mod/events.php:234 include/text.php:1278 msgid "August" msgstr "" -#: mod/events.php:235 include/text.php:1271 +#: mod/events.php:235 include/text.php:1278 msgid "September" msgstr "" -#: mod/events.php:236 include/text.php:1271 +#: mod/events.php:236 include/text.php:1278 msgid "October" msgstr "" -#: mod/events.php:237 include/text.php:1271 +#: mod/events.php:237 include/text.php:1278 msgid "November" msgstr "" -#: mod/events.php:238 include/text.php:1271 +#: mod/events.php:238 include/text.php:1278 msgid "December" msgstr "" @@ -3476,11 +3483,11 @@ msgstr "" msgid "Edit event" msgstr "" -#: mod/events.php:421 include/text.php:1714 include/text.php:1721 +#: mod/events.php:421 include/text.php:1721 include/text.php:1728 msgid "link to source" msgstr "" -#: mod/events.php:456 include/identity.php:669 include/nav.php:79 +#: mod/events.php:456 include/identity.php:686 include/nav.php:79 #: include/nav.php:140 view/theme/diabook/theme.php:127 msgid "Events" msgstr "" @@ -3493,7 +3500,7 @@ msgstr "" msgid "Previous" msgstr "" -#: mod/events.php:459 mod/install.php:212 +#: mod/events.php:459 mod/install.php:220 msgid "Next" msgstr "" @@ -3583,14 +3590,15 @@ msgstr[0] "" msgstr[1] "" #: mod/content.php:607 object/Item.php:421 object/Item.php:434 -#: include/text.php:1992 +#: include/text.php:1999 msgid "comment" msgid_plural "comments" msgstr[0] "" msgstr[1] "" #: mod/content.php:608 boot.php:773 object/Item.php:422 -#: include/contact_widgets.php:205 include/items.php:5214 +#: include/contact_widgets.php:242 include/forums.php:110 +#: include/items.php:5152 view/theme/vier/theme.php:264 msgid "show more" msgstr "" @@ -3719,105 +3727,105 @@ msgstr "" msgid "Please enter your password for verification:" msgstr "" -#: mod/install.php:120 +#: mod/install.php:128 msgid "Friendica Communications Server - Setup" msgstr "" -#: mod/install.php:126 +#: mod/install.php:134 msgid "Could not connect to database." msgstr "" -#: mod/install.php:130 +#: mod/install.php:138 msgid "Could not create table." msgstr "" -#: mod/install.php:136 +#: mod/install.php:144 msgid "Your Friendica site database has been installed." msgstr "" -#: mod/install.php:141 +#: mod/install.php:149 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "" -#: mod/install.php:142 mod/install.php:211 mod/install.php:569 +#: mod/install.php:150 mod/install.php:219 mod/install.php:577 msgid "Please see the file \"INSTALL.txt\"." msgstr "" -#: mod/install.php:154 +#: mod/install.php:162 msgid "Database already in use." msgstr "" -#: mod/install.php:208 +#: mod/install.php:216 msgid "System check" msgstr "" -#: mod/install.php:213 +#: mod/install.php:221 msgid "Check again" msgstr "" -#: mod/install.php:232 +#: mod/install.php:240 msgid "Database connection" msgstr "" -#: mod/install.php:233 +#: mod/install.php:241 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "" -#: mod/install.php:234 +#: mod/install.php:242 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "" -#: mod/install.php:235 +#: 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:239 +#: mod/install.php:247 msgid "Database Server Name" msgstr "" -#: mod/install.php:240 +#: mod/install.php:248 msgid "Database Login Name" msgstr "" -#: mod/install.php:241 +#: mod/install.php:249 msgid "Database Login Password" msgstr "" -#: mod/install.php:242 +#: mod/install.php:250 msgid "Database Name" msgstr "" -#: mod/install.php:243 mod/install.php:282 +#: mod/install.php:251 mod/install.php:290 msgid "Site administrator email address" msgstr "" -#: mod/install.php:243 mod/install.php:282 +#: 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:247 mod/install.php:285 +#: mod/install.php:255 mod/install.php:293 msgid "Please select a default timezone for your website" msgstr "" -#: mod/install.php:272 +#: mod/install.php:280 msgid "Site settings" msgstr "" -#: mod/install.php:326 +#: mod/install.php:334 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: mod/install.php:327 +#: 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:331 +#: mod/install.php:339 msgid "PHP executable path" msgstr "" -#: mod/install.php:331 +#: mod/install.php:339 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "" -#: mod/install.php:336 +#: mod/install.php:344 msgid "Command line PHP" msgstr "" -#: mod/install.php:345 +#: mod/install.php:353 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "" -#: mod/install.php:346 +#: mod/install.php:354 msgid "Found PHP version: " msgstr "" -#: mod/install.php:348 +#: mod/install.php:356 msgid "PHP cli binary" msgstr "" -#: mod/install.php:359 +#: mod/install.php:367 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "" -#: mod/install.php:360 +#: mod/install.php:368 msgid "This is required for message delivery to work." msgstr "" -#: mod/install.php:362 +#: mod/install.php:370 msgid "PHP register_argc_argv" msgstr "" -#: mod/install.php:383 +#: 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:384 +#: mod/install.php:392 msgid "" "If running under Windows, please see \"http://www.php.net/manual/en/openssl." "installation.php\"." msgstr "" -#: mod/install.php:386 +#: mod/install.php:394 msgid "Generate encryption keys" msgstr "" -#: mod/install.php:393 +#: mod/install.php:401 msgid "libCurl PHP module" msgstr "" -#: mod/install.php:394 +#: mod/install.php:402 msgid "GD graphics PHP module" msgstr "" -#: mod/install.php:395 +#: mod/install.php:403 msgid "OpenSSL PHP module" msgstr "" -#: mod/install.php:396 +#: mod/install.php:404 msgid "mysqli PHP module" msgstr "" -#: mod/install.php:397 +#: mod/install.php:405 msgid "mb_string PHP module" msgstr "" -#: mod/install.php:398 +#: mod/install.php:406 msgid "mcrypt PHP module" msgstr "" -#: mod/install.php:403 mod/install.php:405 +#: mod/install.php:411 mod/install.php:413 msgid "Apache mod_rewrite module" msgstr "" -#: mod/install.php:403 +#: mod/install.php:411 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: mod/install.php:411 +#: mod/install.php:419 msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: mod/install.php:415 +#: mod/install.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" -#: mod/install.php:419 +#: mod/install.php:427 msgid "Error: openssl PHP module required but not installed." msgstr "" -#: mod/install.php:423 +#: mod/install.php:431 msgid "Error: mysqli PHP module required but not installed." msgstr "" -#: mod/install.php:427 +#: mod/install.php:435 msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: mod/install.php:431 +#: mod/install.php:439 msgid "Error: mcrypt PHP module required but not installed." msgstr "" -#: mod/install.php:443 +#: mod/install.php:451 msgid "" "Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 " "encryption layer." msgstr "" -#: mod/install.php:445 +#: mod/install.php:453 msgid "mcrypt_create_iv() function" msgstr "" -#: mod/install.php:461 +#: 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 "" -#: mod/install.php:462 +#: 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:463 +#: 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 "" -#: mod/install.php:464 +#: 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 "" -#: mod/install.php:467 +#: mod/install.php:475 msgid ".htconfig.php is writable" msgstr "" -#: mod/install.php:477 +#: 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 "" -#: mod/install.php:478 +#: 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 "" -#: mod/install.php:479 +#: 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 "" -#: mod/install.php:480 +#: 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 "" -#: mod/install.php:483 +#: mod/install.php:491 msgid "view/smarty3 is writable" msgstr "" -#: mod/install.php:499 +#: mod/install.php:507 msgid "" "Url rewrite in .htaccess is not working. Check your server configuration." msgstr "" -#: mod/install.php:501 +#: mod/install.php:509 msgid "Url rewrite is working" msgstr "" -#: mod/install.php:518 +#: mod/install.php:526 msgid "ImageMagick PHP extension is installed" msgstr "" -#: mod/install.php:520 +#: mod/install.php:528 msgid "ImageMagick supports GIF" msgstr "" -#: mod/install.php:528 +#: 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 "" -#: mod/install.php:567 +#: mod/install.php:575 msgid "

    What next

    " msgstr "" -#: mod/install.php:568 +#: mod/install.php:576 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" @@ -4063,7 +4071,7 @@ msgstr "" msgid "Help:" msgstr "" -#: mod/help.php:36 include/nav.php:113 view/theme/vier/theme.php:273 +#: mod/help.php:36 include/nav.php:113 view/theme/vier/theme.php:302 msgid "Help" msgstr "" @@ -4106,11 +4114,11 @@ msgstr "" msgid "No keywords to match. Please add keywords to your default profile." msgstr "" -#: mod/match.php:83 +#: mod/match.php:84 msgid "is interested in:" msgstr "" -#: mod/match.php:97 +#: mod/match.php:98 msgid "Profile Match" msgstr "" @@ -4341,7 +4349,7 @@ msgstr "" msgid "Built-in support for %s connectivity is %s" msgstr "" -#: mod/settings.php:809 mod/dfrn_request.php:856 +#: mod/settings.php:809 mod/dfrn_request.php:858 #: include/contact_selectors.php:80 msgid "Diaspora" msgstr "" @@ -4482,8 +4490,8 @@ msgstr "" #: mod/settings.php:973 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 +#: view/theme/diabook/config.php:150 view/theme/clean/config.php:85 +#: view/theme/vier/config.php:109 view/theme/duepuntozero/config.php:61 msgid "Theme settings" msgstr "" @@ -4555,7 +4563,7 @@ msgstr "" msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "" -#: mod/settings.php:1109 include/acl_selectors.php:330 +#: mod/settings.php:1109 include/acl_selectors.php:331 msgid "Hide your profile details from unknown viewers?" msgstr "" @@ -4634,11 +4642,11 @@ msgstr "" msgid "Password Settings" msgstr "" -#: mod/settings.php:1199 mod/register.php:271 +#: mod/settings.php:1199 mod/register.php:274 msgid "New Password:" msgstr "" -#: mod/settings.php:1200 mod/register.php:272 +#: mod/settings.php:1200 mod/register.php:275 msgid "Confirm:" msgstr "" @@ -4662,7 +4670,7 @@ msgstr "" msgid "Basic Settings" msgstr "" -#: mod/settings.php:1207 include/identity.php:539 +#: mod/settings.php:1207 include/identity.php:551 msgid "Full Name:" msgstr "" @@ -4834,147 +4842,147 @@ msgstr "" msgid "This introduction has already been accepted." msgstr "" -#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 +#: mod/dfrn_request.php:120 mod/dfrn_request.php:519 msgid "Profile location is not valid or does not contain profile information." msgstr "" -#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 +#: mod/dfrn_request.php:125 mod/dfrn_request.php:524 msgid "Warning: profile location has no identifiable owner name." msgstr "" -#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 +#: mod/dfrn_request.php:127 mod/dfrn_request.php:526 msgid "Warning: profile location has no profile photo." msgstr "" -#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#: mod/dfrn_request.php:130 mod/dfrn_request.php:529 #, 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 +#: mod/dfrn_request.php:173 msgid "Introduction complete." msgstr "" -#: mod/dfrn_request.php:214 +#: mod/dfrn_request.php:215 msgid "Unrecoverable protocol error." msgstr "" -#: mod/dfrn_request.php:242 +#: mod/dfrn_request.php:243 msgid "Profile unavailable." msgstr "" -#: mod/dfrn_request.php:267 +#: mod/dfrn_request.php:268 #, php-format msgid "%s has received too many connection requests today." msgstr "" -#: mod/dfrn_request.php:268 +#: mod/dfrn_request.php:269 msgid "Spam protection measures have been invoked." msgstr "" -#: mod/dfrn_request.php:269 +#: mod/dfrn_request.php:270 msgid "Friends are advised to please try again in 24 hours." msgstr "" -#: mod/dfrn_request.php:331 +#: mod/dfrn_request.php:332 msgid "Invalid locator" msgstr "" -#: mod/dfrn_request.php:340 +#: mod/dfrn_request.php:341 msgid "Invalid email address." msgstr "" -#: mod/dfrn_request.php:367 +#: mod/dfrn_request.php:368 msgid "This account has not been configured for email. Request failed." msgstr "" -#: mod/dfrn_request.php:463 +#: mod/dfrn_request.php:464 msgid "Unable to resolve your name at the provided location." msgstr "" -#: mod/dfrn_request.php:476 +#: mod/dfrn_request.php:477 msgid "You have already introduced yourself here." msgstr "" -#: mod/dfrn_request.php:480 +#: mod/dfrn_request.php:481 #, php-format msgid "Apparently you are already friends with %s." msgstr "" -#: mod/dfrn_request.php:501 +#: mod/dfrn_request.php:502 msgid "Invalid profile URL." msgstr "" -#: mod/dfrn_request.php:507 include/follow.php:72 +#: mod/dfrn_request.php:508 include/follow.php:72 msgid "Disallowed profile URL." msgstr "" -#: mod/dfrn_request.php:597 +#: mod/dfrn_request.php:599 msgid "Your introduction has been sent." msgstr "" -#: mod/dfrn_request.php:650 +#: mod/dfrn_request.php:652 msgid "Please login to confirm introduction." msgstr "" -#: mod/dfrn_request.php:660 +#: mod/dfrn_request.php:662 msgid "" "Incorrect identity currently logged in. Please login to this profile." msgstr "" -#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 +#: mod/dfrn_request.php:676 mod/dfrn_request.php:693 msgid "Confirm" msgstr "" -#: mod/dfrn_request.php:686 +#: mod/dfrn_request.php:688 msgid "Hide this contact" msgstr "" -#: mod/dfrn_request.php:689 +#: mod/dfrn_request.php:691 #, php-format msgid "Welcome home %s." msgstr "" -#: mod/dfrn_request.php:690 +#: mod/dfrn_request.php:692 #, php-format msgid "Please confirm your introduction/connection request to %s." msgstr "" -#: mod/dfrn_request.php:819 +#: mod/dfrn_request.php:821 msgid "" "Please enter your 'Identity Address' from one of the following supported " "communications networks:" msgstr "" -#: mod/dfrn_request.php:840 +#: mod/dfrn_request.php:842 #, 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 +#: mod/dfrn_request.php:847 msgid "Friend/Connection Request" msgstr "" -#: mod/dfrn_request.php:846 +#: mod/dfrn_request.php:848 msgid "" "Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " "testuser@identi.ca" msgstr "" -#: mod/dfrn_request.php:854 include/contact_selectors.php:76 +#: mod/dfrn_request.php:856 include/contact_selectors.php:76 msgid "Friendica" msgstr "" -#: mod/dfrn_request.php:855 +#: mod/dfrn_request.php:857 msgid "StatusNet/Federated Social Web" msgstr "" -#: mod/dfrn_request.php:857 +#: mod/dfrn_request.php:859 #, php-format msgid "" " - please do not use this form. Instead, enter %s into your Diaspora search " @@ -4993,80 +5001,84 @@ msgid "" "password: %s

    You can change your password after login." msgstr "" -#: mod/register.php:107 +#: mod/register.php:104 +msgid "Registration successful." +msgstr "" + +#: mod/register.php:110 msgid "Your registration can not be processed." msgstr "" -#: mod/register.php:150 +#: mod/register.php:153 msgid "Your registration is pending approval by the site owner." msgstr "" -#: mod/register.php:188 mod/uimport.php:50 +#: 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:216 +#: mod/register.php:219 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking 'Register'." msgstr "" -#: mod/register.php:217 +#: 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 "" -#: mod/register.php:218 +#: mod/register.php:221 msgid "Your OpenID (optional): " msgstr "" -#: mod/register.php:232 +#: mod/register.php:235 msgid "Include your profile in member directory?" msgstr "" -#: mod/register.php:256 +#: mod/register.php:259 msgid "Membership on this site is by invitation only." msgstr "" -#: mod/register.php:257 +#: mod/register.php:260 msgid "Your invitation ID: " msgstr "" -#: mod/register.php:268 +#: mod/register.php:271 msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " msgstr "" -#: mod/register.php:269 +#: mod/register.php:272 msgid "Your Email Address: " msgstr "" -#: mod/register.php:271 +#: mod/register.php:274 msgid "Leave empty for an auto generated password." msgstr "" -#: mod/register.php:273 +#: 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 "" -#: mod/register.php:274 +#: mod/register.php:277 msgid "Choose a nickname: " msgstr "" -#: mod/register.php:277 boot.php:1256 include/nav.php:108 +#: mod/register.php:280 boot.php:1256 include/nav.php:108 msgid "Register" msgstr "" -#: mod/register.php:283 mod/uimport.php:64 +#: mod/register.php:286 mod/uimport.php:64 msgid "Import" msgstr "" -#: mod/register.php:284 +#: mod/register.php:287 msgid "Import your profile to this friendica instance" msgstr "" @@ -5086,7 +5098,7 @@ msgstr "" msgid "Only one search per minute is permitted for not logged in users." msgstr "" -#: mod/search.php:126 include/text.php:996 include/nav.php:118 +#: mod/search.php:126 include/text.php:1003 include/nav.php:118 msgid "Search" msgstr "" @@ -5108,16 +5120,16 @@ msgstr "" msgid "Gender: " msgstr "" -#: mod/directory.php:143 include/identity.php:273 include/identity.php:561 +#: mod/directory.php:143 include/identity.php:283 include/identity.php:573 msgid "Status:" msgstr "" -#: mod/directory.php:145 include/identity.php:275 include/identity.php:572 +#: mod/directory.php:145 include/identity.php:285 include/identity.php:584 msgid "Homepage:" msgstr "" #: mod/directory.php:195 view/theme/diabook/theme.php:525 -#: view/theme/vier/theme.php:191 +#: view/theme/vier/theme.php:205 msgid "Global Directory" msgstr "" @@ -5224,12 +5236,12 @@ msgid "" "hours." msgstr "" -#: mod/suggest.php:83 mod/suggest.php:100 +#: mod/suggest.php:83 mod/suggest.php:101 msgid "Ignore/Hide" msgstr "" -#: mod/suggest.php:110 include/contact_widgets.php:35 -#: view/theme/diabook/theme.php:527 view/theme/vier/theme.php:193 +#: 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 "" @@ -5444,7 +5456,7 @@ msgstr "" msgid "Since [date]:" msgstr "" -#: mod/profiles.php:724 include/identity.php:570 +#: mod/profiles.php:724 include/identity.php:582 msgid "Sexual Preference:" msgstr "" @@ -5452,11 +5464,11 @@ msgstr "" msgid "Homepage URL:" msgstr "" -#: mod/profiles.php:726 include/identity.php:574 +#: mod/profiles.php:726 include/identity.php:586 msgid "Hometown:" msgstr "" -#: mod/profiles.php:727 include/identity.php:578 +#: mod/profiles.php:727 include/identity.php:590 msgid "Political Views:" msgstr "" @@ -5472,11 +5484,11 @@ msgstr "" msgid "Private Keywords:" msgstr "" -#: mod/profiles.php:731 include/identity.php:586 +#: mod/profiles.php:731 include/identity.php:598 msgid "Likes:" msgstr "" -#: mod/profiles.php:732 include/identity.php:588 +#: mod/profiles.php:732 include/identity.php:600 msgid "Dislikes:" msgstr "" @@ -5542,23 +5554,23 @@ msgstr "" msgid "Edit/Manage Profiles" msgstr "" -#: mod/profiles.php:814 include/identity.php:231 include/identity.php:257 +#: mod/profiles.php:814 include/identity.php:241 include/identity.php:267 msgid "Change profile photo" msgstr "" -#: mod/profiles.php:815 include/identity.php:232 +#: mod/profiles.php:815 include/identity.php:242 msgid "Create New Profile" msgstr "" -#: mod/profiles.php:826 include/identity.php:242 +#: mod/profiles.php:826 include/identity.php:252 msgid "Profile Image" msgstr "" -#: mod/profiles.php:828 include/identity.php:245 +#: mod/profiles.php:828 include/identity.php:255 msgid "visible to everybody" msgstr "" -#: mod/profiles.php:829 include/identity.php:246 +#: mod/profiles.php:829 include/identity.php:256 msgid "Edit visibility" msgstr "" @@ -5622,7 +5634,7 @@ msgstr "" msgid "Permission settings" msgstr "" -#: mod/editpost.php:132 include/acl_selectors.php:343 +#: mod/editpost.php:132 include/acl_selectors.php:344 msgid "CC: email addresses" msgstr "" @@ -5638,7 +5650,7 @@ msgstr "" msgid "Categories (comma-separated list)" msgstr "" -#: mod/editpost.php:139 include/acl_selectors.php:344 +#: mod/editpost.php:139 include/acl_selectors.php:345 msgid "Example: bob@example.com, mary@example.com" msgstr "" @@ -5704,7 +5716,7 @@ msgstr "" msgid "Visible to:" msgstr "" -#: mod/notes.php:46 include/identity.php:677 +#: mod/notes.php:46 include/identity.php:694 msgid "Personal Notes" msgstr "" @@ -5861,7 +5873,7 @@ msgid "" "important, please visit http://friendica.com" msgstr "" -#: mod/photos.php:91 include/identity.php:652 +#: mod/photos.php:91 include/identity.php:669 msgid "Photo Albums" msgstr "" @@ -5935,7 +5947,7 @@ msgstr "" msgid "Do not show a status post for this upload" msgstr "" -#: mod/photos.php:1182 mod/photos.php:1567 include/acl_selectors.php:346 +#: mod/photos.php:1182 mod/photos.php:1567 include/acl_selectors.php:347 msgid "Permissions" msgstr "" @@ -6036,7 +6048,7 @@ msgid "Share" msgstr "" #: mod/photos.php:1640 include/conversation.php:509 -#: include/conversation.php:1405 +#: include/conversation.php:1414 msgid "Attending" msgid_plural "Attending" msgstr[0] "" @@ -6279,7 +6291,7 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "" #: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 -#: view/theme/vier/theme.php:192 +#: view/theme/vier/theme.php:206 msgid "Similar Interests" msgstr "" @@ -6288,205 +6300,221 @@ msgid "Random Profile" msgstr "" #: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 -#: view/theme/vier/theme.php:194 +#: view/theme/vier/theme.php:208 msgid "Invite Friends" msgstr "" -#: include/contact_widgets.php:71 +#: include/contact_widgets.php:108 msgid "Networks" msgstr "" -#: include/contact_widgets.php:74 +#: include/contact_widgets.php:111 msgid "All Networks" msgstr "" -#: include/contact_widgets.php:104 include/features.php:61 +#: include/contact_widgets.php:141 include/features.php:97 msgid "Saved Folders" msgstr "" -#: include/contact_widgets.php:107 include/contact_widgets.php:139 +#: include/contact_widgets.php:144 include/contact_widgets.php:176 msgid "Everything" msgstr "" -#: include/contact_widgets.php:136 +#: include/contact_widgets.php:173 msgid "Categories" msgstr "" -#: include/features.php:23 +#: include/features.php:58 msgid "General Features" msgstr "" -#: include/features.php:25 +#: include/features.php:60 msgid "Multiple Profiles" msgstr "" -#: include/features.php:25 +#: include/features.php:60 msgid "Ability to create multiple profiles" msgstr "" -#: include/features.php:26 +#: include/features.php:61 msgid "Photo Location" msgstr "" -#: include/features.php:26 +#: include/features.php:61 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:31 +#: include/features.php:66 msgid "Post Composition Features" msgstr "" -#: include/features.php:32 +#: include/features.php:67 msgid "Richtext Editor" msgstr "" -#: include/features.php:32 +#: include/features.php:67 msgid "Enable richtext editor" msgstr "" -#: include/features.php:33 +#: include/features.php:68 msgid "Post Preview" msgstr "" -#: include/features.php:33 +#: include/features.php:68 msgid "Allow previewing posts and comments before publishing them" msgstr "" -#: include/features.php:34 +#: include/features.php:69 msgid "Auto-mention Forums" msgstr "" -#: include/features.php:34 +#: include/features.php:69 msgid "" "Add/remove mention when a fourm page is selected/deselected in ACL window." msgstr "" -#: include/features.php:39 +#: include/features.php:74 msgid "Network Sidebar Widgets" msgstr "" -#: include/features.php:40 +#: include/features.php:75 msgid "Search by Date" msgstr "" -#: include/features.php:40 +#: include/features.php:75 msgid "Ability to select posts by date ranges" msgstr "" -#: include/features.php:41 +#: include/features.php:76 include/features.php:106 +msgid "List Forums" +msgstr "" + +#: include/features.php:76 +msgid "Enable widget to display the forums your are connected with" +msgstr "" + +#: include/features.php:77 msgid "Group Filter" msgstr "" -#: include/features.php:41 +#: include/features.php:77 msgid "Enable widget to display Network posts only from selected group" msgstr "" -#: include/features.php:42 +#: include/features.php:78 msgid "Network Filter" msgstr "" -#: include/features.php:42 +#: include/features.php:78 msgid "Enable widget to display Network posts only from selected network" msgstr "" -#: include/features.php:43 +#: include/features.php:79 msgid "Save search terms for re-use" msgstr "" -#: include/features.php:48 +#: include/features.php:84 msgid "Network Tabs" msgstr "" -#: include/features.php:49 +#: include/features.php:85 msgid "Network Personal Tab" msgstr "" -#: include/features.php:49 +#: include/features.php:85 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "" -#: include/features.php:50 +#: include/features.php:86 msgid "Network New Tab" msgstr "" -#: include/features.php:50 +#: include/features.php:86 msgid "Enable tab to display only new Network posts (from the last 12 hours)" msgstr "" -#: include/features.php:51 +#: include/features.php:87 msgid "Network Shared Links Tab" msgstr "" -#: include/features.php:51 +#: include/features.php:87 msgid "Enable tab to display only Network posts with links in them" msgstr "" -#: include/features.php:56 +#: include/features.php:92 msgid "Post/Comment Tools" msgstr "" -#: include/features.php:57 +#: include/features.php:93 msgid "Multiple Deletion" msgstr "" -#: include/features.php:57 +#: include/features.php:93 msgid "Select and delete multiple posts/comments at once" msgstr "" -#: include/features.php:58 +#: include/features.php:94 msgid "Edit Sent Posts" msgstr "" -#: include/features.php:58 +#: include/features.php:94 msgid "Edit and correct posts and comments after sending" msgstr "" -#: include/features.php:59 +#: include/features.php:95 msgid "Tagging" msgstr "" -#: include/features.php:59 +#: include/features.php:95 msgid "Ability to tag existing posts" msgstr "" -#: include/features.php:60 +#: include/features.php:96 msgid "Post Categories" msgstr "" -#: include/features.php:60 +#: include/features.php:96 msgid "Add categories to your posts" msgstr "" -#: include/features.php:61 +#: include/features.php:97 msgid "Ability to file posts under folders" msgstr "" -#: include/features.php:62 +#: include/features.php:98 msgid "Dislike Posts" msgstr "" -#: include/features.php:62 +#: include/features.php:98 msgid "Ability to dislike posts/comments" msgstr "" -#: include/features.php:63 +#: include/features.php:99 msgid "Star Posts" msgstr "" -#: include/features.php:63 +#: include/features.php:99 msgid "Ability to mark special posts with a star indicator" msgstr "" -#: include/features.php:64 +#: include/features.php:100 msgid "Mute Post Notifications" msgstr "" -#: include/features.php:64 +#: include/features.php:100 msgid "Ability to mute notifications for a thread" msgstr "" +#: include/features.php:105 +msgid "Advanced Profile Settings" +msgstr "" + +#: include/features.php:106 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "" + #: include/follow.php:77 msgid "Connect URL missing." msgstr "" @@ -6553,23 +6581,27 @@ msgstr "" msgid "Default privacy group for new contacts" msgstr "" -#: include/group.php:228 +#: include/group.php:239 msgid "Everybody" msgstr "" -#: include/group.php:251 +#: include/group.php:262 msgid "edit" msgstr "" -#: include/group.php:273 +#: include/group.php:285 +msgid "Edit groups" +msgstr "" + +#: include/group.php:287 msgid "Edit group" msgstr "" -#: include/group.php:274 +#: include/group.php:288 msgid "Create a new group" msgstr "" -#: include/group.php:277 +#: include/group.php:291 msgid "Contacts not in any group" msgstr "" @@ -6638,176 +6670,184 @@ msgstr "" msgid "%1$d %2$s ago" msgstr "" -#: include/datetime.php:474 include/items.php:2484 +#: include/datetime.php:474 include/items.php:2444 #, php-format msgid "%s's birthday" msgstr "" -#: include/datetime.php:475 include/items.php:2485 +#: include/datetime.php:475 include/items.php:2445 #, php-format msgid "Happy Birthday %s" msgstr "" -#: include/identity.php:38 +#: include/identity.php:43 msgid "Requested account is not available." msgstr "" -#: include/identity.php:121 include/identity.php:255 include/identity.php:608 +#: include/identity.php:126 include/identity.php:265 include/identity.php:625 msgid "Edit profile" msgstr "" -#: include/identity.php:220 +#: include/identity.php:225 +msgid "Atom feed" +msgstr "" + +#: include/identity.php:230 msgid "Message" msgstr "" -#: include/identity.php:226 include/nav.php:185 +#: include/identity.php:236 include/nav.php:185 msgid "Profiles" msgstr "" -#: include/identity.php:226 +#: include/identity.php:236 msgid "Manage/edit profiles" msgstr "" -#: include/identity.php:342 +#: include/identity.php:353 msgid "Network:" msgstr "" -#: include/identity.php:374 include/identity.php:460 +#: include/identity.php:385 include/identity.php:471 msgid "g A l F d" msgstr "" -#: include/identity.php:375 include/identity.php:461 +#: include/identity.php:386 include/identity.php:472 msgid "F d" msgstr "" -#: include/identity.php:420 include/identity.php:507 +#: include/identity.php:431 include/identity.php:518 msgid "[today]" msgstr "" -#: include/identity.php:432 +#: include/identity.php:443 msgid "Birthday Reminders" msgstr "" -#: include/identity.php:433 +#: include/identity.php:444 msgid "Birthdays this week:" msgstr "" -#: include/identity.php:494 +#: include/identity.php:505 msgid "[No description]" msgstr "" -#: include/identity.php:518 +#: include/identity.php:529 msgid "Event Reminders" msgstr "" -#: include/identity.php:519 +#: include/identity.php:530 msgid "Events this week:" msgstr "" -#: include/identity.php:546 +#: include/identity.php:558 msgid "j F, Y" msgstr "" -#: include/identity.php:547 +#: include/identity.php:559 msgid "j F" msgstr "" -#: include/identity.php:554 +#: include/identity.php:566 msgid "Birthday:" msgstr "" -#: include/identity.php:558 +#: include/identity.php:570 msgid "Age:" msgstr "" -#: include/identity.php:567 +#: include/identity.php:579 #, php-format msgid "for %1$d %2$s" msgstr "" -#: include/identity.php:580 +#: include/identity.php:592 msgid "Religion:" msgstr "" -#: include/identity.php:584 +#: include/identity.php:596 msgid "Hobbies/Interests:" msgstr "" -#: include/identity.php:591 +#: include/identity.php:603 msgid "Contact information and Social Networks:" msgstr "" -#: include/identity.php:593 +#: include/identity.php:605 msgid "Musical interests:" msgstr "" -#: include/identity.php:595 +#: include/identity.php:607 msgid "Books, literature:" msgstr "" -#: include/identity.php:597 +#: include/identity.php:609 msgid "Television:" msgstr "" -#: include/identity.php:599 +#: include/identity.php:611 msgid "Film/dance/culture/entertainment:" msgstr "" -#: include/identity.php:601 +#: include/identity.php:613 msgid "Love/Romance:" msgstr "" -#: include/identity.php:603 +#: include/identity.php:615 msgid "Work/employment:" msgstr "" -#: include/identity.php:605 +#: include/identity.php:617 msgid "School/education:" msgstr "" -#: include/identity.php:633 include/nav.php:75 +#: include/identity.php:621 +msgid "Forums:" +msgstr "" + +#: include/identity.php:650 include/nav.php:75 msgid "Status" msgstr "" -#: include/identity.php:636 +#: include/identity.php:653 msgid "Status Messages and Posts" msgstr "" -#: include/identity.php:644 +#: include/identity.php:661 msgid "Profile Details" msgstr "" -#: include/identity.php:657 include/identity.php:660 include/nav.php:78 +#: include/identity.php:674 include/identity.php:677 include/nav.php:78 msgid "Videos" msgstr "" -#: include/identity.php:672 include/nav.php:140 +#: include/identity.php:689 include/nav.php:140 msgid "Events and Calendar" msgstr "" -#: include/identity.php:680 +#: include/identity.php:697 msgid "Only You Can See This" msgstr "" -#: include/acl_selectors.php:324 +#: include/acl_selectors.php:325 msgid "Post to Email" msgstr "" -#: include/acl_selectors.php:329 +#: include/acl_selectors.php:330 #, php-format msgid "Connectors disabled, since \"%s\" is enabled." msgstr "" -#: include/acl_selectors.php:335 +#: include/acl_selectors.php:336 msgid "Visible to everybody" msgstr "" -#: include/acl_selectors.php:336 view/theme/diabook/config.php:142 +#: 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:337 view/theme/diabook/config.php:142 +#: 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 "" @@ -6820,31 +6860,31 @@ msgstr "" msgid "stopped following" msgstr "" -#: include/Contact.php:334 include/conversation.php:911 +#: include/Contact.php:361 include/conversation.php:911 msgid "View Status" msgstr "" -#: include/Contact.php:336 include/conversation.php:913 +#: include/Contact.php:363 include/conversation.php:913 msgid "View Photos" msgstr "" -#: include/Contact.php:337 include/conversation.php:914 +#: include/Contact.php:364 include/conversation.php:914 msgid "Network Posts" msgstr "" -#: include/Contact.php:338 include/conversation.php:915 +#: include/Contact.php:365 include/conversation.php:915 msgid "Edit Contact" msgstr "" -#: include/Contact.php:339 +#: include/Contact.php:366 msgid "Drop Contact" msgstr "" -#: include/Contact.php:340 include/conversation.php:916 +#: include/Contact.php:367 include/conversation.php:916 msgid "Send PM" msgstr "" -#: include/Contact.php:341 include/conversation.php:920 +#: include/Contact.php:368 include/conversation.php:920 msgid "Poke" msgstr "" @@ -7031,278 +7071,283 @@ msgstr "" msgid "Private post" msgstr "" -#: include/conversation.php:1377 +#: include/conversation.php:1386 msgid "View all" msgstr "" -#: include/conversation.php:1399 +#: include/conversation.php:1408 msgid "Like" msgid_plural "Likes" msgstr[0] "" msgstr[1] "" -#: include/conversation.php:1402 +#: include/conversation.php:1411 msgid "Dislike" msgid_plural "Dislikes" msgstr[0] "" msgstr[1] "" -#: include/conversation.php:1408 +#: include/conversation.php:1417 msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "" msgstr[1] "" -#: include/conversation.php:1411 include/profile_selectors.php:6 +#: include/conversation.php:1420 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 +msgid "Forums" +msgstr "" + +#: include/forums.php:107 view/theme/vier/theme.php:261 +msgid "External link to forum" +msgstr "" + #: include/network.php:967 msgid "view full size" msgstr "" -#: include/text.php:299 +#: include/text.php:303 msgid "newer" msgstr "" -#: include/text.php:301 +#: include/text.php:305 msgid "older" msgstr "" -#: include/text.php:306 +#: include/text.php:310 msgid "prev" msgstr "" -#: include/text.php:308 +#: include/text.php:312 msgid "first" msgstr "" -#: include/text.php:340 +#: include/text.php:344 msgid "last" msgstr "" -#: include/text.php:343 +#: include/text.php:347 msgid "next" msgstr "" -#: include/text.php:398 +#: include/text.php:402 msgid "Loading more entries..." msgstr "" -#: include/text.php:399 +#: include/text.php:403 msgid "The end" msgstr "" -#: include/text.php:890 +#: include/text.php:894 msgid "No contacts" msgstr "" -#: include/text.php:905 +#: include/text.php:909 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "" msgstr[1] "" -#: include/text.php:1003 include/nav.php:121 +#: include/text.php:1010 include/nav.php:121 msgid "Full Text" msgstr "" -#: include/text.php:1004 include/nav.php:122 +#: include/text.php:1011 include/nav.php:122 msgid "Tags" msgstr "" -#: include/text.php:1008 include/nav.php:126 -msgid "Forums" -msgstr "" - -#: include/text.php:1059 +#: include/text.php:1066 msgid "poke" msgstr "" -#: include/text.php:1059 +#: include/text.php:1066 msgid "poked" msgstr "" -#: include/text.php:1060 +#: include/text.php:1067 msgid "ping" msgstr "" -#: include/text.php:1060 +#: include/text.php:1067 msgid "pinged" msgstr "" -#: include/text.php:1061 +#: include/text.php:1068 msgid "prod" msgstr "" -#: include/text.php:1061 +#: include/text.php:1068 msgid "prodded" msgstr "" -#: include/text.php:1062 +#: include/text.php:1069 msgid "slap" msgstr "" -#: include/text.php:1062 +#: include/text.php:1069 msgid "slapped" msgstr "" -#: include/text.php:1063 +#: include/text.php:1070 msgid "finger" msgstr "" -#: include/text.php:1063 +#: include/text.php:1070 msgid "fingered" msgstr "" -#: include/text.php:1064 +#: include/text.php:1071 msgid "rebuff" msgstr "" -#: include/text.php:1064 +#: include/text.php:1071 msgid "rebuffed" msgstr "" -#: include/text.php:1078 +#: include/text.php:1085 msgid "happy" msgstr "" -#: include/text.php:1079 +#: include/text.php:1086 msgid "sad" msgstr "" -#: include/text.php:1080 +#: include/text.php:1087 msgid "mellow" msgstr "" -#: include/text.php:1081 +#: include/text.php:1088 msgid "tired" msgstr "" -#: include/text.php:1082 +#: include/text.php:1089 msgid "perky" msgstr "" -#: include/text.php:1083 +#: include/text.php:1090 msgid "angry" msgstr "" -#: include/text.php:1084 +#: include/text.php:1091 msgid "stupified" msgstr "" -#: include/text.php:1085 +#: include/text.php:1092 msgid "puzzled" msgstr "" -#: include/text.php:1086 +#: include/text.php:1093 msgid "interested" msgstr "" -#: include/text.php:1087 +#: include/text.php:1094 msgid "bitter" msgstr "" -#: include/text.php:1088 +#: include/text.php:1095 msgid "cheerful" msgstr "" -#: include/text.php:1089 +#: include/text.php:1096 msgid "alive" msgstr "" -#: include/text.php:1090 +#: include/text.php:1097 msgid "annoyed" msgstr "" -#: include/text.php:1091 +#: include/text.php:1098 msgid "anxious" msgstr "" -#: include/text.php:1092 +#: include/text.php:1099 msgid "cranky" msgstr "" -#: include/text.php:1093 +#: include/text.php:1100 msgid "disturbed" msgstr "" -#: include/text.php:1094 +#: include/text.php:1101 msgid "frustrated" msgstr "" -#: include/text.php:1095 +#: include/text.php:1102 msgid "motivated" msgstr "" -#: include/text.php:1096 +#: include/text.php:1103 msgid "relaxed" msgstr "" -#: include/text.php:1097 +#: include/text.php:1104 msgid "surprised" msgstr "" -#: include/text.php:1490 +#: include/text.php:1497 msgid "bytes" msgstr "" -#: include/text.php:1522 include/text.php:1534 +#: include/text.php:1529 include/text.php:1541 msgid "Click to open/close" msgstr "" -#: include/text.php:1708 +#: include/text.php:1715 msgid "View on separate page" msgstr "" -#: include/text.php:1709 +#: include/text.php:1716 msgid "view on separate page" msgstr "" -#: include/text.php:1990 +#: include/text.php:1997 msgid "activity" msgstr "" -#: include/text.php:1993 +#: include/text.php:2000 msgid "post" msgstr "" -#: include/text.php:2161 +#: include/text.php:2168 msgid "Item filed" msgstr "" -#: include/bbcode.php:474 include/bbcode.php:1132 include/bbcode.php:1133 +#: include/bbcode.php:483 include/bbcode.php:1143 include/bbcode.php:1144 msgid "Image/photo" msgstr "" -#: include/bbcode.php:572 +#: include/bbcode.php:581 #, php-format msgid "%2$s %3$s" msgstr "" -#: include/bbcode.php:606 +#: include/bbcode.php:615 #, php-format msgid "" "%s wrote the following post" msgstr "" -#: include/bbcode.php:1092 include/bbcode.php:1112 +#: include/bbcode.php:1103 include/bbcode.php:1123 msgid "$1 wrote:" msgstr "" -#: include/bbcode.php:1141 include/bbcode.php:1142 +#: include/bbcode.php:1152 include/bbcode.php:1153 msgid "Encrypted content" msgstr "" -#: include/notifier.php:840 include/delivery.php:456 +#: include/notifier.php:843 include/delivery.php:458 msgid "(no subject)" msgstr "" -#: include/notifier.php:850 include/delivery.php:467 include/enotify.php:37 +#: include/notifier.php:853 include/delivery.php:469 include/enotify.php:37 msgid "noreply" msgstr "" @@ -7395,7 +7440,7 @@ msgstr "" msgid "Redmatrix" msgstr "" -#: include/Scrape.php:603 +#: include/Scrape.php:610 msgid " on Last.fm" msgstr "" @@ -7407,15 +7452,15 @@ msgstr "" msgid "Finishes:" msgstr "" -#: include/plugin.php:458 include/plugin.php:460 +#: include/plugin.php:522 include/plugin.php:524 msgid "Click here to upgrade." msgstr "" -#: include/plugin.php:466 +#: include/plugin.php:530 msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: include/plugin.php:471 +#: include/plugin.php:535 msgid "This action is not available under your subscription plan." msgstr "" @@ -7572,42 +7617,42 @@ msgid "Site map" msgstr "" #: include/api.php:321 include/api.php:332 include/api.php:441 -#: include/api.php:1151 include/api.php:1153 +#: include/api.php:1160 include/api.php:1162 msgid "User not found." msgstr "" -#: include/api.php:799 +#: include/api.php:808 #, php-format msgid "Daily posting limit of %d posts reached. The post was rejected." msgstr "" -#: include/api.php:818 +#: include/api.php:827 #, php-format msgid "Weekly posting limit of %d posts reached. The post was rejected." msgstr "" -#: include/api.php:837 +#: include/api.php:846 #, php-format msgid "Monthly posting limit of %d posts reached. The post was rejected." msgstr "" -#: include/api.php:1360 +#: include/api.php:1369 msgid "There is no status with this id." msgstr "" -#: include/api.php:1434 +#: include/api.php:1443 msgid "There is no conversation with this id." msgstr "" -#: include/api.php:1713 +#: include/api.php:1722 msgid "Invalid item." msgstr "" -#: include/api.php:1723 +#: include/api.php:1732 msgid "Invalid action. " msgstr "" -#: include/api.php:1731 +#: include/api.php:1740 msgid "DB error" msgstr "" @@ -7655,37 +7700,38 @@ msgstr "" msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." msgstr "" -#: include/user.php:146 include/user.php:244 +#: include/user.php:147 include/user.php:245 msgid "Nickname is already registered. Please choose another." msgstr "" -#: include/user.php:156 +#: include/user.php:157 msgid "" "Nickname was once registered here and may not be re-used. Please choose " "another." msgstr "" -#: include/user.php:172 +#: include/user.php:173 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "" -#: include/user.php:230 +#: include/user.php:231 msgid "An error occurred during registration. Please try again." msgstr "" -#: include/user.php:255 view/theme/duepuntozero/config.php:44 +#: include/user.php:256 view/theme/clean/config.php:56 +#: view/theme/duepuntozero/config.php:44 msgid "default" msgstr "" -#: include/user.php:265 +#: include/user.php:266 msgid "An error occurred creating your default profile. Please try again." msgstr "" -#: include/user.php:297 include/user.php:301 include/profile_selectors.php:42 +#: include/user.php:299 include/user.php:303 include/profile_selectors.php:42 msgid "Friends" msgstr "" -#: include/user.php:385 +#: include/user.php:387 #, php-format msgid "" "\n" @@ -7694,7 +7740,7 @@ msgid "" "\t" msgstr "" -#: include/user.php:389 +#: include/user.php:391 #, php-format msgid "" "\n" @@ -7737,11 +7783,11 @@ msgstr "" msgid "Attachments:" msgstr "" -#: include/items.php:4933 +#: include/items.php:4871 msgid "Do you really want to delete this item?" msgstr "" -#: include/items.php:5208 +#: include/items.php:5146 msgid "Archives" msgstr "" @@ -8319,6 +8365,7 @@ msgid "Set theme width" msgstr "" #: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 +#: view/theme/clean/config.php:88 msgid "Color scheme" msgstr "" @@ -8372,7 +8419,7 @@ 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 view/theme/vier/theme.php:230 +#: view/theme/vier/config.php:111 msgid "Community Pages" msgstr "" @@ -8383,7 +8430,7 @@ 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:142 +#: view/theme/vier/theme.php:156 msgid "Community Profiles" msgstr "" @@ -8394,19 +8441,19 @@ 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:348 +#: 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:189 +#: 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:171 +#: view/theme/vier/theme.php:185 msgid "Last users" msgstr "" @@ -8428,7 +8475,7 @@ msgstr "" msgid "Your personal photos" msgstr "" -#: view/theme/diabook/theme.php:524 view/theme/vier/theme.php:190 +#: view/theme/diabook/theme.php:524 view/theme/vier/theme.php:204 msgid "Local Directory" msgstr "" @@ -8440,6 +8487,56 @@ msgstr "" msgid "Show/hide boxes at right-hand column:" msgstr "" +#: view/theme/clean/config.php:57 +msgid "Midnight" +msgstr "" + +#: view/theme/clean/config.php:58 +msgid "Zenburn" +msgstr "" + +#: view/theme/clean/config.php:59 +msgid "Bootstrap" +msgstr "" + +#: view/theme/clean/config.php:60 +msgid "Shades of Pink" +msgstr "" + +#: view/theme/clean/config.php:61 +msgid "Lime and Orange" +msgstr "" + +#: view/theme/clean/config.php:62 +msgid "GeoCities Retro" +msgstr "" + +#: view/theme/clean/config.php:86 +msgid "Background Image" +msgstr "" + +#: view/theme/clean/config.php:86 +msgid "" +"The URL to a picture (e.g. from your photo album) that should be used as " +"background image." +msgstr "" + +#: view/theme/clean/config.php:87 +msgid "Background Color" +msgstr "" + +#: view/theme/clean/config.php:87 +msgid "HEX value for the background color. Don't include the #" +msgstr "" + +#: view/theme/clean/config.php:89 +msgid "font size" +msgstr "" + +#: view/theme/clean/config.php:89 +msgid "base font size for your interface" +msgstr "" + #: view/theme/vier/config.php:64 msgid "Comma separated list of helper forums" msgstr "" @@ -8448,11 +8545,7 @@ msgstr "" msgid "Set style" msgstr "" -#: view/theme/vier/theme.php:234 -msgid "External link to forum" -msgstr "" - -#: view/theme/vier/theme.php:266 +#: view/theme/vier/theme.php:295 msgid "Quick Start" msgstr "" From 39b85c848615f1b19c61292736913d6acad3292e Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Mon, 30 Nov 2015 16:00:41 +0100 Subject: [PATCH 358/443] vier event_form: include bb-tags for editing --- view/templates/event_form.tpl | 7 +-- view/templates/event_head.tpl | 4 ++ view/theme/vier/style.css | 7 +++ view/theme/vier/templates/event_form.tpl | 74 ++++++++++++++++++++++++ 4 files changed, 88 insertions(+), 4 deletions(-) create mode 100644 view/theme/vier/templates/event_form.tpl diff --git a/view/templates/event_form.tpl b/view/templates/event_form.tpl index 63d1e827ba..1c065477b2 100644 --- a/view/templates/event_form.tpl +++ b/view/templates/event_form.tpl @@ -29,15 +29,15 @@
    {{$t_text}}
    - +
    {{$d_text}}
    - +
    {{$l_text}}
    - +
    @@ -51,4 +51,3 @@ - diff --git a/view/templates/event_head.tpl b/view/templates/event_head.tpl index ceb251a9e2..745327e992 100644 --- a/view/templates/event_head.tpl +++ b/view/templates/event_head.tpl @@ -138,6 +138,10 @@ } }); + + $(document).ready(function() { + $('.comment-edit-bb').hide(); + }); {{else}} diff --git a/view/theme/quattro/templates/events-js.tpl b/view/theme/quattro/templates/events-js.tpl new file mode 100644 index 0000000000..ec8aa586cc --- /dev/null +++ b/view/theme/quattro/templates/events-js.tpl @@ -0,0 +1,7 @@ + +{{$tabs}} +

    {{$title}} {{$new_event.1}}

    + + + +
    diff --git a/view/theme/quattro/templates/events.tpl b/view/theme/quattro/templates/events.tpl new file mode 100644 index 0000000000..7a50498ebd --- /dev/null +++ b/view/theme/quattro/templates/events.tpl @@ -0,0 +1,24 @@ + +{{$tabs}} +

    {{$title}} {{$new_event.1}}

    + + +
    + + {{$calendar}} + +
    +
    + + +{{foreach $events as $event}} +
    + {{if $event.is_first}}
    {{$event.d}}
    {{/if}} + {{if $event.item.author_name}}{{$event.item.author_name}}{{/if}} + {{$event.html}} + {{if $event.item.plink}}{{/if}} + {{if $event.edit}}{{/if}} +
    +
    + +{{/foreach}} From 37a70d3204358bb6f55126ef3c47959cddb656e7 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 4 Dec 2015 19:49:09 +0000 Subject: [PATCH 393/443] modified: include/dbstructure.php removed uneeded break; It causes errors with php 7.0. --- include/dbstructure.php | 1 - 1 file changed, 1 deletion(-) diff --git a/include/dbstructure.php b/include/dbstructure.php index 0dd74ab15f..2078c208a2 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -62,7 +62,6 @@ function update_fail($update_id, $error_message){ */ //try the logger logger("CRITICAL: Database structure update failed: ".$retval); - break; } From f849ff0155b1119523227cdb2a8bfa5707ae02a9 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 4 Dec 2015 21:31:33 +0100 Subject: [PATCH 394/443] SV messages.po regenerated from strings.php --- view/sv/messages.po | 3988 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 3988 insertions(+) create mode 100644 view/sv/messages.po diff --git a/view/sv/messages.po b/view/sv/messages.po new file mode 100644 index 0000000000..9bd0b732fc --- /dev/null +++ b/view/sv/messages.po @@ -0,0 +1,3988 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-12-04 20:30:51+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Not Found" +msgstr "Hittar inte" + +msgid "Page not found." +msgstr "Sidan hittades inte." + +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" + +msgid "Connect" +msgstr "Skicka kontaktförfrågan" + +msgid "Location:" +msgstr "Plats:" + +msgid ", " +msgstr ", " + +msgid "Gender:" +msgstr "Kön:" + +msgid "Status:" +msgstr "Status:" + +msgid "Homepage:" +msgstr "Hemsida:" + +msgid "Monday" +msgstr "måndag" + +msgid "Tuesday" +msgstr "tisdag" + +msgid "Wednesday" +msgstr "onsdag" + +msgid "Thursday" +msgstr "torsdag" + +msgid "Friday" +msgstr "fredag" + +msgid "Saturday" +msgstr "lördag" + +msgid "Sunday" +msgstr "söndag" + +msgid "January" +msgstr "januari" + +msgid "February" +msgstr "februari" + +msgid "March" +msgstr "mars" + +msgid "April" +msgstr "april" + +msgid "May" +msgstr "maj" + +msgid "June" +msgstr "juni" + +msgid "July" +msgstr "juli" + +msgid "August" +msgstr "augusti" + +msgid "September" +msgstr "september" + +msgid "October" +msgstr "oktober" + +msgid "November" +msgstr "november" + +msgid "December" +msgstr "december" + +msgid "g A l F d" +msgstr "g A l F d" + +msgid "Birthday Reminders" +msgstr "Födelsedagspåminnelser" + +msgid "Birthdays this week:" +msgstr "Födelsedagar denna vecka:" + +msgid "(Adjusted for local time)" +msgstr "(Justerat till lokal tid)" + +msgid "[today]" +msgstr "[idag]" + +msgid "link to source" +msgstr "länk till källa" + +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d kontakt" +msgstr[1] "%d kontakter" + +msgid "Normal View" +msgstr "Byt till normalvy" + +msgid "New Item View" +msgstr "Visa nya inlägg överst" + +#, 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." + +#, 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" + +#, 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" + +#, php-format +msgid "Connection accepted at %s" +msgstr "Kontaktförfrågan beviljad - %s" + +msgid "Administrator" +msgstr "Admin" + +msgid "noreply" +msgstr "noreply" + +#, php-format +msgid "%s commented on an item at %s" +msgstr "%s har kommenterat ett inlägg på %s" + +msgid "This introduction has already been accepted." +msgstr "Den här förfrågan har redan beviljats." + +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" + +#, 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." + +msgid "Connected to database." +msgstr "Ansluten till databasen." + +msgid "Proceed with Installation" +msgstr "Fortsätt med installationen" + +msgid "Your Friendica site database has been installed." +msgstr "Databasen för din friendicasajt har installerats." + +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." + +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Se filen \"INSTALL.txt\"." + +msgid "Proceed to registration" +msgstr "Gå vidare till registreringen" + +msgid "Database import failed." +msgstr "Det gick inte att importera databasen." + +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." + +msgid "Welcome to Friendica." +msgstr "Välkommen till Friendica." + +msgid "Friendica Social Network" +msgstr "Det sociala nätverket Friendica" + +msgid "Installation" +msgstr "Installation" + +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." + +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." + +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." + +msgid "Database Server Name" +msgstr "Database Server Name" + +msgid "Database Login Name" +msgstr "Database Login Name" + +msgid "Database Login Password" +msgstr "Database Login Password" + +msgid "Database Name" +msgstr "Database Name" + +msgid "Please select a default timezone for your website" +msgstr "Please select a default timezone for your website" + +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." + +msgid "This is required. Please adjust the configuration file .htconfig.php accordingly." +msgstr "This is required. Please adjust the configuration file .htconfig.php accordingly." + +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." + +msgid "This is required for message delivery to work." +msgstr "Det krävs för att meddelanden ska kunna levereras." + +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" + +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." + +msgid "Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: Apache webserver mod-rewrite module is required but not installed." + +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: libCURL PHP module required but not installed." + +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." + +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: openssl PHP module required but not installed." + +msgid "Error: mysqli PHP module required but not installed." +msgstr "Error: mysqli PHP module required but not installed." + +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." + +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." + +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." + +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." + +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." + +msgid "Errors encountered creating database tables." +msgstr "Fel vid skapandet av databastabeller." + +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Ogiltig e-postadress." + +#, 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:" + +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d meddelande har skickats." +msgstr[1] "%d meddelanden har skickats." + +msgid "Unable to locate original post." +msgstr "Hittar inte det ursprungliga inlägget." + +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" + +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å" + +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." + +#, php-format +msgid "%s posted an update." +msgstr "%s har gjort ett inlägg." + +msgid "photo" +msgstr "bild" + +msgid "status" +msgstr "status" + +#, 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 "No contacts." +msgstr "Inga kontakter." + +msgid "Visible To:" +msgstr "Synlig för:" + +msgid "Groups" +msgstr "Grupper" + +msgid "Except For:" +msgstr "Utom för:" + +msgid "Logged out." +msgstr "Utloggad." + +msgid "Unknown | Not categorised" +msgstr "Okänd | Inte kategoriserad" + +msgid "Block immediately" +msgstr "Spärra omedelbart" + +msgid "Shady, spammer, self-marketer" +msgstr "Skum, spammare, reklamspridare" + +msgid "Known to me, but no opinion" +msgstr "Jag vet vem det är, men har ingen åsikt" + +msgid "OK, probably harmless" +msgstr "OK, antagligen harmlös" + +msgid "Reputable, has my trust" +msgstr "Pålitlig, jag litar på personen" + +msgid "Frequently" +msgstr "Ofta" + +msgid "Hourly" +msgstr "En gång i timmen" + +msgid "Twice daily" +msgstr "Två gånger om dagen" + +msgid "Daily" +msgstr "Dagligen" + +msgid "Weekly" +msgstr "Veckovis" + +msgid "Monthly" +msgstr "Månadsvis" + +#, php-format +msgid "View %s's profile" +msgstr "Gå till profilen som tillhör %s " + +msgid "View in context" +msgstr "Visa i sitt sammanhang" + +msgid "See more posts like this" +msgstr "Leta inlägg som liknar det här" + +#, php-format +msgid "See all %d comments" +msgstr "Visa alla %d kommentarer" + +msgid "to" +msgstr "till" + +msgid "Wall-to-Wall" +msgstr "Profil-till-profil" + +msgid "via Wall-To-Wall:" +msgstr "via profil-till-profil:" + +#, php-format +msgid "%s likes this." +msgstr "%s gillar det här." + +#, php-format +msgid "%s doesn't like this." +msgstr "%s ogillar det här." + +#, 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" + From b57ae80206088ab9edeb04bde7f0e0aa51169720 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 5 Dec 2015 23:05:48 +0100 Subject: [PATCH 395/443] Issue 2122: Make sure to always return the correct number of entries --- include/socgraph.php | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/include/socgraph.php b/include/socgraph.php index 69d3308986..47df52f380 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -1188,14 +1188,15 @@ function suggestion_query($uid, $start = 0, $limit = 80) { $sql_network = "'".$sql_network."'"; $r = q("SELECT count(glink.gcid) as `total`, gcontact.* from gcontact - INNER JOIN glink on glink.gcid = gcontact.id + INNER JOIN `glink` ON `glink`.`gcid` = `gcontact`.`id` where uid = %d and not gcontact.nurl in ( select nurl from contact where uid = %d ) - and not gcontact.name in ( select name from contact where uid = %d ) - and not gcontact.id in ( select gcid from gcign where uid = %d ) + AND NOT `gcontact`.`name` IN (SELECT `name` FROM `contact` WHERE `uid` = %d) + AND NOT `gcontact`.`id` IN (SELECT `gcid` FROM `gcign` WHERE `uid` = %d) AND `gcontact`.`updated` != '0000-00-00 00:00:00' AND `gcontact`.`last_contact` >= `gcontact`.`last_failure` AND `gcontact`.`network` IN (%s) - group by glink.gcid order by gcontact.updated desc,total desc limit %d, %d ", + AND NOT `gcontact`.`id` IN (SELECT `gcid` FROM `gcign` WHERE `uid` = %d) + GROUP BY `glink`.`gcid` ORDER BY `gcontact`.`updated` DESC,`total` DESC LIMIT %d, %d", intval($uid), intval($uid), intval($uid), @@ -1208,14 +1209,15 @@ function suggestion_query($uid, $start = 0, $limit = 80) { if(count($r) && count($r) >= ($limit -1)) return $r; - $r2 = q("SELECT gcontact.* from gcontact - INNER JOIN glink on glink.gcid = gcontact.id - where glink.uid = 0 and glink.cid = 0 and glink.zcid = 0 and not gcontact.nurl in ( select nurl from contact where uid = %d ) - and not gcontact.name in ( select name from contact where uid = %d ) - and not gcontact.id in ( select gcid from gcign where uid = %d ) + $r2 = q("SELECT gcontact.* FROM gcontact + INNER JOIN `glink` ON `glink`.`gcid` = `gcontact`.`id` + WHERE `glink`.`uid` = 0 AND `glink`.`cid` = 0 AND `glink`.`zcid` = 0 AND NOT `gcontact`.`nurl` IN (SELECT `nurl` FROM `contact` WHERE `uid` = %d) + AND NOT `gcontact`.`name` IN (SELECT `name` FROM `contact` WHERE `uid` = %d) + AND NOT `gcontact`.`id` IN (SELECT `gcid` FROM `gcign` WHERE `uid` = %d) AND `gcontact`.`updated` != '0000-00-00 00:00:00' + AND `gcontact`.`last_contact` >= `gcontact`.`last_failure` AND `gcontact`.`network` IN (%s) - order by rand() limit %d, %d ", + ORDER BY rand() LIMIT %d, %d", intval($uid), intval($uid), intval($uid), @@ -1231,6 +1233,9 @@ function suggestion_query($uid, $start = 0, $limit = 80) { foreach ($r AS $suggestion) $list[$suggestion["nurl"]] = $suggestion; + while (sizeof($list) > ($limit)) + array_pop($list); + return $list; } From 01c9d13927da443995f57d38ac2fcf53cc9a0794 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 5 Dec 2015 23:29:42 +0100 Subject: [PATCH 396/443] Issue 1871: Show an information if a group is empty --- mod/group.php | 3 ++- view/templates/groupeditor.tpl | 6 +++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/mod/group.php b/mod/group.php index e9f9561f46..5b28784f56 100644 --- a/mod/group.php +++ b/mod/group.php @@ -190,6 +190,7 @@ function group_content(&$a) { 'label_members' => t('Members'), 'members' => array(), 'label_contacts' => t('All Contacts'), + 'group_is_empty' => t('Group is empty'), 'contacts' => array(), ); @@ -204,7 +205,7 @@ function group_content(&$a) { group_rmv_member(local_user(),$group['name'],$member['id']); } - $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 and `pending` = 0 and `self` = 0 ORDER BY `name` ASC", + $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND NOT `blocked` AND NOT `pending` AND NOT `self` ORDER BY `name` ASC", intval(local_user()) ); diff --git a/view/templates/groupeditor.tpl b/view/templates/groupeditor.tpl index b0f267dde9..86458ded2e 100644 --- a/view/templates/groupeditor.tpl +++ b/view/templates/groupeditor.tpl @@ -2,7 +2,11 @@

    {{$groupeditor.label_members}}

    -{{foreach $groupeditor.members as $c}} {{$c}} {{/foreach}} +{{if $groupeditor.members }} + {{foreach $groupeditor.members as $c}} {{$c}} {{/foreach}} +{{else}} +{{$groupeditor.group_is_empty}} +{{/if}}

    From f406e5ddbd4f0e1184f7d7f04c45c70c2ad3fb65 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 6 Dec 2015 00:18:59 +0100 Subject: [PATCH 397/443] Issue 1921: Disable the auto update --- boot.php | 5 +++++ mod/settings.php | 13 ++++++++----- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/boot.php b/boot.php index fb65eff22c..19cfd71a8a 100644 --- a/boot.php +++ b/boot.php @@ -734,6 +734,11 @@ if(! class_exists('App')) { function init_pagehead() { $interval = ((local_user()) ? get_pconfig(local_user(),'system','update_interval') : 40000); + + // If the update is "deactivated" set it to the highest integer number (~24 days) + if ($interval < 0) + $interval = 2147483647; + if($interval < 10000) $interval = 40000; diff --git a/mod/settings.php b/mod/settings.php index 77a5755855..02a6955a00 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -289,9 +289,11 @@ function settings_post(&$a) { $infinite_scroll = ((x($_POST,'infinite_scroll')) ? intval($_POST['infinite_scroll']) : 0); $no_auto_update = ((x($_POST,'no_auto_update')) ? intval($_POST['no_auto_update']) : 0); $browser_update = ((x($_POST,'browser_update')) ? intval($_POST['browser_update']) : 0); - $browser_update = $browser_update * 1000; - if($browser_update < 10000) - $browser_update = 10000; + if ($browser_update != -1) { + $browser_update = $browser_update * 1000; + if ($browser_update < 10000) + $browser_update = 10000; + } $itemspage_network = ((x($_POST,'itemspage_network')) ? intval($_POST['itemspage_network']) : 40); if($itemspage_network > 100) @@ -921,7 +923,8 @@ function settings_content(&$a) { $mobile_theme_selected = (!x($_SESSION,'mobile-theme')? $default_mobile_theme : $_SESSION['mobile-theme']); $browser_update = intval(get_pconfig(local_user(), 'system','update_interval')); - $browser_update = (($browser_update == 0) ? 40 : $browser_update / 1000); // default if not set: 40 seconds + if (intval($browser_update) != -1) + $browser_update = (($browser_update == 0) ? 40 : $browser_update / 1000); // default if not set: 40 seconds $itemspage_network = intval(get_pconfig(local_user(), 'system','itemspage_network')); $itemspage_network = (($itemspage_network > 0 && $itemspage_network < 101) ? $itemspage_network : 40); // default if not set: 40 items @@ -960,7 +963,7 @@ function settings_content(&$a) { '$theme' => array('theme', t('Display Theme:'), $theme_selected, '', $themes, true), '$mobile_theme' => array('mobile_theme', t('Mobile Theme:'), $mobile_theme_selected, '', $mobile_themes, false), - '$ajaxint' => array('browser_update', t("Update browser every xx seconds"), $browser_update, t('Minimum of 10 seconds, no maximum')), + '$ajaxint' => array('browser_update', t("Update browser every xx seconds"), $browser_update, t('Minimum of 10 seconds. Enter -1 to disable it.')), '$itemspage_network' => array('itemspage_network', t("Number of items to display per page:"), $itemspage_network, t('Maximum of 100 items')), '$itemspage_mobile_network' => array('itemspage_mobile_network', t("Number of items to display per page when viewed from mobile device:"), $itemspage_mobile_network, t('Maximum of 100 items')), '$nosmile' => array('nosmile', t("Don't show emoticons"), $nosmile, ''), From 7c7baa77d67b1e4fa82d77081e969a70e4094237 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 6 Dec 2015 12:15:31 +0100 Subject: [PATCH 398/443] probe_url: Only cache successful results --- include/Scrape.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Scrape.php b/include/Scrape.php index 4f9d675c18..af90a07506 100644 --- a/include/Scrape.php +++ b/include/Scrape.php @@ -831,7 +831,7 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { } // Only store into the cache if the value seems to be valid - if ($result['network'] != NETWORK_FEED) + if ($result['network'] != NETWORK_PHANTOM) Cache::set("probe_url:".$mode.":".$url,serialize($result), CACHE_DAY); return $result; From 54085508e5a6d7971158771f60845aa293de1d46 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 6 Dec 2015 16:28:28 +0100 Subject: [PATCH 399/443] Double check for maximum number of workers --- include/poller.php | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/include/poller.php b/include/poller.php index 45740dab62..3b348531c5 100644 --- a/include/poller.php +++ b/include/poller.php @@ -56,12 +56,17 @@ function poller_run(&$argv, &$argc){ // But: Update processes (like the database update) mustn't be killed } - } else - // Sleep two seconds before checking for running processes to avoid having too many workers + } else { + // Checking the number of workers + if (poller_too_much_workers(1)) + return; + + // Sleep four seconds before checking for running processes again to avoid having too many workers sleep(4); + } // Checking number of workers - if (poller_too_much_workers()) + if (poller_too_much_workers(2)) return; $starttime = time(); @@ -114,13 +119,13 @@ function poller_run(&$argv, &$argc){ return; // Count active workers and compare them with a maximum value that depends on the load - if (poller_too_much_workers()) + if (poller_too_much_workers(3)) return; } } -function poller_too_much_workers() { +function poller_too_much_workers($stage) { $queues = get_config("system", "worker_queues"); @@ -144,7 +149,7 @@ function poller_too_much_workers() { $slope = $maxworkers / pow($maxsysload, $exponent); $queues = ceil($slope * pow(max(0, $maxsysload - $load), $exponent)); - logger("Current load: ".$load." - maximum: ".$maxsysload." - current queues: ".$active." - maximum: ".$queues, LOGGER_DEBUG); + logger("Current load stage ".$stage.": ".$load." - maximum: ".$maxsysload." - current queues: ".$active." - maximum: ".$queues, LOGGER_DEBUG); } From 9f8da37c99db9b66c164d4fbeb7b4e15bec19d32 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 6 Dec 2015 16:40:31 +0100 Subject: [PATCH 400/443] Move the process check at the beginning of the script --- include/poller.php | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/include/poller.php b/include/poller.php index 3b348531c5..06a5314a4f 100644 --- a/include/poller.php +++ b/include/poller.php @@ -38,6 +38,10 @@ function poller_run(&$argv, &$argc){ } } + // Checking the number of workers + if (poller_too_much_workers(1)) + return; + if(($argc <= 1) OR ($argv[1] != "no_cron")) { // Run the cron job that calls all other jobs proc_run("php","include/cron.php"); @@ -56,14 +60,9 @@ function poller_run(&$argv, &$argc){ // But: Update processes (like the database update) mustn't be killed } - } else { - // Checking the number of workers - if (poller_too_much_workers(1)) - return; - + } else // Sleep four seconds before checking for running processes again to avoid having too many workers sleep(4); - } // Checking number of workers if (poller_too_much_workers(2)) From f880bdd33b44667959a04dd9e44eacbf31d42f3a Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 6 Dec 2015 18:52:19 +0100 Subject: [PATCH 401/443] Workaround for misconfigured Friendica servers --- include/Scrape.php | 42 ++++++++++++++++++++++++++++++++++++++++-- mod/noscrape.php | 1 + 2 files changed, 41 insertions(+), 2 deletions(-) diff --git a/include/Scrape.php b/include/Scrape.php index af90a07506..b7df8e04fe 100644 --- a/include/Scrape.php +++ b/include/Scrape.php @@ -632,9 +632,7 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { if ($connectornetworks) $check_feed = false; - if($check_feed) { - $feedret = scrape_feed(($poll) ? $poll : $url); logger('probe_url: scrape_feed ' . (($poll)? $poll : $url) . ' returns: ' . print_r($feedret,true), LOGGER_DATA); @@ -726,6 +724,46 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { } } + // Workaround for misconfigured Friendica servers + if (($network == "") AND (strstr($url, "/profile/"))) { + $noscrape = str_replace("/profile/", "/noscrape/", $url); + $noscrapejson = fetch_url($noscrape); + if ($noscrapejson) { + + $network = NETWORK_DFRN; + + $poco = str_replace("/profile/", "/poco/", $url); + + $noscrapedata = json_decode($noscrapejson, true); + + if (isset($noscrapedata["addr"])) + $addr = $noscrapedata["addr"]; + + if (isset($noscrapedata["fn"])) + $vcard["fn"] = $noscrapedata["fn"]; + + if (isset($noscrapedata["key"])) + $pubkey = $noscrapedata["key"]; + + if (isset($noscrapedata["photo"])) + $vcard["photo"] = $noscrapedata["photo"]; + + if (isset($noscrapedata["dfrn-request"])) + $request = $noscrapedata["dfrn-request"]; + + if (isset($noscrapedata["dfrn-confirm"])) + $confirm = $noscrapedata["dfrn-confirm"]; + + if (isset($noscrapedata["dfrn-notify"])) + $notify = $noscrapedata["dfrn-notify"]; + + if (isset($noscrapedata["dfrn-poll"])) + $poll = $noscrapedata["dfrn-poll"]; + +// print_r($noscrapedata); + } + } + if((! $vcard['photo']) && strlen($email)) $vcard['photo'] = avatar_img($email); if($poll === $profile) diff --git a/mod/noscrape.php b/mod/noscrape.php index 34d5254fc0..51bd7234cf 100644 --- a/mod/noscrape.php +++ b/mod/noscrape.php @@ -24,6 +24,7 @@ function noscrape_init(&$a) { $json_info = array( 'fn' => $a->profile['name'], + 'addr' => $a->profile['addr'], 'key' => $a->profile['pubkey'], 'homepage' => $a->get_baseurl()."/profile/{$which}", 'comm' => (x($a->profile,'page-flags')) && ($a->profile['page-flags'] == PAGE_COMMUNITY), From d06717798b717c0b754d7a5051fa437d22b07067 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 6 Dec 2015 18:57:23 +0100 Subject: [PATCH 402/443] Code beautification --- include/Scrape.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/Scrape.php b/include/Scrape.php index b7df8e04fe..6ee3dabfca 100644 --- a/include/Scrape.php +++ b/include/Scrape.php @@ -632,7 +632,9 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { if ($connectornetworks) $check_feed = false; + if($check_feed) { + $feedret = scrape_feed(($poll) ? $poll : $url); logger('probe_url: scrape_feed ' . (($poll)? $poll : $url) . ' returns: ' . print_r($feedret,true), LOGGER_DATA); @@ -760,7 +762,6 @@ function probe_url($url, $mode = PROBE_NORMAL, $level = 1) { if (isset($noscrapedata["dfrn-poll"])) $poll = $noscrapedata["dfrn-poll"]; -// print_r($noscrapedata); } } From fbbba6828b16cffaa6f9c70f5902d98b80678640 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 6 Dec 2015 20:04:33 +0100 Subject: [PATCH 403/443] Some better logging --- include/poller.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/poller.php b/include/poller.php index 06a5314a4f..8c102a66b9 100644 --- a/include/poller.php +++ b/include/poller.php @@ -104,10 +104,10 @@ function poller_run(&$argv, &$argc){ $funcname=str_replace(".php", "", basename($argv[0]))."_run"; if (function_exists($funcname)) { - logger("Process ".getmypid().": ".$funcname." ".$r[0]["parameter"]); + logger("Process ".getmypid()." - ID ".$r[0]["id"].": ".$funcname." ".$r[0]["parameter"]); $funcname($argv, $argc); - logger("Process ".getmypid().": ".$funcname." - done"); + logger("Process ".getmypid()." - ID ".$r[0]["id"].": ".$funcname." - done"); q("DELETE FROM `workerqueue` WHERE `id` = %d", intval($r[0]["id"])); } else From 6b0b9481cb028f0acf8904d4f3c2c06b4a1384f1 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 6 Dec 2015 20:05:57 +0100 Subject: [PATCH 404/443] Bugfix for pull request #2147 (Fix for issue #2122) --- include/socgraph.php | 1 - 1 file changed, 1 deletion(-) diff --git a/include/socgraph.php b/include/socgraph.php index 47df52f380..559b1832b2 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -1195,7 +1195,6 @@ function suggestion_query($uid, $start = 0, $limit = 80) { AND `gcontact`.`updated` != '0000-00-00 00:00:00' AND `gcontact`.`last_contact` >= `gcontact`.`last_failure` AND `gcontact`.`network` IN (%s) - AND NOT `gcontact`.`id` IN (SELECT `gcid` FROM `gcign` WHERE `uid` = %d) GROUP BY `glink`.`gcid` ORDER BY `gcontact`.`updated` DESC,`total` DESC LIMIT %d, %d", intval($uid), intval($uid), From bcf7e673c99610acc3f3cdcdb8513062f7d9255b Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 6 Dec 2015 22:01:20 +0100 Subject: [PATCH 405/443] Issue 1924: New configuration value for permitting crawler access --- doc/htconfig.md | 2 ++ mod/search.php | 20 +++++++++++++++----- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/doc/htconfig.md b/doc/htconfig.md index d46abb3a0b..4764c287c8 100644 --- a/doc/htconfig.md +++ b/doc/htconfig.md @@ -44,6 +44,8 @@ line to your .htconfig.php: * ostatus_poll_timeframe - Defines how old an item can be to try to complete the conversation with it. * paranoia (Boolean) - Log out users if their IP address changed. * permit_crawling (Boolean) - Restricts the search for not logged in users to one search per minute. +* free_crawls - Number of "free" searches when "permit_crawling" is activated (Default value is 10) +* crawl_permit_period - Period in seconds between allowed searches when the number of free searches is reached and "permit_crawling" is activated (Default value is 60) * png_quality - Default value is 8. * proc_windows (Boolean) - Should be enabled if Friendica is running under Windows. * proxy_cache_time - Time after which the cache is cleared. Default value is one day. diff --git a/mod/search.php b/mod/search.php index c15dfae3fe..7c78339c70 100644 --- a/mod/search.php +++ b/mod/search.php @@ -104,20 +104,30 @@ function search_content(&$a) { } if (get_config('system','permit_crawling') AND !local_user()) { - // To-Do: - // - 10 requests are "free", after the 11th only a call per minute is allowed + // Default values: + // 10 requests are "free", after the 11th only a call per minute is allowed + + $free_crawls = intval(get_config('system','free_crawls')); + if ($free_crawls == 0) + $free_crawls = 10; + + $crawl_permit_period = intval(get_config('system','crawl_permit_period')); + if ($crawl_permit_period == 0) + $crawl_permit_period = 10; $remote = $_SERVER["REMOTE_ADDR"]; $result = Cache::get("remote_search:".$remote); if (!is_null($result)) { - if ($result > (time() - 60)) { + $resultdata = json_decode($result); + if (($resultdata->time > (time() - $crawl_permit_period)) AND ($resultdata->accesses > $free_crawls)) { http_status_exit(429, array("title" => t("Too Many Requests"), "description" => t("Only one search per minute is permitted for not logged in users."))); killme(); } - } - Cache::set("remote_search:".$remote, time(), CACHE_HOUR); + Cache::set("remote_search:".$remote, json_encode(array("time" => time(), "accesses" => $resultdata->accesses + 1)), CACHE_HOUR); + } else + Cache::set("remote_search:".$remote, json_encode(array("time" => time(), "accesses" => 1)), CACHE_HOUR); } nav_set_selected('search'); From 1fb636ba1ef406c2ea6913479f9cd314f58a9b03 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 7 Dec 2015 21:45:33 +0100 Subject: [PATCH 406/443] Vier: The line-height seems to make problems with windows --- view/theme/vier/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/view/theme/vier/style.css b/view/theme/vier/style.css index 1b4fc450bf..befe47ad6b 100644 --- a/view/theme/vier/style.css +++ b/view/theme/vier/style.css @@ -958,7 +958,7 @@ right_aside { font-size: 13px; overflow-y: auto; z-index: 2; - line-height: 17px; + /* line-height: 17px; */ color: #737373; box-shadow: 1px 2px 0px 0px #D8D8D8; top: 32px; @@ -983,7 +983,7 @@ aside { top: 32px; overflow-y: auto; z-index: 2; - line-height: 17px; + /* line-height: 17px; */ position: fixed; /* overflow: auto; */ height: 100%; From 29e9a7947e2ae70b88fa8f99e30ab693e27d2d6e Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Mon, 7 Dec 2015 23:24:55 +0100 Subject: [PATCH 407/443] Update FRIENDICA_VERSION --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 19cfd71a8a..0f4cacb5fd 100644 --- a/boot.php +++ b/boot.php @@ -17,7 +17,7 @@ require_once('include/dbstructure.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Lily of the valley'); -define ( 'FRIENDICA_VERSION', '3.4.3-dev' ); +define ( 'FRIENDICA_VERSION', '3.4.3-rc' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DB_UPDATE_VERSION', 1191 ); define ( 'EOL', "
    \r\n" ); From d7fc8d7c127ac64db4eb2d604f7c31512b3f7716 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 8 Dec 2015 08:17:29 +0100 Subject: [PATCH 408/443] Add an additional way to fetch the basepath (See pull request 2161) --- boot.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/boot.php b/boot.php index 0f4cacb5fd..6759e805f2 100644 --- a/boot.php +++ b/boot.php @@ -640,6 +640,9 @@ if(! class_exists('App')) { if ($basepath == "") $basepath = $_SERVER["PWD"]; + if ($basepath == "") + $basepath = dirname(__FILE__); + return($basepath); } From 2f866fecf92f9baa6d526c8664705f59e7d7c8bd Mon Sep 17 00:00:00 2001 From: Johannes Schwab Date: Tue, 8 Dec 2015 00:10:12 +0100 Subject: [PATCH 409/443] fix path for photo and proxy --- mod/photo.php | 11 ++++++----- mod/proxy.php | 15 ++++++++------- 2 files changed, 14 insertions(+), 12 deletions(-) diff --git a/mod/photo.php b/mod/photo.php index fab34a62f0..4166b4d539 100644 --- a/mod/photo.php +++ b/mod/photo.php @@ -197,12 +197,13 @@ function photo_init(&$a) { // If the photo is public and there is an existing photo directory store the photo there if ($public and ($file != "")) { // If the photo path isn't there, try to create it - if (!is_dir($_SERVER["DOCUMENT_ROOT"]."/photo")) - if (is_writable($_SERVER["DOCUMENT_ROOT"])) - mkdir($_SERVER["DOCUMENT_ROOT"]."/photo"); + $basepath = $a->get_basepath(); + if (!is_dir($basepath."/photo")) + if (is_writable($basepath)) + mkdir($basepath."/photo"); - if (is_dir($_SERVER["DOCUMENT_ROOT"]."/photo")) - file_put_contents($_SERVER["DOCUMENT_ROOT"]."/photo/".$file, $data); + if (is_dir($basepath."/photo")) + file_put_contents($basepath."/photo/".$file, $data); } killme(); diff --git a/mod/proxy.php b/mod/proxy.php index d26967dddf..c6bf653021 100644 --- a/mod/proxy.php +++ b/mod/proxy.php @@ -44,14 +44,15 @@ function proxy_init() { $thumb = false; $size = 1024; $sizetype = ""; + $basepath = $a->get_basepath(); // If the cache path isn't there, try to create it - if (!is_dir($_SERVER["DOCUMENT_ROOT"]."/proxy")) - if (is_writable($_SERVER["DOCUMENT_ROOT"])) - mkdir($_SERVER["DOCUMENT_ROOT"]."/proxy"); + if (!is_dir($basepath."/proxy")) + if (is_writable($basepath)) + mkdir($basepath."/proxy"); // Checking if caching into a folder in the webroot is activated and working - $direct_cache = (is_dir($_SERVER["DOCUMENT_ROOT"]."/proxy") AND is_writable($_SERVER["DOCUMENT_ROOT"]."/proxy")); + $direct_cache = (is_dir($basepath."/proxy") AND is_writable($basepath."/proxy")); // Look for filename in the arguments if ((isset($a->argv[1]) OR isset($a->argv[2]) OR isset($a->argv[3])) AND !isset($_REQUEST["url"])) { @@ -211,9 +212,9 @@ function proxy_init() { // advantage: real file access is really fast // Otherwise write in cachefile if ($valid AND $direct_cache) { - file_put_contents($_SERVER["DOCUMENT_ROOT"]."/proxy/".proxy_url($_REQUEST['url'], true), $img_str_orig); + file_put_contents($basepath."/proxy/".proxy_url($_REQUEST['url'], true), $img_str_orig); if ($sizetype <> '') - file_put_contents($_SERVER["DOCUMENT_ROOT"]."/proxy/".proxy_url($_REQUEST['url'], true).$sizetype, $img_str); + file_put_contents($basepath."/proxy/".proxy_url($_REQUEST['url'], true).$sizetype, $img_str); } elseif ($cachefile != '') file_put_contents($cachefile, $img_str_orig); @@ -247,7 +248,7 @@ function proxy_url($url, $writemode = false, $size = "") { return($url); // Creating a sub directory to reduce the amount of files in the cache directory - $basepath = $_SERVER["DOCUMENT_ROOT"]."/proxy"; + $basepath = $a->get_basepath()."/proxy"; $path = substr(hash("md5", $url), 0, 2); From 59b2bde9a7e84f51e64f8cde637d76a58a31e32d Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 8 Dec 2015 19:41:27 +0100 Subject: [PATCH 410/443] Do a linebreak before the output of rendertime --- view/global.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/view/global.css b/view/global.css index 63575ff21b..2fd5e60f53 100644 --- a/view/global.css +++ b/view/global.css @@ -313,3 +313,7 @@ ul.credits li { float: left; width: 200px; } + +.renderinfo { + clear: both; +} From 57576e09ed0897f414a48491c14a8abc842a095d Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 8 Dec 2015 19:53:01 +0100 Subject: [PATCH 411/443] Avoid problems with wrong configured server variables --- boot.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/boot.php b/boot.php index 6759e805f2..05a334a1fa 100644 --- a/boot.php +++ b/boot.php @@ -634,15 +634,15 @@ if(! class_exists('App')) { $basepath = get_config("system", "basepath"); + if ($basepath == "") + $basepath = dirname(__FILE__); + if ($basepath == "") $basepath = $_SERVER["DOCUMENT_ROOT"]; if ($basepath == "") $basepath = $_SERVER["PWD"]; - if ($basepath == "") - $basepath = dirname(__FILE__); - return($basepath); } From 776cbe4a371b1ac5da769570b2c2c1467638b785 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Thu, 10 Dec 2015 13:30:11 +0100 Subject: [PATCH 412/443] vier: fix little misspelling --- view/theme/vier/templates/widget_forumlist_right.tpl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/view/theme/vier/templates/widget_forumlist_right.tpl b/view/theme/vier/templates/widget_forumlist_right.tpl index 93f8e8f105..fe72ffcaf6 100644 --- a/view/theme/vier/templates/widget_forumlist_right.tpl +++ b/view/theme/vier/templates/widget_forumlist_right.tpl @@ -30,7 +30,7 @@ function showHideForumlist() { {{if $forum.id > $visible_forums}} + {{/if}} -
    From 138d745f5e2fd5a168b09d86337df9ec42415b63 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 10 Dec 2015 21:39:44 +0100 Subject: [PATCH 413/443] Sometimes there wasn't a linebreak before the address in the profile --- view/global.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/view/global.css b/view/global.css index 2fd5e60f53..05940508ca 100644 --- a/view/global.css +++ b/view/global.css @@ -317,3 +317,7 @@ ul.credits li { .renderinfo { clear: both; } + +.p-addr { + clear: both; +} From 300007a0cff41a25117d31c3707e65cb512fdaba Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 10 Dec 2015 22:47:58 +0100 Subject: [PATCH 414/443] Bugfix: Posts weren't always shown for feeds that start with "www." --- mod/contacts.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/contacts.php b/mod/contacts.php index cff68abc65..0a8aad9d72 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -903,7 +903,7 @@ function contact_posts($a, $contact_id) { $r = q("SELECT COUNT(*) AS `total` FROM `item` WHERE `item`.`uid` = %d AND `author-link` IN ('%s', '%s')", intval(local_user()), - dbesc(normalise_link($contact["url"])), + dbesc(str_replace("https://", "http://", $contact["url"])), dbesc(str_replace("http://", "https://", $contact["url"]))); $a->set_pager_total($r[0]['total']); @@ -918,7 +918,7 @@ function contact_posts($a, $contact_id) { ORDER BY `item`.`created` DESC LIMIT %d, %d", intval(local_user()), intval($contact_id), - dbesc(normalise_link($contact["url"])), + dbesc(str_replace("https://", "http://", $contact["url"])), dbesc(str_replace("http://", "https://", $contact["url"])), intval($a->pager['start']), intval($a->pager['itemspage']) From 36769d77eba0bc90cff6942ba55b00047cb25a2b Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 11 Dec 2015 08:03:09 +0100 Subject: [PATCH 415/443] FR update to the strings THX Perig --- view/fr/messages.po | 4023 ++++++++++++++++++++++++------------------- view/fr/strings.php | 340 ++-- 2 files changed, 2504 insertions(+), 1859 deletions(-) diff --git a/view/fr/messages.po b/view/fr/messages.po index 5ecb81cee8..beaa652175 100644 --- a/view/fr/messages.po +++ b/view/fr/messages.po @@ -12,6 +12,7 @@ # Lionel Triay , 2013 # Marquis_de_Carabas , 2012 # Olivier , 2011-2012 +# Perig Gouanvic , 2015 # StefOfficiel , 2015 # Sylvain Lagacé, 2014-2015 # tomamplius , 2014 @@ -20,9 +21,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-26 09:32+0000\n" -"Last-Translator: fabrixxm \n" +"POT-Creation-Date: 2015-11-30 13:14+0100\n" +"PO-Revision-Date: 2015-12-11 01:05+0000\n" +"Last-Translator: Perig Gouanvic \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" @@ -30,435 +31,443 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: mod/contacts.php:114 +#: mod/contacts.php:118 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited" msgstr[0] "%d contact édité" msgstr[1] "%d contacts édités." -#: mod/contacts.php:145 mod/contacts.php:340 +#: mod/contacts.php:149 mod/contacts.php:372 msgid "Could not access contact record." msgstr "Impossible d'accéder à l'enregistrement du contact." -#: mod/contacts.php:159 +#: mod/contacts.php:163 msgid "Could not locate selected profile." msgstr "Impossible de localiser le profil séléctionné." -#: mod/contacts.php:192 +#: mod/contacts.php:196 msgid "Contact updated." -msgstr "Contact mis-à-jour." +msgstr "Contact mis à jour." -#: mod/contacts.php:194 mod/dfrn_request.php:576 +#: mod/contacts.php:198 mod/dfrn_request.php:578 msgid "Failed to update contact record." -msgstr "Échec de mise-à-jour du contact." +msgstr "Échec de mise à jour du contact." -#: 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/contacts.php:354 mod/manage.php:96 mod/display.php:496 +#: 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:10 mod/follow.php:72 +#: mod/follow.php:137 mod/item.php:169 mod/item.php:185 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:24 mod/notifications.php:69 +#: mod/message.php:45 mod/message.php:181 mod/crepair.php:120 +#: mod/dirfind.php:11 mod/nogroup.php:25 mod/network.php:4 +#: mod/allfriends.php:11 mod/events.php:165 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/wall_attach.php:67 mod/wall_attach.php:70 mod/settings.php:20 +#: mod/settings.php:116 mod/settings.php:635 mod/register.php:42 +#: mod/delegate.php:12 mod/common.php:17 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 +#: 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:163 mod/photos.php:1097 mod/regmod.php:110 +#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5041 index.php:382 msgid "Permission denied." msgstr "Permission refusée." -#: mod/contacts.php:361 +#: mod/contacts.php:393 msgid "Contact has been blocked" msgstr "Le contact a été bloqué" -#: mod/contacts.php:361 +#: mod/contacts.php:393 msgid "Contact has been unblocked" msgstr "Le contact n'est plus bloqué" -#: mod/contacts.php:372 +#: mod/contacts.php:404 msgid "Contact has been ignored" msgstr "Le contact a été ignoré" -#: mod/contacts.php:372 +#: mod/contacts.php:404 msgid "Contact has been unignored" msgstr "Le contact n'est plus ignoré" -#: mod/contacts.php:384 +#: mod/contacts.php:416 msgid "Contact has been archived" msgstr "Contact archivé" -#: mod/contacts.php:384 +#: mod/contacts.php:416 msgid "Contact has been unarchived" msgstr "Contact désarchivé" -#: mod/contacts.php:411 mod/contacts.php:767 +#: mod/contacts.php:443 mod/contacts.php:817 msgid "Do you really want to delete this contact?" msgstr "Voulez-vous vraiment supprimer ce contact?" -#: 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/contacts.php:445 mod/follow.php:105 mod/message.php:216 +#: mod/settings.php:1091 mod/settings.php:1097 mod/settings.php:1105 +#: mod/settings.php:1109 mod/settings.php:1114 mod/settings.php:1120 +#: mod/settings.php:1126 mod/settings.php:1132 mod/settings.php:1158 +#: mod/settings.php:1159 mod/settings.php:1160 mod/settings.php:1161 +#: mod/settings.php:1162 mod/dfrn_request.php:850 mod/register.php:238 #: mod/suggest.php:29 mod/profiles.php:658 mod/profiles.php:661 -#: mod/api.php:105 include/items.php:4854 +#: mod/profiles.php:687 mod/api.php:105 include/items.php:4873 msgid "Yes" msgstr "Oui" -#: 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 +#: mod/contacts.php:448 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:116 +#: mod/videos.php:123 mod/message.php:219 mod/fbrowser.php:93 +#: mod/fbrowser.php:128 mod/settings.php:649 mod/settings.php:675 +#: mod/dfrn_request.php:864 mod/suggest.php:32 mod/editpost.php:147 +#: mod/photos.php:239 mod/photos.php:328 include/conversation.php:1221 +#: include/items.php:4876 msgid "Cancel" msgstr "Annuler" -#: mod/contacts.php:428 +#: mod/contacts.php:460 msgid "Contact has been removed." msgstr "Ce contact a été retiré." -#: mod/contacts.php:466 +#: mod/contacts.php:498 #, php-format msgid "You are mutual friends with %s" msgstr "Vous êtes ami (et réciproquement) avec %s" -#: mod/contacts.php:470 +#: mod/contacts.php:502 #, php-format msgid "You are sharing with %s" msgstr "Vous partagez avec %s" -#: mod/contacts.php:475 +#: mod/contacts.php:507 #, php-format msgid "%s is sharing with you" msgstr "%s partage avec vous" -#: mod/contacts.php:495 +#: mod/contacts.php:527 msgid "Private communications are not available for this contact." msgstr "Les communications privées ne sont pas disponibles pour ce contact." -#: mod/contacts.php:498 mod/admin.php:618 +#: mod/contacts.php:530 mod/admin.php:645 msgid "Never" msgstr "Jamais" -#: mod/contacts.php:502 +#: mod/contacts.php:534 msgid "(Update was successful)" msgstr "(Mise à jour effectuée avec succès)" -#: mod/contacts.php:502 +#: mod/contacts.php:534 msgid "(Update was not successful)" -msgstr "(Mise à jour échouée)" +msgstr "(Échec de la mise à jour)" -#: mod/contacts.php:504 +#: mod/contacts.php:536 msgid "Suggest friends" msgstr "Suggérer amitié/contact" -#: mod/contacts.php:508 +#: mod/contacts.php:540 #, php-format msgid "Network type: %s" msgstr "Type de réseau %s" -#: mod/contacts.php:511 include/contact_widgets.php:200 +#: mod/contacts.php:543 include/contact_widgets.php:237 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d contact en commun" msgstr[1] "%d contacts en commun" -#: mod/contacts.php:516 +#: mod/contacts.php:548 msgid "View all contacts" msgstr "Voir tous les contacts" -#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 -#: mod/admin.php:1083 +#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:821 +#: mod/admin.php:1117 msgid "Unblock" msgstr "Débloquer" -#: mod/contacts.php:521 mod/contacts.php:594 mod/contacts.php:770 -#: mod/admin.php:1082 +#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:821 +#: mod/admin.php:1116 msgid "Block" msgstr "Bloquer" -#: mod/contacts.php:524 +#: mod/contacts.php:556 msgid "Toggle Blocked status" msgstr "(dés)activer l'état \"bloqué\"" -#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 +#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:822 msgid "Unignore" msgstr "Ne plus ignorer" -#: mod/contacts.php:528 mod/contacts.php:595 mod/contacts.php:771 -#: mod/notifications.php:51 mod/notifications.php:174 -#: mod/notifications.php:233 +#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:822 +#: mod/notifications.php:54 mod/notifications.php:179 +#: mod/notifications.php:259 msgid "Ignore" msgstr "Ignorer" -#: mod/contacts.php:531 +#: mod/contacts.php:564 msgid "Toggle Ignored status" msgstr "(dés)activer l'état \"ignoré\"" -#: mod/contacts.php:536 mod/contacts.php:772 +#: mod/contacts.php:570 mod/contacts.php:823 msgid "Unarchive" msgstr "Désarchiver" -#: mod/contacts.php:536 mod/contacts.php:772 +#: mod/contacts.php:570 mod/contacts.php:823 msgid "Archive" msgstr "Archiver" -#: mod/contacts.php:539 +#: mod/contacts.php:573 msgid "Toggle Archive status" msgstr "(dés)activer l'état \"archivé\"" -#: mod/contacts.php:543 +#: mod/contacts.php:578 msgid "Repair" msgstr "Réparer" -#: mod/contacts.php:546 +#: mod/contacts.php:581 msgid "Advanced Contact Settings" msgstr "Réglages avancés du contact" -#: mod/contacts.php:553 +#: mod/contacts.php:589 msgid "Communications lost with this contact!" msgstr "Communications perdues avec ce contact !" -#: mod/contacts.php:556 +#: mod/contacts.php:592 msgid "Fetch further information for feeds" msgstr "Chercher plus d'informations pour les flux" -#: mod/contacts.php:557 mod/admin.php:627 +#: mod/contacts.php:593 mod/admin.php:654 msgid "Disabled" msgstr "Désactivé" -#: mod/contacts.php:557 +#: mod/contacts.php:593 msgid "Fetch information" msgstr "Récupérer informations" -#: mod/contacts.php:557 +#: mod/contacts.php:593 msgid "Fetch information and keywords" msgstr "Récupérer informations" -#: mod/contacts.php:566 +#: mod/contacts.php:606 msgid "Contact Editor" msgstr "Éditeur de contact" -#: 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 +#: mod/contacts.php:608 mod/manage.php:143 mod/fsuggest.php:107 +#: mod/message.php:342 mod/message.php:525 mod/crepair.php:195 +#: 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:1129 mod/photos.php:1253 mod/photos.php:1571 +#: mod/photos.php:1622 mod/photos.php:1670 mod/photos.php:1758 +#: 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:56 view/theme/duepuntozero/config.php:59 +#: view/theme/clean/config.php:83 view/theme/vier/config.php:107 +#: view/theme/duepuntozero/config.php:59 msgid "Submit" msgstr "Envoyer" -#: mod/contacts.php:569 +#: mod/contacts.php:609 msgid "Profile Visibility" msgstr "Visibilité du profil" -#: mod/contacts.php:570 +#: mod/contacts.php:610 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée." -#: mod/contacts.php:571 +#: mod/contacts.php:611 msgid "Contact Information / Notes" msgstr "Informations de contact / Notes" -#: mod/contacts.php:572 +#: mod/contacts.php:612 msgid "Edit contact notes" msgstr "Éditer les notes des contacts" -#: mod/contacts.php:577 mod/contacts.php:810 mod/viewcontacts.php:64 -#: mod/nogroup.php:40 +#: mod/contacts.php:617 mod/contacts.php:861 mod/viewcontacts.php:77 +#: mod/nogroup.php:41 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visiter le profil de %s [%s]" -#: mod/contacts.php:578 +#: mod/contacts.php:618 msgid "Block/Unblock contact" msgstr "Bloquer/débloquer ce contact" -#: mod/contacts.php:579 +#: mod/contacts.php:619 msgid "Ignore contact" msgstr "Ignorer ce contact" -#: mod/contacts.php:580 +#: mod/contacts.php:620 msgid "Repair URL settings" msgstr "Réglages de réparation des URL" -#: mod/contacts.php:581 +#: mod/contacts.php:621 msgid "View conversations" msgstr "Voir les conversations" -#: mod/contacts.php:583 +#: mod/contacts.php:623 msgid "Delete contact" msgstr "Effacer ce contact" -#: mod/contacts.php:587 +#: mod/contacts.php:627 msgid "Last update:" msgstr "Dernière mise-à-jour :" -#: mod/contacts.php:589 +#: mod/contacts.php:629 msgid "Update public posts" msgstr "Mettre à jour les publications publiques:" -#: mod/contacts.php:591 mod/admin.php:1584 +#: mod/contacts.php:631 mod/admin.php:1653 msgid "Update now" msgstr "Mettre à jour" -#: mod/contacts.php:598 +#: mod/contacts.php:633 mod/dirfind.php:190 mod/allfriends.php:67 +#: mod/match.php:71 mod/suggest.php:82 include/contact_widgets.php:32 +#: include/Contact.php:321 include/conversation.php:924 +msgid "Connect/Follow" +msgstr "Connecter/Suivre" + +#: mod/contacts.php:640 msgid "Currently blocked" msgstr "Actuellement bloqué" -#: mod/contacts.php:599 +#: mod/contacts.php:641 msgid "Currently ignored" msgstr "Actuellement ignoré" -#: mod/contacts.php:600 +#: mod/contacts.php:642 msgid "Currently archived" msgstr "Actuellement archivé" -#: mod/contacts.php:601 mod/notifications.php:167 mod/notifications.php:227 +#: mod/contacts.php:643 mod/notifications.php:172 mod/notifications.php:251 msgid "Hide this contact from others" msgstr "Cacher ce contact aux autres" -#: mod/contacts.php:601 +#: mod/contacts.php:643 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Les réponses et \"j'aime\" à vos publications publiques peuvent être toujours visibles" -#: mod/contacts.php:602 +#: mod/contacts.php:644 msgid "Notification for new posts" msgstr "Notification des nouvelles publications" -#: mod/contacts.php:602 +#: mod/contacts.php:644 msgid "Send a notification of every new post of this contact" msgstr "Envoyer une notification de chaque nouveau message en provenance de ce contact" -#: mod/contacts.php:605 +#: mod/contacts.php:647 msgid "Blacklisted keywords" msgstr "Mots-clés sur la liste noire" -#: mod/contacts.php:605 +#: mod/contacts.php:647 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand « Récupérer informations et mots-clés » est sélectionné." -#: mod/contacts.php:612 +#: mod/contacts.php:654 mod/follow.php:121 mod/notifications.php:255 msgid "Profile URL" msgstr "URL du Profil" -#: mod/contacts.php:658 +#: mod/contacts.php:700 msgid "Suggestions" msgstr "Suggestions" -#: mod/contacts.php:661 +#: mod/contacts.php:703 msgid "Suggest potential friends" msgstr "Suggérer des amis potentiels" -#: mod/contacts.php:665 mod/group.php:192 +#: mod/contacts.php:708 mod/group.php:192 msgid "All Contacts" msgstr "Tous les contacts" -#: mod/contacts.php:668 +#: mod/contacts.php:711 msgid "Show all contacts" msgstr "Montrer tous les contacts" -#: mod/contacts.php:672 +#: mod/contacts.php:716 msgid "Unblocked" msgstr "Non-bloqués" -#: mod/contacts.php:675 +#: mod/contacts.php:719 msgid "Only show unblocked contacts" msgstr "Ne montrer que les contacts non-bloqués" -#: mod/contacts.php:680 +#: mod/contacts.php:725 msgid "Blocked" msgstr "Bloqués" -#: mod/contacts.php:683 +#: mod/contacts.php:728 msgid "Only show blocked contacts" msgstr "Ne montrer que les contacts bloqués" -#: mod/contacts.php:688 +#: mod/contacts.php:734 msgid "Ignored" msgstr "Ignorés" -#: mod/contacts.php:691 +#: mod/contacts.php:737 msgid "Only show ignored contacts" msgstr "Ne montrer que les contacts ignorés" -#: mod/contacts.php:696 +#: mod/contacts.php:743 msgid "Archived" msgstr "Archivés" -#: mod/contacts.php:699 +#: mod/contacts.php:746 msgid "Only show archived contacts" msgstr "Ne montrer que les contacts archivés" -#: mod/contacts.php:704 +#: mod/contacts.php:752 msgid "Hidden" msgstr "Cachés" -#: mod/contacts.php:707 +#: mod/contacts.php:755 msgid "Only show hidden contacts" msgstr "Ne montrer que les contacts masqués" -#: mod/contacts.php:758 include/text.php:1005 include/nav.php:124 -#: include/nav.php:186 view/theme/diabook/theme.php:125 +#: mod/contacts.php:808 include/text.php:1012 include/nav.php:123 +#: include/nav.php:187 view/theme/diabook/theme.php:125 msgid "Contacts" msgstr "Contacts" -#: mod/contacts.php:762 +#: mod/contacts.php:812 msgid "Search your contacts" msgstr "Rechercher dans vos contacts" -#: mod/contacts.php:763 mod/directory.php:63 +#: mod/contacts.php:813 msgid "Finding: " msgstr "Trouvé: " -#: mod/contacts.php:764 mod/directory.php:65 include/contact_widgets.php:34 +#: mod/contacts.php:814 mod/directory.php:202 include/contact_widgets.php:34 msgid "Find" msgstr "Trouver" -#: mod/contacts.php:769 mod/settings.php:146 mod/settings.php:658 +#: mod/contacts.php:820 mod/settings.php:146 mod/settings.php:674 msgid "Update" msgstr "Mises-à-jour" -#: 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 +#: mod/contacts.php:824 mod/group.php:171 mod/admin.php:1115 +#: mod/content.php:440 mod/content.php:743 mod/settings.php:711 +#: mod/photos.php:1715 object/Item.php:134 include/conversation.php:635 msgid "Delete" msgstr "Supprimer" -#: mod/contacts.php:786 +#: mod/contacts.php:837 msgid "Mutual Friendship" msgstr "Relation réciproque" -#: mod/contacts.php:790 +#: mod/contacts.php:841 msgid "is a fan of yours" msgstr "Vous suit" -#: mod/contacts.php:794 +#: mod/contacts.php:845 msgid "you are a fan of" msgstr "Vous le/la suivez" -#: mod/contacts.php:811 mod/nogroup.php:41 +#: mod/contacts.php:862 mod/nogroup.php:42 msgid "Edit contact" msgstr "Éditer le contact" @@ -466,17 +475,17 @@ msgstr "Éditer le contact" msgid "No profile" msgstr "Aucun profil" -#: mod/manage.php:106 +#: mod/manage.php:139 msgid "Manage Identities and/or Pages" msgstr "Gérer les identités et/ou les pages" -#: mod/manage.php:107 +#: 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 "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer." -#: mod/manage.php:108 +#: mod/manage.php:141 msgid "Select an identity to manage: " msgstr "Choisir une identité à gérer: " @@ -496,8 +505,8 @@ msgstr "Identifiant de profil invalide." msgid "Profile Visibility Editor" msgstr "Éditer la visibilité du profil" -#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:529 -#: include/identity.php:610 include/identity.php:640 include/nav.php:77 +#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:542 +#: include/identity.php:628 include/identity.php:658 include/nav.php:76 #: view/theme/diabook/theme.php:124 msgid "Profile" msgstr "Profil" @@ -514,23 +523,23 @@ msgstr "Visible par" msgid "All Contacts (with secure profile access)" msgstr "Tous les contacts (ayant un accès sécurisé)" -#: 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 +#: mod/display.php:82 mod/display.php:283 mod/display.php:500 +#: mod/viewsrc.php:15 mod/admin.php:196 mod/admin.php:1160 mod/admin.php:1381 +#: mod/notice.php:15 include/items.php:4832 msgid "Item not found." msgstr "Élément introuvable." -#: 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 +#: mod/display.php:211 mod/videos.php:189 mod/viewcontacts.php:19 +#: mod/community.php:18 mod/dfrn_request.php:779 mod/search.php:93 +#: mod/search.php:99 mod/directory.php:37 mod/photos.php:968 msgid "Public access denied." msgstr "Accès public refusé." -#: mod/display.php:343 mod/profile.php:155 +#: mod/display.php:331 mod/profile.php:155 msgid "Access to this profile has been restricted." msgstr "L'accès au profil a été restreint." -#: mod/display.php:505 +#: mod/display.php:493 msgid "Item has been removed." msgstr "Cet élément a été enlevé." @@ -565,8 +574,8 @@ msgid "" " join." msgstr "Sur votre page d'accueil, dans Conseils aux nouveaux venus - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre." -#: mod/newmember.php:22 mod/admin.php:1178 mod/admin.php:1406 -#: mod/settings.php:99 include/nav.php:181 view/theme/diabook/theme.php:544 +#: mod/newmember.php:22 mod/admin.php:1212 mod/admin.php:1457 +#: mod/settings.php:99 include/nav.php:182 view/theme/diabook/theme.php:544 #: view/theme/diabook/theme.php:648 msgid "Settings" msgstr "Réglages" @@ -590,7 +599,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:244 mod/profiles.php:696 +#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:709 msgid "Upload Profile Photo" msgstr "Téléverser une photo de profil" @@ -689,7 +698,7 @@ msgid "" "hours." msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures." -#: mod/newmember.php:66 include/group.php:270 +#: mod/newmember.php:66 include/group.php:283 msgid "Groups" msgstr "Groupes" @@ -747,93 +756,94 @@ msgid "Image uploaded but image cropping failed." msgstr "Image envoyée, mais impossible de la retailler." #: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 -#: mod/profile_photo.php:204 mod/profile_photo.php:296 -#: mod/profile_photo.php:305 mod/photos.php: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 +#: mod/profile_photo.php:210 mod/profile_photo.php:302 +#: mod/profile_photo.php:311 mod/photos.php:70 mod/photos.php:184 +#: mod/photos.php:767 mod/photos.php:1237 mod/photos.php:1260 +#: mod/photos.php:1854 include/user.php:345 include/user.php:352 +#: include/user.php:359 view/theme/diabook/theme.php:500 msgid "Profile Photos" msgstr "Photos du profil" #: mod/profile_photo.php:77 mod/profile_photo.php:84 mod/profile_photo.php:91 -#: mod/profile_photo.php:308 +#: 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:118 +#: 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:128 +#: mod/profile_photo.php:134 msgid "Unable to process image" msgstr "Impossible de traiter l'image" -#: mod/profile_photo.php:144 mod/wall_upload.php:137 mod/photos.php:789 +#: mod/profile_photo.php:150 mod/wall_upload.php:151 mod/photos.php:803 #, php-format msgid "Image exceeds size limit of %s" msgstr "L'image dépasse la taille limite de %s" -#: mod/profile_photo.php:153 mod/wall_upload.php:169 mod/photos.php:829 +#: mod/profile_photo.php:159 mod/wall_upload.php:183 mod/photos.php:843 msgid "Unable to process image." msgstr "Impossible de traiter l'image." -#: mod/profile_photo.php:242 +#: mod/profile_photo.php:248 msgid "Upload File:" msgstr "Fichier à téléverser:" -#: mod/profile_photo.php:243 +#: mod/profile_photo.php:249 msgid "Select a profile:" msgstr "Choisir un profil:" -#: mod/profile_photo.php:245 +#: mod/profile_photo.php:251 msgid "Upload" msgstr "Téléverser" -#: mod/profile_photo.php:248 +#: mod/profile_photo.php:254 msgid "or" msgstr "ou" -#: mod/profile_photo.php:248 +#: mod/profile_photo.php:254 msgid "skip this step" msgstr "ignorer cette étape" -#: mod/profile_photo.php:248 +#: mod/profile_photo.php:254 msgid "select a photo from your photo albums" msgstr "choisissez une photo depuis vos albums" -#: mod/profile_photo.php:262 +#: mod/profile_photo.php:268 msgid "Crop Image" msgstr "(Re)cadrer l'image" -#: mod/profile_photo.php:263 +#: 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:265 +#: mod/profile_photo.php:271 msgid "Done Editing" msgstr "Édition terminée" -#: mod/profile_photo.php:299 +#: mod/profile_photo.php:305 msgid "Image uploaded successfully." msgstr "Image téléversée avec succès." -#: mod/profile_photo.php:301 mod/wall_upload.php:202 mod/photos.php:856 +#: mod/profile_photo.php:307 mod/wall_upload.php:216 mod/photos.php:870 msgid "Image upload failed." msgstr "Le téléversement de l'image a échoué." -#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 -#: include/conversation.php:126 include/conversation.php:253 -#: include/text.php:2034 include/diaspora.php:2127 +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 +#: include/conversation.php:130 include/conversation.php:266 +#: include/text.php:1995 include/diaspora.php:2140 #: view/theme/diabook/theme.php:471 msgid "photo" msgstr "photo" -#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:149 mod/like.php:319 -#: include/conversation.php:121 include/conversation.php:130 -#: include/conversation.php:248 include/conversation.php:257 -#: include/diaspora.php:2127 view/theme/diabook/theme.php:466 +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 mod/like.php:346 +#: include/conversation.php:125 include/conversation.php:134 +#: include/conversation.php:261 include/conversation.php:270 +#: include/diaspora.php:2140 view/theme/diabook/theme.php:466 #: view/theme/diabook/theme.php:475 msgid "status" msgstr "le statut" @@ -859,8 +869,44 @@ msgstr "Sélectionner une étiquette à supprimer: " msgid "Remove" msgstr "Utiliser comme photo de profil" -#: mod/filer.php:30 include/conversation.php:1005 -#: include/conversation.php:1023 +#: mod/ostatus_subscribe.php:14 +msgid "Subsribing 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 "ignoré" + +#: mod/ostatus_subscribe.php:73 mod/repair_ostatus.php:50 +msgid "Keep this window open until done." +msgstr "Veuillez garder cette fenêtre ouverte jusqu'à la fin." + +#: mod/filer.php:30 include/conversation.php:1133 +#: include/conversation.php:1151 msgid "Save to Folder:" msgstr "Sauver dans le Dossier:" @@ -868,86 +914,114 @@ msgstr "Sauver dans le Dossier:" msgid "- select -" msgstr "- choisir -" -#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:59 include/text.php:997 +#: mod/filer.php:31 mod/editpost.php:108 mod/notes.php:61 +#: include/text.php:1004 msgid "Save" msgstr "Sauver" -#: mod/follow.php:24 +#: mod/follow.php:18 mod/dfrn_request.php:863 +msgid "Submit Request" +msgstr "Envoyer la requête" + +#: mod/follow.php:29 msgid "You already added this contact." msgstr "Vous avez déjà ajouté ce contact." -#: mod/follow.php:56 mod/dfrn_request.php:844 +#: mod/follow.php:38 +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:45 +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:52 +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:104 mod/dfrn_request.php:849 msgid "Please answer the following:" msgstr "Merci de répondre à ce qui suit:" -#: mod/follow.php:57 mod/dfrn_request.php:845 +#: mod/follow.php:105 mod/dfrn_request.php:850 #, php-format msgid "Does %s know you?" msgstr "Est-ce que %s vous connaît?" -#: 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 +#: mod/follow.php:105 mod/settings.php:1091 mod/settings.php:1097 +#: mod/settings.php:1105 mod/settings.php:1109 mod/settings.php:1114 +#: mod/settings.php:1120 mod/settings.php:1126 mod/settings.php:1132 +#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160 +#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:850 +#: mod/register.php:239 mod/profiles.php:658 mod/profiles.php:662 +#: mod/profiles.php:687 mod/api.php:106 msgid "No" msgstr "Non" -#: mod/follow.php:58 mod/dfrn_request.php:849 +#: mod/follow.php:106 mod/dfrn_request.php:854 msgid "Add a personal note:" msgstr "Ajouter une note personnelle:" -#: mod/follow.php:64 mod/dfrn_request.php:855 +#: mod/follow.php:112 mod/dfrn_request.php:860 msgid "Your Identity Address:" msgstr "Votre adresse d'identité:" -#: mod/follow.php:67 mod/dfrn_request.php:858 -msgid "Submit Request" -msgstr "Envoyer la requête" +#: mod/follow.php:125 mod/notifications.php:244 mod/events.php:566 +#: mod/directory.php:139 include/identity.php:278 include/bb2diaspora.php:170 +#: include/event.php:36 include/event.php:60 +msgid "Location:" +msgstr "Localisation:" -#: mod/follow.php:106 +#: mod/follow.php:127 mod/notifications.php:246 mod/directory.php:147 +#: include/identity.php:287 include/identity.php:594 +msgid "About:" +msgstr "À propos:" + +#: mod/follow.php:129 mod/notifications.php:248 include/identity.php:588 +msgid "Tags:" +msgstr "Étiquette:" + +#: mod/follow.php:162 msgid "Contact added" msgstr "Contact ajouté" -#: mod/item.php:115 +#: mod/item.php:114 msgid "Unable to locate original post." msgstr "Impossible de localiser la publication originale." -#: mod/item.php:347 +#: mod/item.php:322 msgid "Empty post discarded." msgstr "Publication vide rejetée." -#: 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 +#: mod/item.php:460 mod/wall_upload.php:213 mod/wall_upload.php:227 +#: mod/wall_upload.php:234 include/Photo.php:954 include/Photo.php:969 +#: include/Photo.php:976 include/Photo.php:998 include/message.php:145 msgid "Wall Photos" msgstr "Photos du mur" -#: mod/item.php:860 +#: mod/item.php:834 msgid "System error. Post not saved." msgstr "Erreur système. Publication non sauvée." -#: mod/item.php:989 +#: mod/item.php:963 #, 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." -#: mod/item.php:991 +#: mod/item.php:965 #, php-format msgid "You may visit them online at %s" msgstr "Vous pouvez leur rendre visite sur %s" -#: mod/item.php:992 +#: mod/item.php:966 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." -#: mod/item.php:996 +#: mod/item.php:970 #, php-format msgid "%s posted an update." msgstr "%s a publié une mise à jour." @@ -976,7 +1050,7 @@ msgstr "Sauvegarder le groupe" msgid "Create a group of contacts/friends." msgstr "Créez un groupe de contacts/amis." -#: mod/group.php:94 mod/group.php:178 include/group.php:273 +#: mod/group.php:94 mod/group.php:178 include/group.php:289 msgid "Group Name: " msgstr "Nom du groupe: " @@ -1052,8 +1126,8 @@ msgstr "Introduction échouée ou annulée." msgid "Unable to set contact photo." msgstr "Impossible de définir la photo du contact." -#: mod/dfrn_confirm.php:487 include/conversation.php:172 -#: include/diaspora.php:634 +#: mod/dfrn_confirm.php:487 include/conversation.php:185 +#: include/diaspora.php:636 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s est désormais lié à %2$s" @@ -1094,7 +1168,7 @@ msgstr "Impossible de vous définir des permissions sur notre système." 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:753 mod/dfrn_request.php:732 include/items.php:4236 +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:734 include/items.php:4244 msgid "[Name Withheld]" msgstr "[Nom non-publié]" @@ -1103,7 +1177,7 @@ msgstr "[Nom non-publié]" msgid "%1$s has joined %2$s" msgstr "%1$s a rejoint %2$s" -#: mod/profile.php:21 include/identity.php:77 +#: mod/profile.php:21 include/identity.php:82 msgid "Requested profile is not available." msgstr "Le profil demandé n'est pas disponible." @@ -1111,39 +1185,39 @@ msgstr "Le profil demandé n'est pas disponible." msgid "Tips for New Members" msgstr "Conseils aux nouveaux venus" -#: mod/videos.php:113 +#: mod/videos.php:115 msgid "Do you really want to delete this video?" msgstr "Voulez-vous vraiment supprimer cette vidéo?" -#: mod/videos.php:118 +#: mod/videos.php:120 msgid "Delete Video" msgstr "Supprimer la vidéo" -#: mod/videos.php:197 +#: mod/videos.php:199 msgid "No videos selected" msgstr "Pas de vidéo sélectionné" -#: mod/videos.php:298 mod/photos.php:1053 +#: mod/videos.php:300 mod/photos.php:1079 msgid "Access to this item is restricted." msgstr "Accès restreint à cet élément." -#: mod/videos.php:373 include/text.php:1460 +#: mod/videos.php:375 include/text.php:1465 msgid "View Video" msgstr "Regarder la vidéo" -#: mod/videos.php:380 mod/photos.php:1827 +#: mod/videos.php:382 mod/photos.php:1882 msgid "View Album" msgstr "Voir l'album" -#: mod/videos.php:389 +#: mod/videos.php:391 msgid "Recent Videos" msgstr "Vidéos récente" -#: mod/videos.php:391 +#: mod/videos.php:393 msgid "Upload New Videos" msgstr "Téléversé une nouvelle vidéo" -#: mod/tagger.php:95 include/conversation.php:265 +#: 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 a étiqueté %3$s de %2$s avec %4$s" @@ -1161,9 +1235,9 @@ msgstr "Suggérer des amis/contacts" msgid "Suggest a friend for %s" msgstr "Suggérer un ami/contact pour %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 +#: 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:1711 msgid "Invalid request." msgstr "Requête invalide." @@ -1219,7 +1293,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:1287 +#: mod/lostpass.php:109 boot.php:1295 msgid "Password Reset" msgstr "Réinitialiser le mot de passe" @@ -1293,232 +1367,243 @@ msgstr "Pseudo ou eMail : " msgid "Reset" msgstr "Réinitialiser" -#: mod/like.php:166 include/conversation.php:137 include/diaspora.php:2143 +#: mod/like.php:170 include/conversation.php:122 include/conversation.php:258 +#: include/text.php:1993 view/theme/diabook/theme.php:463 +msgid "event" +msgstr "évènement" + +#: mod/like.php:187 include/conversation.php:141 include/diaspora.php:2156 #: view/theme/diabook/theme.php:480 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s aime %3$s de %2$s" -#: mod/like.php:168 include/conversation.php:140 +#: mod/like.php:189 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" -#: mod/ping.php:233 +#: mod/like.php:191 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s participe à %3$s de %2$s" + +#: mod/like.php:193 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s ne participe pas à %3$s de %2$s" + +#: mod/like.php:195 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s participera peut-être à %3$s de %2$s" + +#: mod/ping.php:273 msgid "{0} wants to be your friend" msgstr "{0} souhaite être votre ami(e)" -#: mod/ping.php:248 +#: mod/ping.php:288 msgid "{0} sent you a message" msgstr "{0} vous a envoyé un message" -#: mod/ping.php:263 +#: mod/ping.php:303 msgid "{0} requested registration" msgstr "{0} a demandé à s'inscrire" -#: mod/viewcontacts.php:41 +#: mod/viewcontacts.php:52 msgid "No contacts." msgstr "Aucun contact." -#: mod/viewcontacts.php:78 include/text.php:917 +#: mod/viewcontacts.php:85 mod/dirfind.php:208 mod/network.php:596 +#: mod/allfriends.php:79 mod/match.php:82 mod/common.php:122 +#: mod/suggest.php:95 +msgid "Forum" +msgstr "Forum" + +#: mod/viewcontacts.php:96 include/text.php:921 msgid "View Contacts" msgstr "Voir les contacts" -#: mod/notifications.php:26 +#: mod/notifications.php:29 msgid "Invalid request identifier." msgstr "Identifiant de demande invalide." -#: mod/notifications.php:35 mod/notifications.php:175 -#: mod/notifications.php:234 +#: mod/notifications.php:38 mod/notifications.php:180 +#: mod/notifications.php:260 msgid "Discard" msgstr "Rejeter" -#: mod/notifications.php:78 +#: mod/notifications.php:81 msgid "System" msgstr "Système" -#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 +#: mod/notifications.php:87 mod/admin.php:228 include/nav.php:154 msgid "Network" msgstr "Réseau" -#: mod/notifications.php:90 mod/network.php:375 +#: mod/notifications.php:93 mod/network.php:381 msgid "Personal" msgstr "Personnel" -#: mod/notifications.php:96 include/nav.php:105 include/nav.php:156 +#: mod/notifications.php:99 include/nav.php:104 include/nav.php:157 #: view/theme/diabook/theme.php:123 msgid "Home" msgstr "Profil" -#: mod/notifications.php:102 include/nav.php:161 +#: mod/notifications.php:105 include/nav.php:162 msgid "Introductions" msgstr "Introductions" -#: mod/notifications.php:127 +#: mod/notifications.php:130 msgid "Show Ignored Requests" msgstr "Voir les demandes ignorées" -#: mod/notifications.php:127 +#: mod/notifications.php:130 msgid "Hide Ignored Requests" msgstr "Cacher les demandes ignorées" -#: mod/notifications.php:159 mod/notifications.php:209 +#: mod/notifications.php:164 mod/notifications.php:234 msgid "Notification type: " msgstr "Type de notification: " -#: mod/notifications.php:160 +#: mod/notifications.php:165 msgid "Friend Suggestion" msgstr "Suggestion d'amitié/contact" -#: mod/notifications.php:162 +#: mod/notifications.php:167 #, php-format msgid "suggested by %s" msgstr "suggéré(e) par %s" -#: mod/notifications.php:168 mod/notifications.php:228 +#: mod/notifications.php:173 mod/notifications.php:252 msgid "Post a new friend activity" msgstr "Poster une nouvelle avtivité d'ami" -#: mod/notifications.php:168 mod/notifications.php:228 +#: mod/notifications.php:173 mod/notifications.php:252 msgid "if applicable" msgstr "si possible" -#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1079 +#: mod/notifications.php:176 mod/notifications.php:257 mod/admin.php:1113 msgid "Approve" msgstr "Approuver" -#: mod/notifications.php:191 +#: mod/notifications.php:196 msgid "Claims to be known to you: " msgstr "Prétend que vous le connaissez: " -#: mod/notifications.php:191 +#: mod/notifications.php:196 msgid "yes" msgstr "oui" -#: mod/notifications.php:191 +#: mod/notifications.php:196 msgid "no" msgstr "non" -#: mod/notifications.php:192 +#: 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:195 +#: 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:203 +#: mod/notifications.php:208 msgid "Friend" msgstr "Ami" -#: mod/notifications.php:204 +#: mod/notifications.php:209 msgid "Sharer" msgstr "Initiateur du partage" -#: mod/notifications.php:204 +#: mod/notifications.php:209 msgid "Fan/Admirer" msgstr "Fan/Admirateur" -#: mod/notifications.php:210 +#: mod/notifications.php:235 msgid "Friend/Connect Request" msgstr "Demande de connexion/relation" -#: mod/notifications.php:210 +#: mod/notifications.php:235 msgid "New Follower" msgstr "Nouvel abonné" -#: 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 "Localisation:" - -#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 -#: include/identity.php:581 -msgid "About:" -msgstr "À propos:" - -#: mod/notifications.php:224 include/identity.php:575 -msgid "Tags:" -msgstr "Étiquette:" - -#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 -#: include/identity.php:540 +#: mod/notifications.php:250 mod/directory.php:141 include/identity.php:280 +#: include/identity.php:553 msgid "Gender:" msgstr "Genre:" -#: mod/notifications.php:240 +#: mod/notifications.php:266 msgid "No introductions." msgstr "Aucune demande d'introduction." -#: mod/notifications.php:243 include/nav.php:164 +#: mod/notifications.php:269 include/nav.php:165 msgid "Notifications" msgstr "Notifications" -#: mod/notifications.php:281 mod/notifications.php:410 -#: mod/notifications.php:501 +#: mod/notifications.php:307 mod/notifications.php:436 +#: mod/notifications.php:527 #, php-format msgid "%s liked %s's post" msgstr "%s a aimé la publication de %s" -#: mod/notifications.php:291 mod/notifications.php:420 -#: mod/notifications.php:511 +#: mod/notifications.php:317 mod/notifications.php:446 +#: mod/notifications.php:537 #, php-format msgid "%s disliked %s's post" msgstr "%s n'a pas aimé la publication de %s" -#: mod/notifications.php:306 mod/notifications.php:435 -#: mod/notifications.php:526 +#: mod/notifications.php:332 mod/notifications.php:461 +#: mod/notifications.php:552 #, php-format msgid "%s is now friends with %s" msgstr "%s est désormais ami(e) avec %s" -#: mod/notifications.php:313 mod/notifications.php:442 +#: mod/notifications.php:339 mod/notifications.php:468 #, php-format msgid "%s created a new post" msgstr "%s a créé une nouvelle publication" -#: mod/notifications.php:314 mod/notifications.php:443 -#: mod/notifications.php:536 +#: mod/notifications.php:340 mod/notifications.php:469 +#: mod/notifications.php:562 #, php-format msgid "%s commented on %s's post" msgstr "%s a commenté la publication de %s" -#: mod/notifications.php:329 +#: mod/notifications.php:355 msgid "No more network notifications." msgstr "Aucune notification du réseau." -#: mod/notifications.php:333 +#: mod/notifications.php:359 msgid "Network Notifications" msgstr "Notifications du réseau" -#: mod/notifications.php:359 mod/notify.php:72 +#: mod/notifications.php:385 mod/notify.php:72 msgid "No more system notifications." msgstr "Pas plus de notifications système." -#: mod/notifications.php:363 mod/notify.php:76 +#: mod/notifications.php:389 mod/notify.php:76 msgid "System Notifications" msgstr "Notifications du système" -#: mod/notifications.php:458 +#: mod/notifications.php:484 msgid "No more personal notifications." msgstr "Aucun notification personnelle." -#: mod/notifications.php:462 +#: mod/notifications.php:488 msgid "Personal Notifications" msgstr "Notifications personnelles" -#: mod/notifications.php:543 +#: mod/notifications.php:569 msgid "No more home notifications." msgstr "Aucune notification de la page d'accueil." -#: mod/notifications.php:547 +#: mod/notifications.php:573 msgid "Home Notifications" msgstr "Notifications de page d'accueil" @@ -1570,146 +1655,146 @@ msgstr "Texte source (format Diaspora) :" msgid "diaspora2bb: " msgstr "diaspora2bb :" -#: mod/navigation.php:20 include/nav.php:34 +#: mod/navigation.php:19 include/nav.php:33 msgid "Nothing new here" msgstr "Rien de neuf ici" -#: mod/navigation.php:24 include/nav.php:38 +#: mod/navigation.php:23 include/nav.php:37 msgid "Clear notifications" msgstr "Effacer les notifications" -#: mod/message.php:9 include/nav.php:173 +#: mod/message.php:15 include/nav.php:174 msgid "New Message" msgstr "Nouveau message" -#: mod/message.php:64 mod/wallmessage.php:56 +#: mod/message.php:70 mod/wallmessage.php:56 msgid "No recipient selected." msgstr "Pas de destinataire sélectionné." -#: mod/message.php:68 +#: mod/message.php:74 msgid "Unable to locate contact information." msgstr "Impossible de localiser les informations du contact." -#: mod/message.php:71 mod/wallmessage.php:62 +#: mod/message.php:77 mod/wallmessage.php:62 msgid "Message could not be sent." msgstr "Impossible d'envoyer le message." -#: mod/message.php:74 mod/wallmessage.php:65 +#: mod/message.php:80 mod/wallmessage.php:65 msgid "Message collection failure." msgstr "Récupération des messages infructueuse." -#: mod/message.php:77 mod/wallmessage.php:68 +#: mod/message.php:83 mod/wallmessage.php:68 msgid "Message sent." msgstr "Message envoyé." -#: mod/message.php:183 include/nav.php:170 +#: mod/message.php:189 include/nav.php:171 msgid "Messages" msgstr "Messages" -#: mod/message.php:208 +#: mod/message.php:214 msgid "Do you really want to delete this message?" msgstr "Voulez-vous vraiment supprimer ce message ?" -#: mod/message.php:228 +#: mod/message.php:234 msgid "Message deleted." msgstr "Message supprimé." -#: mod/message.php:259 +#: mod/message.php:265 msgid "Conversation removed." msgstr "Conversation supprimée." -#: 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 +#: 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:1129 include/conversation.php:1147 msgid "Please enter a link URL:" msgstr "Entrez un lien web:" -#: mod/message.php:320 mod/wallmessage.php:142 +#: mod/message.php:326 mod/wallmessage.php:142 msgid "Send Private Message" msgstr "Envoyer un message privé" -#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 +#: mod/message.php:327 mod/message.php:514 mod/wallmessage.php:144 msgid "To:" msgstr "À:" -#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 +#: mod/message.php:332 mod/message.php:516 mod/wallmessage.php:145 msgid "Subject:" msgstr "Sujet:" -#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 +#: mod/message.php:336 mod/message.php:519 mod/wallmessage.php:151 #: mod/invite.php:134 msgid "Your message:" msgstr "Votre message:" -#: mod/message.php:333 mod/message.php:563 mod/wallmessage.php:154 -#: mod/editpost.php:110 include/conversation.php:1056 +#: mod/message.php:339 mod/message.php:523 mod/wallmessage.php:154 +#: mod/editpost.php:109 include/conversation.php:1184 msgid "Upload photo" msgstr "Joindre photo" -#: mod/message.php:334 mod/message.php:564 mod/wallmessage.php:155 -#: mod/editpost.php:114 include/conversation.php:1060 +#: mod/message.php:340 mod/message.php:524 mod/wallmessage.php:155 +#: mod/editpost.php:113 include/conversation.php:1188 msgid "Insert web link" msgstr "Insérer lien web" -#: 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 +#: mod/message.php:341 mod/message.php:526 mod/content.php:501 +#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:123 +#: mod/photos.php:1602 object/Item.php:396 include/conversation.php:713 +#: include/conversation.php:1202 msgid "Please wait" msgstr "Patientez" -#: mod/message.php:372 +#: mod/message.php:368 msgid "No messages." msgstr "Aucun message." -#: mod/message.php:379 -#, php-format -msgid "Unknown sender - %s" -msgstr "Émetteur inconnu - %s" - -#: mod/message.php:382 -#, php-format -msgid "You and %s" -msgstr "Vous et %s" - -#: mod/message.php:385 -#, php-format -msgid "%s and You" -msgstr "%s et vous" - -#: mod/message.php:406 mod/message.php:547 -msgid "Delete conversation" -msgstr "Effacer conversation" - -#: mod/message.php:409 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: mod/message.php:412 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d message" -msgstr[1] "%d messages" - -#: mod/message.php:451 +#: mod/message.php:411 msgid "Message not available." msgstr "Message indisponible." -#: mod/message.php:521 +#: mod/message.php:481 msgid "Delete message" msgstr "Effacer message" -#: mod/message.php:549 +#: mod/message.php:507 mod/message.php:582 +msgid "Delete conversation" +msgstr "Effacer conversation" + +#: mod/message.php:509 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur." -#: mod/message.php:553 +#: mod/message.php:513 msgid "Send Reply" msgstr "Répondre" +#: mod/message.php:555 +#, php-format +msgid "Unknown sender - %s" +msgstr "Émetteur inconnu - %s" + +#: mod/message.php:558 +#, php-format +msgid "You and %s" +msgstr "Vous et %s" + +#: mod/message.php:561 +#, php-format +msgid "%s and You" +msgstr "%s et vous" + +#: mod/message.php:585 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: mod/message.php:588 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d message" +msgstr[1] "%d messages" + #: 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]" @@ -1724,80 +1809,80 @@ msgid "Contact update failed." msgstr "Impossible d'appliquer les réglages." #: mod/crepair.php:140 -msgid "Repair Contact Settings" -msgstr "Réglages de réparation des contacts" - -#: 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 "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact." -#: mod/crepair.php:143 +#: mod/crepair.php:141 msgid "" "Please use your browser 'Back' button now if you are " "uncertain what to do on this page." msgstr "une photo" -#: mod/crepair.php:149 -msgid "Return to contact editor" -msgstr "Retour à l'éditeur de contact" - -#: mod/crepair.php:160 mod/crepair.php:162 +#: mod/crepair.php:154 mod/crepair.php:156 msgid "No mirroring" msgstr "Pas de miroir" -#: mod/crepair.php:160 +#: mod/crepair.php:154 msgid "Mirror as forwarded posting" msgstr "" -#: mod/crepair.php:160 mod/crepair.php:162 +#: mod/crepair.php:154 mod/crepair.php:156 msgid "Mirror as my own posting" msgstr "" -#: mod/crepair.php:169 -msgid "Refetch contact data" -msgstr "" +#: mod/crepair.php:162 +msgid "Repair Contact Settings" +msgstr "Réglages de réparation des contacts" -#: 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 +#: mod/crepair.php:166 +msgid "Return to contact editor" +msgstr "Retour à l'éditeur de contact" + +#: mod/crepair.php:168 +msgid "Refetch contact data" +msgstr "Récupérer à nouveau les données de contact" + +#: mod/crepair.php:169 mod/admin.php:1111 mod/admin.php:1123 +#: mod/admin.php:1124 mod/admin.php:1137 mod/settings.php:650 +#: mod/settings.php:676 msgid "Name" msgstr "Nom" -#: mod/crepair.php:171 +#: mod/crepair.php:170 msgid "Account Nickname" msgstr "Pseudo du compte" -#: mod/crepair.php:172 +#: mod/crepair.php:171 msgid "@Tagname - overrides Name/Nickname" msgstr "@NomEtiquette - prend le pas sur Nom/Pseudo" -#: mod/crepair.php:173 +#: mod/crepair.php:172 msgid "Account URL" msgstr "URL du compte" -#: mod/crepair.php:174 +#: mod/crepair.php:173 msgid "Friend Request URL" msgstr "Echec du téléversement de l'image." -#: mod/crepair.php:175 +#: mod/crepair.php:174 msgid "Friend Confirm URL" msgstr "Accès public refusé." -#: mod/crepair.php:176 +#: mod/crepair.php:175 msgid "Notification Endpoint URL" msgstr "Aucune photo sélectionnée" -#: mod/crepair.php:177 +#: mod/crepair.php:176 msgid "Poll/Feed URL" msgstr "Téléverser des photos" -#: mod/crepair.php:178 +#: mod/crepair.php:177 msgid "New photo from this URL" msgstr "Nouvelle photo depuis cette URL" -#: mod/crepair.php:179 +#: mod/crepair.php:178 msgid "Remote Self" msgstr "" @@ -1805,576 +1890,607 @@ msgstr "" msgid "Mirror postings from this contact" msgstr "" -#: mod/crepair.php:181 +#: mod/crepair.php:183 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." -msgstr "" +msgstr "Marquer ce contact comme étant remote_self, friendica republiera alors les nouvelles entrées de ce contact." -#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 +#: mod/bookmarklet.php:12 boot.php:1281 include/nav.php:91 msgid "Login" msgstr "Connexion" #: mod/bookmarklet.php:41 msgid "The post was created" -msgstr "" +msgstr "La publication a été créée" #: mod/viewsrc.php:7 msgid "Access denied." msgstr "Accès refusé." -#: 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 +#: mod/dirfind.php:188 mod/allfriends.php:82 mod/match.php:85 +#: mod/suggest.php:98 include/contact_widgets.php:10 include/identity.php:193 msgid "Connect" msgstr "Relier" -#: mod/dirfind.php:139 mod/match.php:73 +#: mod/dirfind.php:189 mod/allfriends.php:66 mod/match.php:70 +#: mod/directory.php:156 mod/suggest.php:81 include/Contact.php:307 +#: include/Contact.php:320 include/Contact.php:362 +#: include/conversation.php:912 include/conversation.php:926 +msgid "View Profile" +msgstr "Voir le profil" + +#: mod/dirfind.php:218 +#, php-format +msgid "People Search - %s" +msgstr "Recherche de personne - %s" + +#: mod/dirfind.php:225 mod/match.php:105 msgid "No matches" msgstr "Aucune correspondance" -#: mod/fbrowser.php:32 include/identity.php:648 include/nav.php:78 +#: mod/fbrowser.php:32 include/identity.php:666 include/nav.php:77 #: view/theme/diabook/theme.php:126 msgid "Photos" msgstr "Photos" -#: mod/fbrowser.php:122 +#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:54 +#: mod/photos.php:184 mod/photos.php:1111 mod/photos.php:1237 +#: mod/photos.php:1260 mod/photos.php:1830 mod/photos.php:1842 +#: view/theme/diabook/theme.php:499 +msgid "Contact Photos" +msgstr "Photos du contact" + +#: mod/fbrowser.php:125 msgid "Files" msgstr "Fichiers" -#: mod/nogroup.php:59 +#: mod/nogroup.php:63 msgid "Contacts who are not members of a group" msgstr "Contacts qui n’appartiennent à aucun groupe" -#: mod/admin.php:57 +#: mod/admin.php:80 msgid "Theme settings updated." msgstr "Réglages du thème sauvés." -#: mod/admin.php:104 mod/admin.php:682 +#: mod/admin.php:127 mod/admin.php:711 msgid "Site" msgstr "Site" -#: mod/admin.php:105 mod/admin.php:628 mod/admin.php:1072 mod/admin.php:1087 +#: mod/admin.php:128 mod/admin.php:655 mod/admin.php:1106 mod/admin.php:1121 msgid "Users" msgstr "Utilisateurs" -#: mod/admin.php:106 mod/admin.php:1176 mod/admin.php:1236 mod/settings.php:66 +#: mod/admin.php:129 mod/admin.php:1210 mod/admin.php:1270 mod/settings.php:66 msgid "Plugins" msgstr "Extensions" -#: mod/admin.php:107 mod/admin.php:1404 mod/admin.php:1438 +#: mod/admin.php:130 mod/admin.php:1455 mod/admin.php:1506 msgid "Themes" msgstr "Thèmes" -#: mod/admin.php:108 +#: mod/admin.php:131 msgid "DB updates" msgstr "Mise-à-jour de la base" -#: mod/admin.php:109 mod/admin.php:200 +#: mod/admin.php:132 mod/admin.php:223 msgid "Inspect Queue" -msgstr "" +msgstr "Inspecter la file d'attente" -#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1525 +#: mod/admin.php:147 mod/admin.php:156 mod/admin.php:1594 msgid "Logs" msgstr "Journaux" -#: mod/admin.php:125 +#: mod/admin.php:148 msgid "probe address" msgstr "" -#: mod/admin.php:126 +#: mod/admin.php:149 msgid "check webfinger" -msgstr "" +msgstr "vérification de webfinger" -#: mod/admin.php:131 include/nav.php:193 +#: mod/admin.php:154 include/nav.php:194 msgid "Admin" msgstr "Admin" -#: mod/admin.php:132 +#: mod/admin.php:155 msgid "Plugin Features" msgstr "Propriétés des extensions" -#: mod/admin.php:134 +#: mod/admin.php:157 msgid "diagnostics" -msgstr "" +msgstr "diagnostic" -#: mod/admin.php:135 +#: mod/admin.php:158 msgid "User registrations waiting for confirmation" msgstr "Inscriptions en attente de confirmation" -#: 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 +#: mod/admin.php:222 mod/admin.php:272 mod/admin.php:710 mod/admin.php:1105 +#: mod/admin.php:1209 mod/admin.php:1269 mod/admin.php:1454 mod/admin.php:1505 +#: mod/admin.php:1593 msgid "Administration" msgstr "Administration" -#: mod/admin.php:202 +#: mod/admin.php:225 msgid "ID" -msgstr "" +msgstr "ID" -#: mod/admin.php:203 +#: mod/admin.php:226 msgid "Recipient Name" -msgstr "" +msgstr "Nom du destinataire" -#: mod/admin.php:204 +#: mod/admin.php:227 msgid "Recipient Profile" -msgstr "" +msgstr "Profil du destinataire" -#: mod/admin.php:206 +#: mod/admin.php:229 msgid "Created" -msgstr "" +msgstr "Créé" -#: mod/admin.php:207 +#: mod/admin.php:230 msgid "Last Tried" -msgstr "" +msgstr "Dernier essai" -#: mod/admin.php:208 +#: mod/admin.php:231 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 "" +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:220 mod/admin.php:1025 +#: mod/admin.php:243 mod/admin.php:1059 msgid "Normal Account" msgstr "Compte normal" -#: mod/admin.php:221 mod/admin.php:1026 +#: mod/admin.php:244 mod/admin.php:1060 msgid "Soapbox Account" msgstr "Compte \"boîte à savon\"" -#: mod/admin.php:222 mod/admin.php:1027 +#: mod/admin.php:245 mod/admin.php:1061 msgid "Community/Celebrity Account" msgstr "Compte de communauté/célébrité" -#: mod/admin.php:223 mod/admin.php:1028 +#: mod/admin.php:246 mod/admin.php:1062 msgid "Automatic Friend Account" msgstr "Compte auto-amical" -#: mod/admin.php:224 +#: mod/admin.php:247 msgid "Blog Account" msgstr "Compte de blog" -#: mod/admin.php:225 +#: mod/admin.php:248 msgid "Private Forum" msgstr "Forum privé" -#: mod/admin.php:244 +#: mod/admin.php:267 msgid "Message queues" msgstr "Files d'attente des messages" -#: mod/admin.php:250 +#: mod/admin.php:273 msgid "Summary" msgstr "Résumé" -#: mod/admin.php:252 +#: mod/admin.php:275 msgid "Registered users" msgstr "Utilisateurs inscrits" -#: mod/admin.php:254 +#: mod/admin.php:277 msgid "Pending registrations" msgstr "Inscriptions en attente" -#: mod/admin.php:255 +#: mod/admin.php:278 msgid "Version" msgstr "Versio" -#: mod/admin.php:260 +#: mod/admin.php:283 msgid "Active plugins" msgstr "Extensions activés" -#: mod/admin.php:283 +#: mod/admin.php:306 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:565 +#: mod/admin.php:587 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "RINO2 a besoin du module php mcrypt pour fonctionner." + +#: mod/admin.php:595 msgid "Site settings updated." msgstr "Réglages du site mis-à-jour." -#: mod/admin.php:594 mod/settings.php:880 +#: mod/admin.php:619 mod/settings.php:901 msgid "No special theme for mobile devices" msgstr "Pas de thème particulier pour les terminaux mobiles" -#: mod/admin.php:611 +#: mod/admin.php:638 msgid "No community page" -msgstr "" +msgstr "Aucune page de communauté" -#: mod/admin.php:612 +#: mod/admin.php:639 msgid "Public postings from users of this site" -msgstr "" +msgstr "Publications publiques des utilisateurs de ce site" -#: mod/admin.php:613 +#: mod/admin.php:640 msgid "Global community page" -msgstr "" +msgstr "Page de la communauté globale" -#: mod/admin.php:619 +#: mod/admin.php:646 msgid "At post arrival" msgstr "A l'arrivé d'une publication" -#: mod/admin.php:620 include/contact_selectors.php:56 +#: mod/admin.php:647 include/contact_selectors.php:56 msgid "Frequently" msgstr "Fréquemment" -#: mod/admin.php:621 include/contact_selectors.php:57 +#: mod/admin.php:648 include/contact_selectors.php:57 msgid "Hourly" msgstr "Toutes les heures" -#: mod/admin.php:622 include/contact_selectors.php:58 +#: mod/admin.php:649 include/contact_selectors.php:58 msgid "Twice daily" msgstr "Deux fois par jour" -#: mod/admin.php:623 include/contact_selectors.php:59 +#: mod/admin.php:650 include/contact_selectors.php:59 msgid "Daily" msgstr "Chaque jour" -#: mod/admin.php:629 +#: mod/admin.php:656 msgid "Users, Global Contacts" msgstr "" -#: mod/admin.php:630 +#: mod/admin.php:657 msgid "Users, Global Contacts/fallback" msgstr "" -#: mod/admin.php:634 +#: mod/admin.php:661 msgid "One month" msgstr "Un mois" -#: mod/admin.php:635 +#: mod/admin.php:662 msgid "Three months" msgstr "Trois mois" -#: mod/admin.php:636 +#: mod/admin.php:663 msgid "Half a year" -msgstr "" +msgstr "Six mois" -#: mod/admin.php:637 +#: mod/admin.php:664 msgid "One year" msgstr "Un an" -#: mod/admin.php:642 +#: mod/admin.php:669 msgid "Multi user instance" msgstr "Instance multi-utilisateurs" -#: mod/admin.php:665 +#: mod/admin.php:692 msgid "Closed" msgstr "Fermé" -#: mod/admin.php:666 +#: mod/admin.php:693 msgid "Requires approval" msgstr "Demande une apptrobation" -#: mod/admin.php:667 +#: mod/admin.php:694 msgid "Open" msgstr "Ouvert" -#: mod/admin.php:671 +#: mod/admin.php:698 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:672 +#: mod/admin.php:699 msgid "Force all links to use SSL" msgstr "Forcer tous les liens à utiliser SSL" -#: mod/admin.php:673 +#: mod/admin.php:700 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: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 +#: mod/admin.php:712 mod/admin.php:1271 mod/admin.php:1507 mod/admin.php:1595 +#: mod/settings.php:648 mod/settings.php:758 mod/settings.php:802 +#: mod/settings.php:871 mod/settings.php:957 mod/settings.php:1192 msgid "Save Settings" msgstr "Sauvegarder les paramétres" -#: mod/admin.php:684 mod/register.php:260 +#: mod/admin.php:713 mod/register.php:263 msgid "Registration" msgstr "Inscription" -#: mod/admin.php:685 +#: mod/admin.php:714 msgid "File upload" msgstr "Téléversement de fichier" -#: mod/admin.php:686 +#: mod/admin.php:715 msgid "Policies" msgstr "Politiques" -#: mod/admin.php:687 +#: mod/admin.php:716 msgid "Advanced" msgstr "Avancé" -#: mod/admin.php:688 +#: mod/admin.php:717 msgid "Auto Discovered Contact Directory" msgstr "" -#: mod/admin.php:689 +#: mod/admin.php:718 msgid "Performance" msgstr "Performance" -#: mod/admin.php:690 +#: mod/admin.php:719 msgid "" "Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible." -#: mod/admin.php:693 +#: mod/admin.php:722 msgid "Site name" msgstr "Nom du site" -#: mod/admin.php:694 +#: mod/admin.php:723 msgid "Host name" msgstr "Nom de la machine hôte" -#: mod/admin.php:695 +#: mod/admin.php:724 msgid "Sender Email" -msgstr "" +msgstr "Courriel de l'émetteur" -#: mod/admin.php:696 +#: mod/admin.php:724 +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:725 msgid "Banner/Logo" msgstr "Bannière/Logo" -#: mod/admin.php:697 +#: mod/admin.php:726 msgid "Shortcut icon" -msgstr "" +msgstr "Icône de raccourci" -#: mod/admin.php:698 +#: mod/admin.php:726 +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:727 msgid "Touch icon" msgstr "" -#: mod/admin.php:699 +#: mod/admin.php:727 +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:728 msgid "Additional Info" msgstr "Informations supplémentaires" -#: mod/admin.php:699 +#: mod/admin.php:728 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/siteinfo." -msgstr "" +msgstr "Pour les serveurs publics : vous pouvez ajouter des informations supplémentaires ici, qui figureront dans %s/siteinfo." -#: mod/admin.php:700 +#: mod/admin.php:729 msgid "System language" msgstr "Langue du système" -#: mod/admin.php:701 +#: mod/admin.php:730 msgid "System theme" msgstr "Thème du système" -#: mod/admin.php:701 +#: mod/admin.php:730 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:702 +#: mod/admin.php:731 msgid "Mobile system theme" msgstr "Thème mobile" -#: mod/admin.php:702 +#: mod/admin.php:731 msgid "Theme for mobile devices" msgstr "Thème pour les terminaux mobiles" -#: mod/admin.php:703 +#: mod/admin.php:732 msgid "SSL link policy" msgstr "Politique SSL pour les liens" -#: mod/admin.php:703 +#: mod/admin.php:732 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:704 +#: mod/admin.php:733 msgid "Force SSL" msgstr "SSL obligatoire" -#: mod/admin.php:704 +#: mod/admin.php:733 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:705 +#: mod/admin.php:734 msgid "Old style 'Share'" msgstr "Anciens style 'Partage'" -#: mod/admin.php:705 +#: mod/admin.php:734 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:706 +#: mod/admin.php:735 msgid "Hide help entry from navigation menu" msgstr "Cacher l'aide du menu de navigation" -#: mod/admin.php:706 +#: mod/admin.php:735 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:707 +#: mod/admin.php:736 msgid "Single user instance" msgstr "Instance mono-utilisateur" -#: mod/admin.php:707 +#: mod/admin.php:736 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:708 +#: mod/admin.php:737 msgid "Maximum image size" msgstr "Taille maximale des images" -#: mod/admin.php:708 +#: mod/admin.php:737 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:709 +#: mod/admin.php:738 msgid "Maximum image length" msgstr "Longueur maximale des images" -#: mod/admin.php:709 +#: mod/admin.php:738 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:710 +#: mod/admin.php:739 msgid "JPEG image quality" msgstr "Qualité JPEG des images" -#: mod/admin.php:710 +#: mod/admin.php:739 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:712 +#: mod/admin.php:741 msgid "Register policy" msgstr "Politique d'inscription" -#: mod/admin.php:713 +#: mod/admin.php:742 msgid "Maximum Daily Registrations" msgstr "Inscriptions maximum par jour" -#: mod/admin.php:713 +#: mod/admin.php:742 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:714 +#: mod/admin.php:743 msgid "Register text" msgstr "Texte d'inscription" -#: mod/admin.php:714 +#: mod/admin.php:743 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:715 +#: mod/admin.php:744 msgid "Accounts abandoned after x days" msgstr "Les comptes sont abandonnés après x jours" -#: mod/admin.php:715 +#: mod/admin.php:744 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:716 +#: mod/admin.php:745 msgid "Allowed friend domains" msgstr "Domaines autorisés" -#: mod/admin.php:716 +#: mod/admin.php:745 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:717 +#: mod/admin.php:746 msgid "Allowed email domains" msgstr "Domaines courriel autorisés" -#: mod/admin.php:717 +#: mod/admin.php:746 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:718 +#: mod/admin.php:747 msgid "Block public" msgstr "Interdire la publication globale" -#: mod/admin.php:718 +#: mod/admin.php:747 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:719 +#: mod/admin.php:748 msgid "Force publish" msgstr "Forcer la publication globale" -#: mod/admin.php:719 +#: mod/admin.php:748 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:720 -msgid "Global directory update URL" -msgstr "URL de mise-à-jour de l'annuaire global" +#: mod/admin.php:749 +msgid "Global directory URL" +msgstr "URL de l'annuaire global" -#: mod/admin.php:720 +#: mod/admin.php:749 msgid "" -"URL to update the global directory. If this is not set, the global directory" -" is completely unavailable to the application." -msgstr "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible." +"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:721 +#: mod/admin.php:750 msgid "Allow threaded items" msgstr "autoriser le suivi des éléments par fil conducteur" -#: mod/admin.php:721 +#: mod/admin.php:750 msgid "Allow infinite level threading for items on this site." msgstr "Permettre une imbrication infinie des commentaires." -#: mod/admin.php:722 +#: mod/admin.php:751 msgid "Private posts by default for new users" msgstr "Publications privées par défaut pour les nouveaux utilisateurs" -#: mod/admin.php:722 +#: mod/admin.php:751 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:723 +#: mod/admin.php:752 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:723 +#: mod/admin.php:752 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:724 +#: mod/admin.php:753 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:724 +#: mod/admin.php:753 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:725 +#: mod/admin.php:754 msgid "Don't embed private images in posts" msgstr "Ne pas miniaturiser les images privées dans les publications" -#: mod/admin.php:725 +#: mod/admin.php:754 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 " @@ -2382,190 +2498,218 @@ msgid "" "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:726 +#: mod/admin.php:755 msgid "Allow Users to set remote_self" msgstr "Autoriser les utilisateurs à définir remote_self" -#: mod/admin.php:726 +#: mod/admin.php:755 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:727 +#: mod/admin.php:756 msgid "Block multiple registrations" msgstr "Interdire les inscriptions multiples" -#: mod/admin.php:727 +#: mod/admin.php:756 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:728 +#: mod/admin.php:757 msgid "OpenID support" msgstr "Support OpenID" -#: mod/admin.php:728 +#: mod/admin.php:757 msgid "OpenID support for registration and logins." msgstr "Supporter OpenID pour les inscriptions et connexions." -#: mod/admin.php:729 +#: mod/admin.php:758 msgid "Fullname check" msgstr "Vérification du \"Prénom Nom\"" -#: mod/admin.php:729 +#: mod/admin.php:758 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:730 +#: mod/admin.php:759 msgid "UTF-8 Regular expressions" msgstr "Regex UTF-8" -#: mod/admin.php:730 +#: mod/admin.php:759 msgid "Use PHP UTF8 regular expressions" msgstr "Utiliser les expressions rationnelles de PHP en UTF8" -#: mod/admin.php:731 +#: mod/admin.php:760 msgid "Community Page Style" -msgstr "" +msgstr "Style de la page de communauté" -#: mod/admin.php:731 +#: mod/admin.php:760 msgid "" "Type of community page to show. 'Global community' shows every public " "posting from an open distributed network that arrived on this server." -msgstr "" +msgstr "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:732 +#: mod/admin.php:761 msgid "Posts per user on community page" -msgstr "" +msgstr "Nombre de publications par utilisateur sur la page de la communauté (n'est pas valide pour " -#: mod/admin.php:732 +#: mod/admin.php:761 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "'Global Community')" -msgstr "" +msgstr "Nombre maximal de publications par utilisateurs sur la page de la communauté (ne s'applique pas pour « Communauté globale »)." -#: mod/admin.php:733 +#: mod/admin.php:762 msgid "Enable OStatus support" msgstr "Activer le support d'OStatus" -#: mod/admin.php:733 +#: mod/admin.php:762 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:734 +#: mod/admin.php:763 msgid "OStatus conversation completion interval" msgstr "Achèvement de l'intervalle de conversation OStatus " -#: mod/admin.php:734 +#: mod/admin.php:763 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:735 +#: mod/admin.php:764 +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:766 +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:767 msgid "Enable Diaspora support" msgstr "Activer le support de Diaspora" -#: mod/admin.php:735 +#: mod/admin.php:767 msgid "Provide built-in Diaspora network compatibility." msgstr "Fournir une compatibilité Diaspora intégrée." -#: mod/admin.php:736 +#: mod/admin.php:768 msgid "Only allow Friendica contacts" msgstr "N'autoriser que les contacts Friendica" -#: mod/admin.php:736 +#: mod/admin.php:768 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:737 +#: mod/admin.php:769 msgid "Verify SSL" msgstr "Vérifier SSL" -#: mod/admin.php:737 +#: mod/admin.php:769 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:738 +#: mod/admin.php:770 msgid "Proxy user" msgstr "Utilisateur du proxy" -#: mod/admin.php:739 +#: mod/admin.php:771 msgid "Proxy URL" msgstr "URL du proxy" -#: mod/admin.php:740 +#: mod/admin.php:772 msgid "Network timeout" msgstr "Dépassement du délai d'attente du réseau" -#: mod/admin.php:740 +#: mod/admin.php:772 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:741 +#: mod/admin.php:773 msgid "Delivery interval" msgstr "Intervalle de transmission" -#: mod/admin.php:741 +#: mod/admin.php:773 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:742 +#: mod/admin.php:774 msgid "Poll interval" msgstr "Intervalle de réception" -#: mod/admin.php:742 +#: mod/admin.php:774 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:743 +#: mod/admin.php:775 msgid "Maximum Load Average" msgstr "Plafond de la charge moyenne" -#: mod/admin.php:743 +#: mod/admin.php:775 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:744 +#: mod/admin.php:776 msgid "Maximum Load Average (Frontend)" -msgstr "" +msgstr "Plafond de la charge moyenne (frontale)" -#: mod/admin.php:744 +#: mod/admin.php:776 msgid "Maximum system load before the frontend quits service - default 50." msgstr "" -#: mod/admin.php:746 -msgid "Periodical check of global contacts" +#: mod/admin.php:777 +msgid "Maximum table size for optimization" msgstr "" -#: mod/admin.php:746 +#: mod/admin.php:777 +msgid "" +"Maximum table size (in MB) for the automatic optimization - default 100 MB. " +"Enter -1 to disable it." +msgstr "" + +#: mod/admin.php:779 +msgid "Periodical check of global contacts" +msgstr "Vérification périodique des contacts globaux" + +#: mod/admin.php:779 msgid "" "If enabled, the global contacts are checked periodically for missing or " "outdated data and the vitality of the contacts and servers." -msgstr "" +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:747 +#: mod/admin.php:780 +msgid "Days between requery" +msgstr "Nombre de jours entre les requêtes" + +#: mod/admin.php:780 +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:781 msgid "Discover contacts from other servers" -msgstr "" +msgstr "Découvrir des contacts des autres serveurs" -#: mod/admin.php:747 +#: mod/admin.php:781 msgid "" "Periodically query other servers for contacts. You can choose between " "'users': the users on the remote system, 'Global Contacts': active contacts " @@ -2575,32 +2719,32 @@ msgid "" "Global Contacts'." msgstr "" -#: mod/admin.php:748 +#: mod/admin.php:782 msgid "Timeframe for fetching global contacts" msgstr "" -#: mod/admin.php:748 +#: mod/admin.php:782 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 +#: mod/admin.php:783 msgid "Search the local directory" msgstr "" -#: mod/admin.php:749 +#: mod/admin.php:783 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 +#: mod/admin.php:785 msgid "Publish server information" msgstr "" -#: mod/admin.php:751 +#: mod/admin.php:785 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 " @@ -2608,205 +2752,205 @@ msgid "" " href='http://the-federation.info/'>the-federation.info for details." msgstr "" -#: mod/admin.php:753 +#: mod/admin.php:787 msgid "Use MySQL full text engine" msgstr "Utiliser le moteur de recherche plein texte de MySQL" -#: mod/admin.php:753 +#: mod/admin.php:787 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:754 +#: mod/admin.php:788 msgid "Suppress Language" msgstr "Supprimer un langage" -#: mod/admin.php:754 +#: mod/admin.php:788 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:755 +#: mod/admin.php:789 msgid "Suppress Tags" msgstr "" -#: mod/admin.php:755 +#: mod/admin.php:789 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: mod/admin.php:756 +#: mod/admin.php:790 msgid "Path to item cache" msgstr "Chemin vers le cache des objets." -#: mod/admin.php:756 +#: mod/admin.php:790 msgid "The item caches buffers generated bbcode and external images." msgstr "" -#: mod/admin.php:757 +#: mod/admin.php:791 msgid "Cache duration in seconds" msgstr "Durée du cache en secondes" -#: mod/admin.php:757 +#: mod/admin.php:791 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:758 +#: mod/admin.php:792 msgid "Maximum numbers of comments per post" msgstr "Nombre maximum de commentaires par publication" -#: mod/admin.php:758 +#: mod/admin.php:792 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:759 +#: mod/admin.php:793 msgid "Path for lock file" msgstr "Chemin vers le ficher de verrouillage" -#: mod/admin.php:759 +#: mod/admin.php:793 msgid "" "The lock file is used to avoid multiple pollers at one time. Only define a " "folder here." msgstr "" -#: mod/admin.php:760 +#: mod/admin.php:794 msgid "Temp path" msgstr "Chemin des fichiers temporaires" -#: mod/admin.php:760 +#: mod/admin.php:794 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 +#: mod/admin.php:795 msgid "Base path to installation" msgstr "Chemin de base de l'installation" -#: mod/admin.php:761 +#: mod/admin.php:795 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 +#: mod/admin.php:796 msgid "Disable picture proxy" msgstr "Désactiver le proxy image " -#: mod/admin.php:762 +#: mod/admin.php:796 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:763 +#: mod/admin.php:797 msgid "Enable old style pager" msgstr "" -#: mod/admin.php:763 +#: mod/admin.php:797 msgid "" "The old style pager has page numbers but slows down massively the page " "speed." msgstr "" -#: mod/admin.php:764 +#: mod/admin.php:798 msgid "Only search in tags" msgstr "" -#: mod/admin.php:764 +#: mod/admin.php:798 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: mod/admin.php:766 +#: mod/admin.php:800 msgid "New base url" msgstr "Nouvelle URL de base" -#: mod/admin.php:766 +#: mod/admin.php:800 msgid "" "Change base url for this server. Sends relocate message to all DFRN contacts" " of all users." msgstr "" -#: mod/admin.php:768 +#: mod/admin.php:802 msgid "RINO Encryption" msgstr "" -#: mod/admin.php:768 +#: mod/admin.php:802 msgid "Encryption layer between nodes." msgstr "" -#: mod/admin.php:769 +#: mod/admin.php:803 msgid "Embedly API key" msgstr "" -#: mod/admin.php:769 +#: mod/admin.php:803 msgid "" "Embedly is used to fetch additional data for " "web pages. This is an optional parameter." msgstr "" -#: mod/admin.php:787 +#: mod/admin.php:821 msgid "Update has been marked successful" msgstr "Mise-à-jour validée comme 'réussie'" -#: mod/admin.php:795 +#: mod/admin.php:829 #, 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:798 +#: mod/admin.php:832 #, 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:810 +#: mod/admin.php:844 #, php-format msgid "Executing %s failed with error: %s" msgstr "L'exécution %s a échoué avec l'erreur: %s" -#: mod/admin.php:813 +#: mod/admin.php:847 #, php-format msgid "Update %s was successfully applied." msgstr "Mise-à-jour %s appliquée avec succès." -#: mod/admin.php:817 +#: mod/admin.php:851 #, 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:819 +#: mod/admin.php:853 #, 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:838 +#: mod/admin.php:872 msgid "No failed updates." msgstr "Pas de mises-à-jour échouées." -#: mod/admin.php:839 +#: mod/admin.php:873 msgid "Check database structure" msgstr "Vérifier la structure de la base de données" -#: mod/admin.php:844 +#: mod/admin.php:878 msgid "Failed Updates" msgstr "Mises-à-jour échouées" -#: mod/admin.php:845 +#: mod/admin.php:879 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:846 +#: mod/admin.php:880 msgid "Mark success (if update was manually applied)" msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)" -#: mod/admin.php:847 +#: mod/admin.php:881 msgid "Attempt to execute this update step automatically" msgstr "Tenter d'éxecuter cette étape automatiquement" -#: mod/admin.php:879 +#: mod/admin.php:913 #, php-format msgid "" "\n" @@ -2814,7 +2958,7 @@ msgid "" "\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:882 +#: mod/admin.php:916 #, php-format msgid "" "\n" @@ -2844,287 +2988,295 @@ msgid "" "\t\t\tThank you and welcome to %4$s." msgstr "\n\t\t\tVoici vos informations de connexion :\n\n\t\t\tAdresse :\t%1$s\n\t\t\tIdentifiant :\t\t%2$s\n\t\t\tMot de passe :\t\t%3$s\n\n\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\t\t\tMerci et bienvenu sur %4$s." -#: mod/admin.php:914 include/user.php:421 +#: mod/admin.php:948 include/user.php:423 #, php-format msgid "Registration details for %s" msgstr "Détails d'inscription pour %s" -#: mod/admin.php:926 +#: mod/admin.php:960 #, 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:933 +#: mod/admin.php:967 #, 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:972 +#: mod/admin.php:1006 #, php-format msgid "User '%s' deleted" msgstr "Utilisateur '%s' supprimé" -#: mod/admin.php:980 +#: mod/admin.php:1014 #, php-format msgid "User '%s' unblocked" msgstr "Utilisateur '%s' débloqué" -#: mod/admin.php:980 +#: mod/admin.php:1014 #, php-format msgid "User '%s' blocked" msgstr "Utilisateur '%s' bloqué" -#: mod/admin.php:1073 +#: mod/admin.php:1107 msgid "Add User" msgstr "Ajouter l'utilisateur" -#: mod/admin.php:1074 +#: mod/admin.php:1108 msgid "select all" msgstr "tout sélectionner" -#: mod/admin.php:1075 +#: mod/admin.php:1109 msgid "User registrations waiting for confirm" msgstr "Inscriptions d'utilisateurs en attente de confirmation" -#: mod/admin.php:1076 +#: mod/admin.php:1110 msgid "User waiting for permanent deletion" msgstr "Utilisateur en attente de suppression définitive" -#: mod/admin.php:1077 +#: mod/admin.php:1111 msgid "Request date" msgstr "Date de la demande" -#: mod/admin.php:1077 mod/admin.php:1089 mod/admin.php:1090 mod/admin.php:1105 +#: mod/admin.php:1111 mod/admin.php:1123 mod/admin.php:1124 mod/admin.php:1139 #: include/contact_selectors.php:79 include/contact_selectors.php:86 msgid "Email" msgstr "Courriel" -#: mod/admin.php:1078 +#: mod/admin.php:1112 msgid "No registrations." msgstr "Pas d'inscriptions." -#: mod/admin.php:1080 +#: mod/admin.php:1114 msgid "Deny" msgstr "Rejetter" -#: mod/admin.php:1084 +#: mod/admin.php:1118 msgid "Site admin" msgstr "Administration du Site" -#: mod/admin.php:1085 +#: mod/admin.php:1119 msgid "Account expired" msgstr "Compte expiré" -#: mod/admin.php:1088 +#: mod/admin.php:1122 msgid "New User" msgstr "Nouvel utilisateur" -#: mod/admin.php:1089 mod/admin.php:1090 +#: mod/admin.php:1123 mod/admin.php:1124 msgid "Register date" msgstr "Date d'inscription" -#: mod/admin.php:1089 mod/admin.php:1090 +#: mod/admin.php:1123 mod/admin.php:1124 msgid "Last login" msgstr "Dernière connexion" -#: mod/admin.php:1089 mod/admin.php:1090 +#: mod/admin.php:1123 mod/admin.php:1124 msgid "Last item" msgstr "Dernier élément" -#: mod/admin.php:1089 +#: mod/admin.php:1123 msgid "Deleted since" msgstr "Supprimé depuis" -#: mod/admin.php:1090 mod/settings.php:41 +#: mod/admin.php:1124 mod/settings.php:41 msgid "Account" msgstr "Compte" -#: mod/admin.php:1092 +#: mod/admin.php:1126 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:1093 +#: mod/admin.php:1127 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:1103 +#: mod/admin.php:1137 msgid "Name of the new user." msgstr "Nom du nouvel utilisateur." -#: mod/admin.php:1104 +#: mod/admin.php:1138 msgid "Nickname" msgstr "Pseudo" -#: mod/admin.php:1104 +#: mod/admin.php:1138 msgid "Nickname of the new user." msgstr "Pseudo du nouvel utilisateur." -#: mod/admin.php:1105 +#: mod/admin.php:1139 msgid "Email address of the new user." msgstr "Adresse mail du nouvel utilisateur." -#: mod/admin.php:1138 +#: mod/admin.php:1172 #, php-format msgid "Plugin %s disabled." msgstr "Extension %s désactivée." -#: mod/admin.php:1142 +#: mod/admin.php:1176 #, php-format msgid "Plugin %s enabled." msgstr "Extension %s activée." -#: mod/admin.php:1152 mod/admin.php:1375 +#: mod/admin.php:1186 mod/admin.php:1410 msgid "Disable" msgstr "Désactiver" -#: mod/admin.php:1154 mod/admin.php:1377 +#: mod/admin.php:1188 mod/admin.php:1412 msgid "Enable" msgstr "Activer" -#: mod/admin.php:1177 mod/admin.php:1405 +#: mod/admin.php:1211 mod/admin.php:1456 msgid "Toggle" msgstr "Activer/Désactiver" -#: mod/admin.php:1185 mod/admin.php:1415 +#: mod/admin.php:1219 mod/admin.php:1466 msgid "Author: " msgstr "Auteur: " -#: mod/admin.php:1186 mod/admin.php:1416 +#: mod/admin.php:1220 mod/admin.php:1467 msgid "Maintainer: " msgstr "Mainteneur: " -#: mod/admin.php:1335 +#: mod/admin.php:1272 +msgid "Reload active plugins" +msgstr "" + +#: mod/admin.php:1370 msgid "No themes found." msgstr "Aucun thème trouvé." -#: mod/admin.php:1397 +#: mod/admin.php:1448 msgid "Screenshot" msgstr "Capture d'écran" -#: mod/admin.php:1443 +#: mod/admin.php:1508 +msgid "Reload active themes" +msgstr "" + +#: mod/admin.php:1512 msgid "[Experimental]" msgstr "[Expérimental]" -#: mod/admin.php:1444 +#: mod/admin.php:1513 msgid "[Unsupported]" msgstr "[Non supporté]" -#: mod/admin.php:1471 +#: mod/admin.php:1540 msgid "Log settings updated." msgstr "Réglages des journaux mis-à-jour." -#: mod/admin.php:1527 +#: mod/admin.php:1596 msgid "Clear" msgstr "Effacer" -#: mod/admin.php:1533 +#: mod/admin.php:1602 msgid "Enable Debugging" msgstr "Activer le déboggage" -#: mod/admin.php:1534 +#: mod/admin.php:1603 msgid "Log file" msgstr "Fichier de journaux" -#: mod/admin.php:1534 +#: mod/admin.php:1603 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:1535 +#: mod/admin.php:1604 msgid "Log level" msgstr "Niveau de journalisaton" -#: mod/admin.php:1585 include/acl_selectors.php:347 +#: mod/admin.php:1654 include/acl_selectors.php:348 msgid "Close" msgstr "Fermer" -#: mod/admin.php:1591 +#: mod/admin.php:1660 msgid "FTP Host" msgstr "Hôte FTP" -#: mod/admin.php:1592 +#: mod/admin.php:1661 msgid "FTP Path" msgstr "Chemin FTP" -#: mod/admin.php:1593 +#: mod/admin.php:1662 msgid "FTP User" msgstr "Utilisateur FTP" -#: mod/admin.php:1594 +#: mod/admin.php:1663 msgid "FTP Password" msgstr "Mot de passe FTP" -#: mod/network.php:143 +#: mod/network.php:146 #, php-format msgid "Search Results For: %s" msgstr "" -#: mod/network.php:187 mod/search.php:25 +#: mod/network.php:191 mod/search.php:25 msgid "Remove term" msgstr "Retirer le terme" -#: mod/network.php:196 mod/search.php:34 include/features.php:42 +#: mod/network.php:200 mod/search.php:34 include/features.php:79 msgid "Saved Searches" msgstr "Recherches" -#: mod/network.php:197 include/group.php:277 +#: mod/network.php:201 include/group.php:293 msgid "add" msgstr "ajouter" -#: mod/network.php:358 +#: mod/network.php:362 msgid "Commented Order" msgstr "Tri par commentaires" -#: mod/network.php:361 +#: mod/network.php:365 msgid "Sort by Comment Date" msgstr "Trier par date de commentaire" -#: mod/network.php:365 +#: mod/network.php:370 msgid "Posted Order" msgstr "Tri des publications" -#: mod/network.php:368 +#: mod/network.php:373 msgid "Sort by Post Date" msgstr "Trier par date de publication" -#: mod/network.php:378 +#: mod/network.php:384 msgid "Posts that mention or involve you" msgstr "Publications qui vous concernent" -#: mod/network.php:385 +#: mod/network.php:392 msgid "New" msgstr "Nouveau" -#: mod/network.php:388 +#: mod/network.php:395 msgid "Activity Stream - by date" msgstr "Flux d'activités - par date" -#: mod/network.php:395 +#: mod/network.php:403 msgid "Shared Links" msgstr "Liens partagés" -#: mod/network.php:398 +#: mod/network.php:406 msgid "Interesting Links" msgstr "Liens intéressants" -#: mod/network.php:405 +#: mod/network.php:414 msgid "Starred" msgstr "Mis en avant" -#: mod/network.php:408 +#: mod/network.php:417 msgid "Favourite Posts" msgstr "Publications favorites" -#: mod/network.php:466 +#: mod/network.php:476 #, php-format msgid "Warning: This group contains %s member from an insecure network." msgid_plural "" @@ -3132,45 +3284,40 @@ msgid_plural "" 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:469 +#: mod/network.php:479 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:532 mod/content.php:119 +#: mod/network.php:546 mod/content.php:119 msgid "No such group" msgstr "Groupe inexistant" -#: mod/network.php:549 mod/content.php:130 +#: mod/network.php:563 mod/content.php:130 msgid "Group is empty" msgstr "Groupe vide" -#: mod/network.php:560 mod/content.php:135 +#: mod/network.php:574 mod/content.php:135 #, php-format msgid "Group: %s" msgstr "" -#: mod/network.php:578 -#, php-format -msgid "Contact: %s" -msgstr "" - -#: mod/network.php:582 +#: mod/network.php:606 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:587 +#: mod/network.php:611 msgid "Invalid contact." msgstr "Contact invalide." -#: mod/allfriends.php:37 +#: mod/allfriends.php:45 +msgid "No friends to display." +msgstr "Pas d'amis à afficher." + +#: mod/allfriends.php:92 #, php-format msgid "Friends of %s" msgstr "Amis de %s" -#: mod/allfriends.php:44 -msgid "No friends to display." -msgstr "Pas d'amis à afficher." - #: mod/events.php:71 mod/events.php:73 msgid "Event can not end before it has started." msgstr "" @@ -3179,228 +3326,405 @@ msgstr "" 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:317 +#: mod/events.php:201 +msgid "Sun" +msgstr "Dim" + +#: 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 "Jeu" + +#: mod/events.php:206 +msgid "Fri" +msgstr "Ven" + +#: mod/events.php:207 +msgid "Sat" +msgstr "Sam" + +#: mod/events.php:208 mod/settings.php:936 include/text.php:1274 +msgid "Sunday" +msgstr "Dimanche" + +#: mod/events.php:209 mod/settings.php:936 include/text.php:1274 +msgid "Monday" +msgstr "Lundi" + +#: mod/events.php:210 include/text.php:1274 +msgid "Tuesday" +msgstr "Mardi" + +#: mod/events.php:211 include/text.php:1274 +msgid "Wednesday" +msgstr "Mercredi" + +#: mod/events.php:212 include/text.php:1274 +msgid "Thursday" +msgstr "Jeudi" + +#: mod/events.php:213 include/text.php:1274 +msgid "Friday" +msgstr "Vendredi" + +#: mod/events.php:214 include/text.php:1274 +msgid "Saturday" +msgstr "Samedi" + +#: mod/events.php:215 +msgid "Jan" +msgstr "Jan" + +#: mod/events.php:216 +msgid "Feb" +msgstr "Fév" + +#: mod/events.php:217 +msgid "Mar" +msgstr "Mar" + +#: mod/events.php:218 +msgid "Apr" +msgstr "Avr" + +#: mod/events.php:219 mod/events.php:231 include/text.php:1278 +msgid "May" +msgstr "Mai" + +#: mod/events.php:220 +msgid "Jun" +msgstr "Jun" + +#: mod/events.php:221 +msgid "Jul" +msgstr "Jul" + +#: mod/events.php:222 +msgid "Aug" +msgstr "Aoû" + +#: mod/events.php:223 +msgid "Sept" +msgstr "Sep" + +#: mod/events.php:224 +msgid "Oct" +msgstr "Oct" + +#: mod/events.php:225 +msgid "Nov" +msgstr "Nov" + +#: mod/events.php:226 +msgid "Dec" +msgstr "Déc" + +#: mod/events.php:227 include/text.php:1278 +msgid "January" +msgstr "Janvier" + +#: mod/events.php:228 include/text.php:1278 +msgid "February" +msgstr "Février" + +#: mod/events.php:229 include/text.php:1278 +msgid "March" +msgstr "Mars" + +#: mod/events.php:230 include/text.php:1278 +msgid "April" +msgstr "Avril" + +#: mod/events.php:232 include/text.php:1278 +msgid "June" +msgstr "Juin" + +#: mod/events.php:233 include/text.php:1278 +msgid "July" +msgstr "Juillet" + +#: mod/events.php:234 include/text.php:1278 +msgid "August" +msgstr "Août" + +#: mod/events.php:235 include/text.php:1278 +msgid "September" +msgstr "Septembre" + +#: mod/events.php:236 include/text.php:1278 +msgid "October" +msgstr "Octobre" + +#: mod/events.php:237 include/text.php:1278 +msgid "November" +msgstr "Novembre" + +#: mod/events.php:238 include/text.php:1278 +msgid "December" +msgstr "Décembre" + +#: mod/events.php:239 +msgid "today" +msgstr "aujourd'hui" + +#: mod/events.php:240 include/datetime.php:288 +msgid "month" +msgstr "mois" + +#: mod/events.php:241 include/datetime.php:289 +msgid "week" +msgstr "semaine" + +#: mod/events.php:242 include/datetime.php:290 +msgid "day" +msgstr "jour" + +#: mod/events.php:377 msgid "l, F j" msgstr "l, F j" -#: mod/events.php:339 +#: mod/events.php:399 msgid "Edit event" msgstr "Editer l'événement" -#: mod/events.php:361 include/text.php:1716 include/text.php:1723 +#: mod/events.php:421 include/text.php:1721 include/text.php:1728 msgid "link to source" msgstr "lien original" -#: mod/events.php:396 include/identity.php:667 include/nav.php:80 -#: view/theme/diabook/theme.php:127 +#: mod/events.php:456 include/identity.php:686 include/nav.php:79 +#: include/nav.php:140 view/theme/diabook/theme.php:127 msgid "Events" msgstr "Événements" -#: mod/events.php:397 +#: mod/events.php:457 msgid "Create New Event" msgstr "Créer un nouvel événement" -#: mod/events.php:398 +#: mod/events.php:458 msgid "Previous" msgstr "Précédent" -#: mod/events.php:399 mod/install.php:209 +#: mod/events.php:459 mod/install.php:220 msgid "Next" msgstr "Suivant" -#: mod/events.php:491 +#: mod/events.php:554 msgid "Event details" msgstr "Détails de l'événement" -#: mod/events.php:492 +#: mod/events.php:555 msgid "Starting date and Title are required." -msgstr "" +msgstr "La date de début et le titre sont requis." -#: mod/events.php:493 +#: mod/events.php:556 msgid "Event Starts:" msgstr "Début de l'événement :" -#: mod/events.php:493 mod/events.php:505 +#: mod/events.php:556 mod/events.php:568 msgid "Required" msgstr "Requis" -#: mod/events.php:495 +#: mod/events.php:558 msgid "Finish date/time is not known or not relevant" msgstr "Date / heure de fin inconnue ou sans objet" -#: mod/events.php:497 +#: mod/events.php:560 msgid "Event Finishes:" msgstr "Fin de l'événement:" -#: mod/events.php:499 +#: mod/events.php:562 msgid "Adjust for viewer timezone" msgstr "Ajuster à la zone horaire du visiteur" -#: mod/events.php:501 +#: mod/events.php:564 msgid "Description:" msgstr "Description:" -#: mod/events.php:505 +#: mod/events.php:568 msgid "Title:" msgstr "Titre :" -#: mod/events.php:507 +#: mod/events.php:570 msgid "Share this event" msgstr "Partager cet événement" -#: 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 +#: mod/events.php:572 mod/content.php:721 mod/editpost.php:144 +#: mod/photos.php:1623 mod/photos.php:1671 mod/photos.php:1759 +#: object/Item.php:719 include/conversation.php:1217 msgid "Preview" msgstr "Aperçu" -#: mod/content.php:439 mod/content.php:742 mod/photos.php:1672 -#: object/Item.php:130 include/conversation.php:612 +#: mod/credits.php:16 +msgid "Credits" +msgstr "Remerciements" + +#: 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 est un projet communautaire, qui ne serait pas possible sans l'aide de beaucoup de gens. Voici une liste de ceux qui ont contribué au code ou à la traduction de Friendica. Merci à tous!" + +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1714 +#: object/Item.php:133 include/conversation.php:634 msgid "Select" msgstr "Sélectionner" #: mod/content.php:473 mod/content.php:854 mod/content.php:855 -#: object/Item.php:328 object/Item.php:329 include/conversation.php:653 +#: object/Item.php:357 object/Item.php:358 include/conversation.php:675 #, php-format msgid "View %s's profile @ %s" msgstr "Voir le profil de %s @ %s" -#: mod/content.php:483 mod/content.php:866 object/Item.php:342 -#: include/conversation.php:673 +#: mod/content.php:483 mod/content.php:866 object/Item.php:371 +#: include/conversation.php:695 #, php-format msgid "%s from %s" msgstr "%s de %s" -#: mod/content.php:499 include/conversation.php:689 +#: mod/content.php:499 include/conversation.php:711 msgid "View in context" msgstr "Voir dans le contexte" -#: mod/content.php:605 object/Item.php:389 +#: mod/content.php:605 object/Item.php:419 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d commentaire" msgstr[1] "%d commentaires" -#: mod/content.php:607 object/Item.php:391 object/Item.php:404 -#: include/text.php:2038 +#: mod/content.php:607 object/Item.php:421 object/Item.php:434 +#: include/text.php:1999 msgid "comment" msgid_plural "comments" msgstr[0] "" msgstr[1] "commentaire" -#: mod/content.php:608 boot.php:765 object/Item.php:392 -#: include/contact_widgets.php:205 include/items.php:5133 +#: mod/content.php:608 boot.php:773 object/Item.php:422 +#: include/contact_widgets.php:242 include/forums.php:110 +#: include/items.php:5152 view/theme/vier/theme.php:264 msgid "show more" msgstr "montrer plus" -#: mod/content.php:622 mod/photos.php:1379 object/Item.php:117 +#: mod/content.php:622 mod/photos.php:1410 object/Item.php:117 msgid "Private Message" msgstr "Message privé" -#: mod/content.php:686 mod/photos.php:1561 object/Item.php:232 +#: mod/content.php:686 mod/photos.php:1599 object/Item.php:253 msgid "I like this (toggle)" msgstr "J'aime" -#: mod/content.php:686 object/Item.php:232 +#: mod/content.php:686 object/Item.php:253 msgid "like" msgstr "aime" -#: mod/content.php:687 mod/photos.php:1562 object/Item.php:233 +#: mod/content.php:687 mod/photos.php:1600 object/Item.php:254 msgid "I don't like this (toggle)" msgstr "Je n'aime pas" -#: mod/content.php:687 object/Item.php:233 +#: mod/content.php:687 object/Item.php:254 msgid "dislike" msgstr "n'aime pas" -#: mod/content.php:689 object/Item.php:235 +#: mod/content.php:689 object/Item.php:256 msgid "Share this" msgstr "Partager" -#: mod/content.php:689 object/Item.php:235 +#: mod/content.php:689 object/Item.php:256 msgid "share" msgstr "partager" -#: mod/content.php:709 mod/photos.php:1581 mod/photos.php:1625 -#: mod/photos.php:1713 object/Item.php:677 +#: mod/content.php:709 mod/photos.php:1619 mod/photos.php:1667 +#: mod/photos.php:1755 object/Item.php:707 msgid "This is you" msgstr "C'est vous" -#: 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 +#: mod/content.php:711 mod/photos.php:1621 mod/photos.php:1669 +#: mod/photos.php:1757 boot.php:772 object/Item.php:393 object/Item.php:709 msgid "Comment" msgstr "Commenter" -#: mod/content.php:713 object/Item.php:681 +#: mod/content.php:713 object/Item.php:711 msgid "Bold" msgstr "Gras" -#: mod/content.php:714 object/Item.php:682 +#: mod/content.php:714 object/Item.php:712 msgid "Italic" msgstr "Italique" -#: mod/content.php:715 object/Item.php:683 +#: mod/content.php:715 object/Item.php:713 msgid "Underline" msgstr "Souligné" -#: mod/content.php:716 object/Item.php:684 +#: mod/content.php:716 object/Item.php:714 msgid "Quote" msgstr "Citation" -#: mod/content.php:717 object/Item.php:685 +#: mod/content.php:717 object/Item.php:715 msgid "Code" msgstr "Code" -#: mod/content.php:718 object/Item.php:686 +#: mod/content.php:718 object/Item.php:716 msgid "Image" msgstr "Image" -#: mod/content.php:719 object/Item.php:687 +#: mod/content.php:719 object/Item.php:717 msgid "Link" msgstr "Lien" -#: mod/content.php:720 object/Item.php:688 +#: mod/content.php:720 object/Item.php:718 msgid "Video" msgstr "Vidéo" -#: mod/content.php:730 mod/settings.php:694 object/Item.php:121 +#: mod/content.php:730 mod/settings.php:710 object/Item.php:122 +#: object/Item.php:124 msgid "Edit" msgstr "Éditer" -#: mod/content.php:755 object/Item.php:196 +#: mod/content.php:755 object/Item.php:217 msgid "add star" msgstr "mett en avant" -#: mod/content.php:756 object/Item.php:197 +#: mod/content.php:756 object/Item.php:218 msgid "remove star" msgstr "ne plus mettre en avant" -#: mod/content.php:757 object/Item.php:198 +#: mod/content.php:757 object/Item.php:219 msgid "toggle star status" msgstr "mettre en avant" -#: mod/content.php:760 object/Item.php:201 +#: mod/content.php:760 object/Item.php:222 msgid "starred" msgstr "mis en avant" -#: mod/content.php:761 object/Item.php:221 +#: mod/content.php:761 object/Item.php:242 msgid "add tag" msgstr "ajouter une étiquette" -#: mod/content.php:765 object/Item.php:134 +#: mod/content.php:765 object/Item.php:137 msgid "save to folder" msgstr "sauver vers dossier" -#: mod/content.php:856 object/Item.php:330 +#: mod/content.php:856 object/Item.php:359 msgid "to" msgstr "à" -#: mod/content.php:857 object/Item.php:332 +#: mod/content.php:857 object/Item.php:361 msgid "Wall-to-Wall" msgstr "Inter-mur" -#: mod/content.php:858 object/Item.php:333 +#: mod/content.php:858 object/Item.php:362 msgid "via Wall-To-Wall:" msgstr "en Inter-mur:" @@ -3418,295 +3742,322 @@ msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversi msgid "Please enter your password for verification:" msgstr "Merci de saisir votre mot de passe pour vérification :" -#: mod/install.php:119 +#: mod/install.php:128 msgid "Friendica Communications Server - Setup" msgstr "Serveur de communications Friendica - Configuration" -#: mod/install.php:125 +#: mod/install.php:134 msgid "Could not connect to database." msgstr "Impossible de se connecter à la base." -#: mod/install.php:129 +#: mod/install.php:138 msgid "Could not create table." msgstr "Impossible de créer une table." -#: mod/install.php:135 +#: mod/install.php:144 msgid "Your Friendica site database has been installed." msgstr "La base de données de votre site Friendica a bien été installée." -#: mod/install.php:140 +#: mod/install.php:149 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "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:141 mod/install.php:208 mod/install.php:530 +#: mod/install.php:150 mod/install.php:219 mod/install.php:577 msgid "Please see the file \"INSTALL.txt\"." msgstr "Référez-vous au fichier \"INSTALL.txt\"." -#: mod/install.php:153 +#: mod/install.php:162 msgid "Database already in use." -msgstr "" +msgstr "Base de données déjà en cours d'utilisation." -#: mod/install.php:205 +#: mod/install.php:216 msgid "System check" msgstr "Vérifications système" -#: mod/install.php:210 +#: mod/install.php:221 msgid "Check again" msgstr "Vérifier à nouveau" -#: mod/install.php:229 +#: mod/install.php:240 msgid "Database connection" msgstr "Connexion à la base de données" -#: mod/install.php:230 +#: mod/install.php:241 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données." -#: mod/install.php:231 +#: mod/install.php:242 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages." -#: mod/install.php:232 +#: mod/install.php:243 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "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." -#: mod/install.php:236 +#: mod/install.php:247 msgid "Database Server Name" msgstr "Serveur de base de données" -#: mod/install.php:237 +#: mod/install.php:248 msgid "Database Login Name" msgstr "Nom d'utilisateur de la base" -#: mod/install.php:238 +#: mod/install.php:249 msgid "Database Login Password" msgstr "Mot de passe de la base" -#: mod/install.php:239 +#: mod/install.php:250 msgid "Database Name" msgstr "Nom de la base" -#: mod/install.php:240 mod/install.php:279 +#: mod/install.php:251 mod/install.php:290 msgid "Site administrator email address" msgstr "Adresse électronique de l'administrateur du site" -#: mod/install.php:240 mod/install.php:279 +#: 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 "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration." -#: mod/install.php:244 mod/install.php:282 +#: mod/install.php:255 mod/install.php:293 msgid "Please select a default timezone for your website" msgstr "Sélectionner un fuseau horaire par défaut pour votre site" -#: mod/install.php:269 +#: mod/install.php:280 msgid "Site settings" msgstr "Réglages du site" -#: mod/install.php:323 +#: mod/install.php:334 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web." -#: mod/install.php:324 +#: 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 'Activating scheduled tasks'" -msgstr "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir 'Activating scheduled tasks'" +"href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-" +"up-the-poller'>'Setup the poller'" +msgstr "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'." -#: mod/install.php:328 +#: mod/install.php:339 msgid "PHP executable path" msgstr "Chemin vers l'exécutable de PHP" -#: mod/install.php:328 +#: mod/install.php:339 msgid "" "Enter full path to php executable. You can leave this blank to continue the " "installation." msgstr "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation." -#: mod/install.php:333 +#: mod/install.php:344 msgid "Command line PHP" msgstr "Version \"ligne de commande\" de PHP" -#: mod/install.php:342 +#: mod/install.php:353 msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" msgstr "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)" -#: mod/install.php:343 +#: mod/install.php:354 msgid "Found PHP version: " msgstr "Version de PHP:" -#: mod/install.php:345 +#: mod/install.php:356 msgid "PHP cli binary" msgstr "PHP cli binary" -#: mod/install.php:356 +#: mod/install.php:367 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé." -#: mod/install.php:357 +#: mod/install.php:368 msgid "This is required for message delivery to work." msgstr "Ceci est requis pour que la livraison des messages fonctionne." -#: mod/install.php:359 +#: mod/install.php:370 msgid "PHP register_argc_argv" msgstr "PHP register_argc_argv" -#: mod/install.php:380 +#: mod/install.php:391 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement" -#: mod/install.php:381 +#: mod/install.php:392 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"." -#: mod/install.php:383 +#: mod/install.php:394 msgid "Generate encryption keys" msgstr "Générer les clés de chiffrement" -#: mod/install.php:390 +#: mod/install.php:401 msgid "libCurl PHP module" msgstr "Module libCurl de PHP" -#: mod/install.php:391 +#: mod/install.php:402 msgid "GD graphics PHP module" msgstr "Module GD (graphiques) de PHP" -#: mod/install.php:392 +#: mod/install.php:403 msgid "OpenSSL PHP module" msgstr "Module OpenSSL de PHP" -#: mod/install.php:393 +#: mod/install.php:404 msgid "mysqli PHP module" msgstr "Module Mysqli de PHP" -#: mod/install.php:394 +#: mod/install.php:405 msgid "mb_string PHP module" msgstr "Module mb_string de PHP" -#: mod/install.php:399 mod/install.php:401 +#: mod/install.php:406 +msgid "mcrypt PHP module" +msgstr "Module PHP mcrypt" + +#: mod/install.php:411 mod/install.php:413 msgid "Apache mod_rewrite module" msgstr "Module mod_rewrite Apache" -#: mod/install.php:399 +#: mod/install.php:411 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Erreur : Le module \"rewrite\" du serveur web Apache est requis mais pas installé." -#: mod/install.php:407 +#: mod/install.php:419 msgid "Error: libCURL PHP module required but not installed." msgstr "Erreur : Le module PHP \"libCURL\" est requis mais pas installé." -#: mod/install.php:411 +#: mod/install.php:423 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Erreur : Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé." -#: mod/install.php:415 +#: mod/install.php:427 msgid "Error: openssl PHP module required but not installed." msgstr "Erreur : Le module PHP \"openssl\" est requis mais pas installé." -#: mod/install.php:419 +#: mod/install.php:431 msgid "Error: mysqli PHP module required but not installed." msgstr "Erreur : Le module PHP \"mysqli\" est requis mais pas installé." -#: mod/install.php:423 +#: mod/install.php:435 msgid "Error: mb_string PHP module required but not installed." msgstr "Erreur : le module PHP mb_string est requis mais pas installé." -#: mod/install.php:440 +#: mod/install.php:439 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Erreur : le module PHP mcrypt est nécessaire, mais n'es pas installé." + +#: 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 "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." -#: mod/install.php:441 +#: 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 "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." -#: mod/install.php:442 +#: 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 "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." -#: mod/install.php:443 +#: 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 "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"." -#: mod/install.php:446 +#: mod/install.php:475 msgid ".htconfig.php is writable" msgstr "Fichier .htconfig.php accessible en écriture" -#: mod/install.php:456 +#: 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 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." -#: mod/install.php:457 +#: 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 "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." -#: mod/install.php:458 +#: 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 "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." -#: mod/install.php:459 +#: 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 "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." -#: mod/install.php:462 +#: mod/install.php:491 msgid "view/smarty3 is writable" msgstr "view/smarty3 est autorisé à l écriture" -#: mod/install.php:478 +#: mod/install.php:507 msgid "" "Url rewrite in .htaccess is not working. Check your server configuration." msgstr "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur." -#: mod/install.php:480 +#: mod/install.php:509 msgid "Url rewrite is working" msgstr "La réécriture d'URL fonctionne." -#: mod/install.php:489 +#: 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 "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:528 +#: mod/install.php:575 msgid "

    What next

    " msgstr "

    Ensuite

    " -#: mod/install.php:529 +#: mod/install.php:576 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the " "poller." @@ -3736,7 +4087,7 @@ msgstr "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour msgid "Help:" msgstr "Aide :" -#: mod/help.php:36 include/nav.php:114 +#: mod/help.php:36 include/nav.php:113 view/theme/vier/theme.php:302 msgid "Help" msgstr "Aide" @@ -3758,35 +4109,35 @@ msgstr "%1$s accueille %2$s" msgid "Welcome to %s" msgstr "Bienvenue sur %s" -#: mod/wall_attach.php:83 +#: 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:83 +#: 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:94 +#: mod/wall_attach.php:105 #, php-format msgid "File exceeds size limit of %s" msgstr "" -#: mod/wall_attach.php:145 mod/wall_attach.php:161 +#: mod/wall_attach.php:156 mod/wall_attach.php:172 msgid "File upload failed." msgstr "Le téléversement a échoué." -#: mod/match.php:13 -msgid "Profile Match" -msgstr "Correpondance de profils" - -#: mod/match.php:22 +#: 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:64 +#: mod/match.php:84 msgid "is interested in:" msgstr "s'intéresse à :" +#: mod/match.php:98 +msgid "Profile Match" +msgstr "Correpondance de profils" + #: mod/share.php:38 msgid "link" msgstr "lien" @@ -3795,16 +4146,16 @@ msgstr "lien" msgid "Not available." msgstr "Indisponible." -#: mod/community.php:32 include/nav.php:137 include/nav.php:139 +#: mod/community.php:32 include/nav.php:136 include/nav.php:138 #: view/theme/diabook/theme.php:129 msgid "Community" msgstr "Communauté" -#: mod/community.php:62 mod/community.php:71 mod/search.php:192 +#: mod/community.php:62 mod/community.php:71 mod/search.php:218 msgid "No results." msgstr "Aucun résultat." -#: mod/settings.php:34 mod/photos.php:102 +#: mod/settings.php:34 mod/photos.php:109 msgid "everybody" msgstr "tout le monde" @@ -3816,11 +4167,11 @@ msgstr "Fonctions supplémentaires" msgid "Display" msgstr "Afficher" -#: mod/settings.php:60 mod/settings.php:832 +#: mod/settings.php:60 mod/settings.php:853 msgid "Social Networks" msgstr "Réseaux sociaux" -#: mod/settings.php:72 include/nav.php:179 +#: mod/settings.php:72 include/nav.php:180 msgid "Delegations" msgstr "Délégations" @@ -3852,633 +4203,655 @@ msgstr "Réglages de courriel mis-à-jour." msgid "Features updated" msgstr "Fonctionnalités mises à jour" -#: mod/settings.php:339 +#: mod/settings.php:341 msgid "Relocate message has been send to your contacts" msgstr "Un message de relocalisation a été envoyé à vos contacts." -#: mod/settings.php:353 include/user.php:39 +#: mod/settings.php:355 include/user.php:39 msgid "Passwords do not match. Password unchanged." msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué." -#: mod/settings.php:358 +#: mod/settings.php:360 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué." -#: mod/settings.php:366 +#: mod/settings.php:368 msgid "Wrong password." msgstr "Mauvais mot de passe." -#: mod/settings.php:377 +#: mod/settings.php:379 msgid "Password changed." msgstr "Mots de passe changés." -#: mod/settings.php:379 +#: mod/settings.php:381 msgid "Password update failed. Please try again." msgstr "Le changement de mot de passe a échoué. Merci de recommencer." -#: mod/settings.php:446 +#: mod/settings.php:450 msgid " Please use a shorter name." msgstr " Merci d'utiliser un nom plus court." -#: mod/settings.php:448 +#: mod/settings.php:452 msgid " Name too short." msgstr " Nom trop court." -#: mod/settings.php:457 +#: mod/settings.php:461 msgid "Wrong Password" msgstr "Mauvais mot de passe" -#: mod/settings.php:462 +#: mod/settings.php:466 msgid " Not valid email." msgstr " Email invalide." -#: mod/settings.php:468 +#: mod/settings.php:472 msgid " Cannot change to that email." msgstr " Impossible de changer pour cet email." -#: mod/settings.php:524 +#: mod/settings.php:528 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:528 +#: mod/settings.php:532 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:558 +#: mod/settings.php:571 msgid "Settings updated." msgstr "Réglages mis à jour." -#: mod/settings.php:631 mod/settings.php:657 mod/settings.php:693 +#: mod/settings.php:647 mod/settings.php:673 mod/settings.php:709 msgid "Add application" msgstr "Ajouter une application" -#: mod/settings.php:635 mod/settings.php:661 +#: mod/settings.php:651 mod/settings.php:677 msgid "Consumer Key" msgstr "Clé utilisateur" -#: mod/settings.php:636 mod/settings.php:662 +#: mod/settings.php:652 mod/settings.php:678 msgid "Consumer Secret" msgstr "Secret utilisateur" -#: mod/settings.php:637 mod/settings.php:663 +#: mod/settings.php:653 mod/settings.php:679 msgid "Redirect" msgstr "Rediriger" -#: mod/settings.php:638 mod/settings.php:664 +#: mod/settings.php:654 mod/settings.php:680 msgid "Icon url" msgstr "URL de l'icône" -#: mod/settings.php:649 +#: mod/settings.php:665 msgid "You can't edit this application." msgstr "Vous ne pouvez pas éditer cette application." -#: mod/settings.php:692 +#: mod/settings.php:708 msgid "Connected Apps" msgstr "Applications connectées" -#: mod/settings.php:696 +#: mod/settings.php:712 msgid "Client key starts with" msgstr "La clé cliente commence par" -#: mod/settings.php:697 +#: mod/settings.php:713 msgid "No name" msgstr "Sans nom" -#: mod/settings.php:698 +#: mod/settings.php:714 msgid "Remove authorization" msgstr "Révoquer l'autorisation" -#: mod/settings.php:710 +#: mod/settings.php:726 msgid "No Plugin settings configured" msgstr "Pas de réglages d'extensions configurés" -#: mod/settings.php:718 +#: mod/settings.php:734 msgid "Plugin Settings" msgstr "Extensions" -#: mod/settings.php:732 +#: mod/settings.php:748 msgid "Off" msgstr "Éteint" -#: mod/settings.php:732 +#: mod/settings.php:748 msgid "On" msgstr "Allumé" -#: mod/settings.php:740 +#: mod/settings.php:756 msgid "Additional Features" msgstr "Fonctions supplémentaires" -#: mod/settings.php:750 mod/settings.php:754 +#: mod/settings.php:766 mod/settings.php:770 msgid "General Social Media Settings" -msgstr "" +msgstr "Paramètres généraux des réseaux sociaux" -#: mod/settings.php:760 +#: mod/settings.php:776 msgid "Disable intelligent shortening" -msgstr "" +msgstr "Désactiver la réduction d'URL" -#: mod/settings.php:762 +#: mod/settings.php:778 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 "" +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:768 +#: mod/settings.php:784 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" -msgstr "" +msgstr "Suivre automatiquement ceux qui me suivent ou me mentionnent sur GNU Social (OStatus)" -#: mod/settings.php:770 +#: mod/settings.php:786 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 "" +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:776 +#: mod/settings.php:795 msgid "Your legacy GNU Social account" -msgstr "" +msgstr "Le compte GNU Social que vous avez déjà" -#: mod/settings.php:778 +#: mod/settings.php:797 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 "" +msgstr "Si vous entrez votre 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:788 mod/settings.php:789 +#: mod/settings.php:800 +msgid "Repair OStatus subscriptions" +msgstr "Réparer les abonnements OStatus" + +#: mod/settings.php:809 mod/settings.php:810 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Le support natif pour la connectivité %s est %s" -#: mod/settings.php:788 mod/dfrn_request.php:853 +#: mod/settings.php:809 mod/dfrn_request.php:858 #: include/contact_selectors.php:80 msgid "Diaspora" msgstr "Diaspora" -#: mod/settings.php:788 mod/settings.php:789 +#: mod/settings.php:809 mod/settings.php:810 msgid "enabled" msgstr "activé" -#: mod/settings.php:788 mod/settings.php:789 +#: mod/settings.php:809 mod/settings.php:810 msgid "disabled" msgstr "désactivé" -#: mod/settings.php:789 +#: mod/settings.php:810 msgid "GNU Social (OStatus)" -msgstr "" +msgstr "GNU Social (OStatus)" -#: mod/settings.php:825 +#: mod/settings.php:846 msgid "Email access is disabled on this site." msgstr "L'accès courriel est désactivé sur ce site." -#: mod/settings.php:837 +#: mod/settings.php:858 msgid "Email/Mailbox Setup" msgstr "Réglages de courriel/boîte à lettre" -#: mod/settings.php:838 +#: mod/settings.php:859 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:839 +#: mod/settings.php:860 msgid "Last successful email check:" msgstr "Dernière vérification réussie des courriels:" -#: mod/settings.php:841 +#: mod/settings.php:862 msgid "IMAP server name:" msgstr "Nom du serveur IMAP:" -#: mod/settings.php:842 +#: mod/settings.php:863 msgid "IMAP port:" msgstr "Port IMAP:" -#: mod/settings.php:843 +#: mod/settings.php:864 msgid "Security:" msgstr "Sécurité:" -#: mod/settings.php:843 mod/settings.php:848 +#: mod/settings.php:864 mod/settings.php:869 msgid "None" msgstr "Aucun(e)" -#: mod/settings.php:844 +#: mod/settings.php:865 msgid "Email login name:" msgstr "Nom de connexion:" -#: mod/settings.php:845 +#: mod/settings.php:866 msgid "Email password:" msgstr "Mot de passe:" -#: mod/settings.php:846 +#: mod/settings.php:867 msgid "Reply-to address:" msgstr "Adresse de réponse:" -#: mod/settings.php:847 +#: mod/settings.php:868 msgid "Send public posts to all email contacts:" msgstr "Envoyer les publications publiques à tous les contacts courriels:" -#: mod/settings.php:848 +#: mod/settings.php:869 msgid "Action after import:" msgstr "Action après import:" -#: mod/settings.php:848 +#: mod/settings.php:869 msgid "Mark as seen" msgstr "Marquer comme vu" -#: mod/settings.php:848 +#: mod/settings.php:869 msgid "Move to folder" msgstr "Déplacer vers" -#: mod/settings.php:849 +#: mod/settings.php:870 msgid "Move to folder:" msgstr "Déplacer vers:" -#: mod/settings.php:930 +#: mod/settings.php:955 msgid "Display Settings" msgstr "Affichage" -#: mod/settings.php:936 mod/settings.php:952 +#: mod/settings.php:961 mod/settings.php:979 msgid "Display Theme:" msgstr "Thème d'affichage:" -#: mod/settings.php:937 +#: mod/settings.php:962 msgid "Mobile Theme:" msgstr "Thème mobile:" -#: mod/settings.php:938 +#: mod/settings.php:963 msgid "Update browser every xx seconds" msgstr "Mettre-à-jour l'affichage toutes les xx secondes" -#: mod/settings.php:938 +#: mod/settings.php:963 msgid "Minimum of 10 seconds, no maximum" msgstr "Délai minimum de 10 secondes, pas de maximum" -#: mod/settings.php:939 +#: mod/settings.php:964 msgid "Number of items to display per page:" msgstr "Nombre d’éléments par page:" -#: mod/settings.php:939 mod/settings.php:940 +#: mod/settings.php:964 mod/settings.php:965 msgid "Maximum of 100 items" msgstr "Maximum de 100 éléments" -#: mod/settings.php:940 +#: mod/settings.php:965 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:941 +#: mod/settings.php:966 msgid "Don't show emoticons" msgstr "Ne pas afficher les émoticônes (smileys grahiques)" -#: mod/settings.php:942 +#: mod/settings.php:967 +msgid "Calendar" +msgstr "Calendrier" + +#: mod/settings.php:968 +msgid "Beginning of week:" +msgstr "Début de la semaine :" + +#: mod/settings.php:969 msgid "Don't show notices" msgstr "Ne plus afficher les avis" -#: mod/settings.php:943 +#: mod/settings.php:970 msgid "Infinite scroll" msgstr "Défilement infini" -#: mod/settings.php:944 +#: mod/settings.php:971 msgid "Automatic updates only at the top of the network page" msgstr "" -#: mod/settings.php:946 view/theme/cleanzero/config.php:82 +#: mod/settings.php:973 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 +#: view/theme/diabook/config.php:150 view/theme/clean/config.php:85 +#: 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:1022 +#: mod/settings.php:1050 msgid "User Types" msgstr "Types d'utilisateurs" -#: mod/settings.php:1023 +#: mod/settings.php:1051 msgid "Community Types" msgstr "Genre de communautés" -#: mod/settings.php:1024 +#: mod/settings.php:1052 msgid "Normal Account Page" msgstr "Compte normal" -#: mod/settings.php:1025 +#: mod/settings.php:1053 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:1028 +#: mod/settings.php:1056 msgid "Soapbox Page" msgstr "Compte \"boîte à savon\"" -#: mod/settings.php:1029 +#: mod/settings.php:1057 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:1032 +#: mod/settings.php:1060 msgid "Community Forum/Celebrity Account" msgstr "Compte de communauté/célébrité" -#: mod/settings.php:1033 +#: mod/settings.php:1061 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:1036 +#: mod/settings.php:1064 msgid "Automatic Friend Page" msgstr "Compte d'\"amitié automatique\"" -#: mod/settings.php:1037 +#: mod/settings.php:1065 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:1040 +#: mod/settings.php:1068 msgid "Private Forum [Experimental]" msgstr "Forum privé [expérimental]" -#: mod/settings.php:1041 +#: mod/settings.php:1069 msgid "Private forum - approved members only" msgstr "Forum privé - modéré en inscription" -#: mod/settings.php:1053 +#: mod/settings.php:1081 msgid "OpenID:" msgstr "OpenID:" -#: mod/settings.php:1053 +#: mod/settings.php:1081 msgid "(Optional) Allow this OpenID to login to this account." msgstr "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte." -#: mod/settings.php:1063 +#: mod/settings.php:1091 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:1069 +#: mod/settings.php:1097 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:1077 +#: mod/settings.php:1105 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:1081 include/acl_selectors.php:330 +#: mod/settings.php:1109 include/acl_selectors.php:331 msgid "Hide your profile details from unknown viewers?" msgstr "Cacher les détails du profil aux visiteurs inconnus?" -#: mod/settings.php:1081 +#: mod/settings.php:1109 msgid "" "If enabled, posting public messages to Diaspora and other networks isn't " "possible." msgstr "" -#: mod/settings.php:1086 +#: mod/settings.php:1114 msgid "Allow friends to post to your profile page?" msgstr "Autoriser vos amis à publier sur votre profil?" -#: mod/settings.php:1092 +#: mod/settings.php:1120 msgid "Allow friends to tag your posts?" msgstr "Autoriser vos amis à étiqueter vos publications?" -#: mod/settings.php:1098 +#: mod/settings.php:1126 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:1104 +#: mod/settings.php:1132 msgid "Permit unknown people to send you private mail?" msgstr "Autoriser les messages privés d'inconnus?" -#: mod/settings.php:1112 +#: mod/settings.php:1140 msgid "Profile is not published." msgstr "Ce profil n'est pas publié." -#: mod/settings.php:1120 +#: mod/settings.php:1148 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: mod/settings.php:1127 +#: mod/settings.php:1155 msgid "Automatically expire posts after this many days:" msgstr "Les publications expirent automatiquement après (en jours) :" -#: mod/settings.php:1127 +#: mod/settings.php:1155 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:1128 +#: mod/settings.php:1156 msgid "Advanced expiration settings" msgstr "Réglages avancés de l'expiration" -#: mod/settings.php:1129 +#: mod/settings.php:1157 msgid "Advanced Expiration" msgstr "Expiration (avancé)" -#: mod/settings.php:1130 +#: mod/settings.php:1158 msgid "Expire posts:" msgstr "Faire expirer les publications:" -#: mod/settings.php:1131 +#: mod/settings.php:1159 msgid "Expire personal notes:" msgstr "Faire expirer les notes personnelles:" -#: mod/settings.php:1132 +#: mod/settings.php:1160 msgid "Expire starred posts:" msgstr "Faire expirer les publications marqués:" -#: mod/settings.php:1133 +#: mod/settings.php:1161 msgid "Expire photos:" msgstr "Faire expirer les photos:" -#: mod/settings.php:1134 +#: mod/settings.php:1162 msgid "Only expire posts by others:" msgstr "Faire expirer seulement les publications des autres:" -#: mod/settings.php:1160 +#: mod/settings.php:1190 msgid "Account Settings" msgstr "Compte" -#: mod/settings.php:1168 +#: mod/settings.php:1198 msgid "Password Settings" msgstr "Réglages de mot de passe" -#: mod/settings.php:1169 mod/register.php:271 +#: mod/settings.php:1199 mod/register.php:274 msgid "New Password:" msgstr "Nouveau mot de passe:" -#: mod/settings.php:1170 mod/register.php:272 +#: mod/settings.php:1200 mod/register.php:275 msgid "Confirm:" msgstr "Confirmer:" -#: mod/settings.php:1170 +#: mod/settings.php:1200 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:1171 +#: mod/settings.php:1201 msgid "Current Password:" msgstr "Mot de passe actuel:" -#: mod/settings.php:1171 mod/settings.php:1172 +#: mod/settings.php:1201 mod/settings.php:1202 msgid "Your current password to confirm the changes" msgstr "Votre mot de passe actuel pour confirmer les modifications" -#: mod/settings.php:1172 +#: mod/settings.php:1202 msgid "Password:" msgstr "Mot de passe:" -#: mod/settings.php:1176 +#: mod/settings.php:1206 msgid "Basic Settings" msgstr "Réglages basiques" -#: mod/settings.php:1177 include/identity.php:538 +#: mod/settings.php:1207 include/identity.php:551 msgid "Full Name:" msgstr "Nom complet:" -#: mod/settings.php:1178 +#: mod/settings.php:1208 msgid "Email Address:" msgstr "Adresse courriel:" -#: mod/settings.php:1179 +#: mod/settings.php:1209 msgid "Your Timezone:" msgstr "Votre fuseau horaire:" -#: mod/settings.php:1180 +#: mod/settings.php:1210 +msgid "Your Language:" +msgstr "Votre langue :" + +#: mod/settings.php:1210 +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:1211 msgid "Default Post Location:" msgstr "Emplacement de publication par défaut:" -#: mod/settings.php:1181 +#: mod/settings.php:1212 msgid "Use Browser Location:" msgstr "Utiliser la localisation géographique du navigateur:" -#: mod/settings.php:1184 +#: mod/settings.php:1215 msgid "Security and Privacy Settings" msgstr "Réglages de sécurité et vie privée" -#: mod/settings.php:1186 +#: mod/settings.php:1217 msgid "Maximum Friend Requests/Day:" msgstr "Nombre maximal de requêtes d'amitié/jour:" -#: mod/settings.php:1186 mod/settings.php:1216 +#: mod/settings.php:1217 mod/settings.php:1247 msgid "(to prevent spam abuse)" msgstr "(pour limiter l'impact du spam)" -#: mod/settings.php:1187 +#: mod/settings.php:1218 msgid "Default Post Permissions" msgstr "Permissions de publication par défaut" -#: mod/settings.php:1188 +#: mod/settings.php:1219 msgid "(click to open/close)" msgstr "(cliquer pour ouvrir/fermer)" -#: mod/settings.php:1197 mod/photos.php:1166 mod/photos.php:1538 +#: mod/settings.php:1228 mod/photos.php:1191 mod/photos.php:1576 msgid "Show to Groups" msgstr "Montrer aux groupes" -#: mod/settings.php:1198 mod/photos.php:1167 mod/photos.php:1539 +#: mod/settings.php:1229 mod/photos.php:1192 mod/photos.php:1577 msgid "Show to Contacts" msgstr "Montrer aux Contacts" -#: mod/settings.php:1199 +#: mod/settings.php:1230 msgid "Default Private Post" msgstr "Message privé par défaut" -#: mod/settings.php:1200 +#: mod/settings.php:1231 msgid "Default Public Post" msgstr "Message publique par défaut" -#: mod/settings.php:1204 +#: mod/settings.php:1235 msgid "Default Permissions for New Posts" msgstr "Permissions par défaut pour les nouvelles publications" -#: mod/settings.php:1216 +#: mod/settings.php:1247 msgid "Maximum private messages per day from unknown people:" msgstr "Maximum de messages privés d'inconnus par jour:" -#: mod/settings.php:1219 +#: mod/settings.php:1250 msgid "Notification Settings" msgstr "Réglages de notification" -#: mod/settings.php:1220 +#: mod/settings.php:1251 msgid "By default post a status message when:" msgstr "Par défaut, poster un statut quand:" -#: mod/settings.php:1221 +#: mod/settings.php:1252 msgid "accepting a friend request" msgstr "j'accepte un ami" -#: mod/settings.php:1222 +#: mod/settings.php:1253 msgid "joining a forum/community" msgstr "joignant un forum/une communauté" -#: mod/settings.php:1223 +#: mod/settings.php:1254 msgid "making an interesting profile change" msgstr "je fais une modification intéressante de mon profil" -#: mod/settings.php:1224 +#: mod/settings.php:1255 msgid "Send a notification email when:" msgstr "Envoyer un courriel de notification quand:" -#: mod/settings.php:1225 +#: mod/settings.php:1256 msgid "You receive an introduction" msgstr "Vous recevez une introduction" -#: mod/settings.php:1226 +#: mod/settings.php:1257 msgid "Your introductions are confirmed" msgstr "Vos introductions sont confirmées" -#: mod/settings.php:1227 +#: mod/settings.php:1258 msgid "Someone writes on your profile wall" msgstr "Quelqu'un écrit sur votre mur" -#: mod/settings.php:1228 +#: mod/settings.php:1259 msgid "Someone writes a followup comment" msgstr "Quelqu'un vous commente" -#: mod/settings.php:1229 +#: mod/settings.php:1260 msgid "You receive a private message" msgstr "Vous recevez un message privé" -#: mod/settings.php:1230 +#: mod/settings.php:1261 msgid "You receive a friend suggestion" msgstr "Vous avez reçu une suggestion d'ami" -#: mod/settings.php:1231 +#: mod/settings.php:1262 msgid "You are tagged in a post" msgstr "Vous avez été étiquetté dans une publication" -#: mod/settings.php:1232 +#: mod/settings.php:1263 msgid "You are poked/prodded/etc. in a post" msgstr "Vous avez été sollicité dans une publication" -#: mod/settings.php:1234 +#: mod/settings.php:1265 msgid "Activate desktop notifications" -msgstr "" +msgstr "Activer les notifications de bureau" -#: mod/settings.php:1234 +#: mod/settings.php:1265 msgid "Show desktop popup on new notifications" -msgstr "" +msgstr "Afficher dans des pops-ups les nouvelles notifications" -#: mod/settings.php:1236 +#: mod/settings.php:1267 msgid "Text-only notification emails" -msgstr "" +msgstr "Courriels de notification en format texte" -#: mod/settings.php:1238 +#: mod/settings.php:1269 msgid "Send text only notification emails, without the html part" -msgstr "" +msgstr "Envoyer le texte des courriels de notification, sans la composante html" -#: mod/settings.php:1240 +#: mod/settings.php:1271 msgid "Advanced Account/Page Type Settings" msgstr "Paramètres avancés de compte/page" -#: mod/settings.php:1241 +#: mod/settings.php:1272 msgid "Change the behaviour of this account for special situations" msgstr "Modifier le comportement de ce compte dans certaines situations" -#: mod/settings.php:1244 +#: mod/settings.php:1275 msgid "Relocate" msgstr "Relocaliser" -#: mod/settings.php:1245 +#: mod/settings.php:1276 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:1246 +#: mod/settings.php:1277 msgid "Resend relocate message to contacts" msgstr "Renvoyer un message de relocalisation aux contacts." @@ -4486,122 +4859,122 @@ msgstr "Renvoyer un message de relocalisation aux contacts." msgid "This introduction has already been accepted." msgstr "Cette introduction a déjà été acceptée." -#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 +#: mod/dfrn_request.php:120 mod/dfrn_request.php:519 msgid "Profile location is not valid or does not contain profile information." msgstr "L'emplacement du profil est invalide ou ne contient pas de profil valide." -#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 +#: mod/dfrn_request.php:125 mod/dfrn_request.php:524 msgid "Warning: profile location has no identifiable owner name." msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable." -#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 +#: mod/dfrn_request.php:127 mod/dfrn_request.php:526 msgid "Warning: profile location has no profile photo." msgstr "Attention: l'emplacement du profil n'a pas de photo de profil." -#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 +#: mod/dfrn_request.php:130 mod/dfrn_request.php:529 #, php-format msgid "%d required parameter was not found at the given location" msgid_plural "%d required parameters were not found at the given location" msgstr[0] "%d paramètre requis n'a pas été trouvé à l'endroit indiqué" msgstr[1] "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué" -#: mod/dfrn_request.php:172 +#: mod/dfrn_request.php:173 msgid "Introduction complete." msgstr "Phase d'introduction achevée." -#: mod/dfrn_request.php:214 +#: mod/dfrn_request.php:215 msgid "Unrecoverable protocol error." msgstr "Erreur de protocole non-récupérable." -#: mod/dfrn_request.php:242 +#: mod/dfrn_request.php:243 msgid "Profile unavailable." msgstr "Profil indisponible." -#: mod/dfrn_request.php:267 +#: mod/dfrn_request.php:268 #, php-format msgid "%s has received too many connection requests today." msgstr "%s a reçu trop de demandes d'introduction aujourd'hui." -#: mod/dfrn_request.php:268 +#: mod/dfrn_request.php:269 msgid "Spam protection measures have been invoked." msgstr "Des mesures de protection contre le spam ont été déclenchées." -#: mod/dfrn_request.php:269 +#: mod/dfrn_request.php:270 msgid "Friends are advised to please try again in 24 hours." msgstr "Les relations sont encouragées à attendre 24 heures pour recommencer." -#: mod/dfrn_request.php:331 +#: mod/dfrn_request.php:332 msgid "Invalid locator" msgstr "Localisateur invalide" -#: mod/dfrn_request.php:340 +#: mod/dfrn_request.php:341 msgid "Invalid email address." msgstr "Adresse courriel invalide." -#: mod/dfrn_request.php:367 +#: mod/dfrn_request.php:368 msgid "This account has not been configured for email. Request failed." msgstr "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée." -#: mod/dfrn_request.php:463 +#: mod/dfrn_request.php:464 msgid "Unable to resolve your name at the provided location." msgstr "Impossible de résoudre votre nom à l'emplacement fourni." -#: mod/dfrn_request.php:476 +#: mod/dfrn_request.php:477 msgid "You have already introduced yourself here." msgstr "Vous vous êtes déjà présenté ici." -#: mod/dfrn_request.php:480 +#: mod/dfrn_request.php:481 #, 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 +#: mod/dfrn_request.php:502 msgid "Invalid profile URL." msgstr "URL de profil invalide." -#: mod/dfrn_request.php:507 include/follow.php:70 +#: mod/dfrn_request.php:508 include/follow.php:72 msgid "Disallowed profile URL." msgstr "URL de profil interdite." -#: mod/dfrn_request.php:597 +#: mod/dfrn_request.php:599 msgid "Your introduction has been sent." msgstr "Votre introduction a été envoyée." -#: mod/dfrn_request.php:650 +#: mod/dfrn_request.php:652 msgid "Please login to confirm introduction." msgstr "Connectez-vous pour confirmer l'introduction." -#: mod/dfrn_request.php:660 +#: mod/dfrn_request.php:662 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:674 mod/dfrn_request.php:691 +#: mod/dfrn_request.php:676 mod/dfrn_request.php:693 msgid "Confirm" msgstr "Confirmer" -#: mod/dfrn_request.php:686 +#: mod/dfrn_request.php:688 msgid "Hide this contact" msgstr "Cacher ce contact" -#: mod/dfrn_request.php:689 +#: mod/dfrn_request.php:691 #, php-format msgid "Welcome home %s." msgstr "Bienvenue chez vous, %s." -#: mod/dfrn_request.php:690 +#: mod/dfrn_request.php:692 #, 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:819 +#: mod/dfrn_request.php:821 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:839 +#: mod/dfrn_request.php:842 #, php-format msgid "" "If you are not yet a member of the free social web, ." msgstr "" -#: mod/dfrn_request.php:842 +#: mod/dfrn_request.php:847 msgid "Friend/Connection Request" msgstr "Requête de relation/amitié" -#: mod/dfrn_request.php:843 +#: mod/dfrn_request.php:848 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:851 include/contact_selectors.php:76 +#: mod/dfrn_request.php:856 include/contact_selectors.php:76 msgid "Friendica" msgstr "Friendica" -#: mod/dfrn_request.php:852 +#: mod/dfrn_request.php:857 msgid "StatusNet/Federated Social Web" msgstr "StatusNet/Federated Social Web" -#: mod/dfrn_request.php:854 +#: mod/dfrn_request.php:859 #, php-format msgid "" " - please do not use this form. Instead, enter %s into your Diaspora search" @@ -4646,80 +5019,84 @@ msgid "" "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:107 +#: mod/register.php:104 +msgid "Registration successful." +msgstr "" + +#: mod/register.php:110 msgid "Your registration can not be processed." msgstr "Votre inscription ne peut être traitée." -#: mod/register.php:150 +#: 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/register.php:188 mod/uimport.php:50 +#: 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 "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain." -#: mod/register.php:216 +#: 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/register.php:217 +#: 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/register.php:218 +#: mod/register.php:221 msgid "Your OpenID (optional): " msgstr "Votre OpenID (facultatif): " -#: mod/register.php:232 +#: mod/register.php:235 msgid "Include your profile in member directory?" msgstr "Inclure votre profil dans l'annuaire des membres?" -#: mod/register.php:256 +#: 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:257 +#: mod/register.php:260 msgid "Your invitation ID: " msgstr "Votre ID d'invitation: " -#: mod/register.php:268 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Votre nom complet (p.ex. Michel Dupont): " +#: mod/register.php:271 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "" -#: mod/register.php:269 +#: mod/register.php:272 msgid "Your Email Address: " msgstr "Votre adresse courriel: " -#: mod/register.php:271 +#: mod/register.php:274 msgid "Leave empty for an auto generated password." msgstr "" -#: mod/register.php:273 +#: 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:274 +#: mod/register.php:277 msgid "Choose a nickname: " msgstr "Choisir un pseudo: " -#: mod/register.php:277 boot.php:1248 include/nav.php:109 +#: mod/register.php:280 boot.php:1256 include/nav.php:108 msgid "Register" msgstr "S'inscrire" -#: mod/register.php:283 mod/uimport.php:64 +#: mod/register.php:286 mod/uimport.php:64 msgid "Import" msgstr "Importer" -#: mod/register.php:284 +#: mod/register.php:287 msgid "Import your profile to this friendica instance" msgstr "Importer votre profile dans cette instance de friendica" @@ -4727,49 +5104,66 @@ msgstr "Importer votre profile dans cette instance de friendica" msgid "System down for maintenance" msgstr "Système indisponible pour cause de maintenance" -#: mod/search.php:100 include/text.php:996 include/nav.php:119 +#: mod/search.php:100 +msgid "Only logged in users are permitted to perform a search." +msgstr "" + +#: mod/search.php:115 +msgid "Too Many Requests" +msgstr "" + +#: mod/search.php:116 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "" + +#: mod/search.php:126 include/text.php:1003 include/nav.php:118 msgid "Search" msgstr "Recherche" -#: mod/search.php:198 +#: mod/search.php:224 #, php-format msgid "Items tagged with: %s" msgstr "" -#: mod/search.php:200 +#: mod/search.php:226 #, php-format msgid "Search results for: %s" msgstr "" -#: mod/directory.php:53 view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Annuaire global" - -#: mod/directory.php:61 -msgid "Find on this site" -msgstr "Trouver sur ce site" - -#: mod/directory.php:64 -msgid "Site Directory" -msgstr "Annuaire local" - -#: mod/directory.php:129 mod/profiles.php:747 +#: mod/directory.php:116 mod/profiles.php:760 msgid "Age: " msgstr "Age : " -#: mod/directory.php:132 +#: mod/directory.php:119 msgid "Gender: " msgstr "Genre : " -#: mod/directory.php:156 include/identity.php:273 include/identity.php:560 +#: mod/directory.php:143 include/identity.php:283 include/identity.php:573 msgid "Status:" msgstr "Statut:" -#: mod/directory.php:158 include/identity.php:275 include/identity.php:571 +#: mod/directory.php:145 include/identity.php:285 include/identity.php:584 msgid "Homepage:" msgstr "Page personnelle:" -#: mod/directory.php:205 +#: mod/directory.php:195 view/theme/diabook/theme.php:525 +#: view/theme/vier/theme.php:205 +msgid "Global Directory" +msgstr "Annuaire global" + +#: mod/directory.php:197 +msgid "Find on this site" +msgstr "Trouver sur ce site" + +#: mod/directory.php:199 +msgid "Finding:" +msgstr "" + +#: mod/directory.php:201 +msgid "Site Directory" +msgstr "Annuaire local" + +#: mod/directory.php:208 msgid "No entries (some entries may be hidden)." msgstr "Aucune entrée (certaines peuvent être cachées)." @@ -4777,7 +5171,7 @@ msgstr "Aucune entrée (certaines peuvent être cachées)." msgid "No potential page delegates located." msgstr "Pas de délégataire potentiel." -#: mod/delegate.php:130 include/nav.php:179 +#: mod/delegate.php:130 include/nav.php:180 msgid "Delegate Page Management" msgstr "Déléguer la gestion de la page" @@ -4808,14 +5202,14 @@ msgstr "Ajouter" msgid "No entries." msgstr "Aucune entrée." -#: mod/common.php:45 -msgid "Common Friends" -msgstr "Amis communs" - -#: mod/common.php:82 +#: mod/common.php:85 msgid "No contacts in common." msgstr "Pas de contacts en commun." +#: mod/common.php:133 +msgid "Common Friends" +msgstr "Amis communs" + #: mod/uexport.php:77 msgid "Export account" msgstr "Exporter le compte" @@ -4837,7 +5231,7 @@ msgid "" "of your account (photos are not exported)" msgstr "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)." -#: mod/mood.php:62 include/conversation.php:226 +#: mod/mood.php:62 include/conversation.php:239 #, php-format msgid "%1$s is currently %2$s" msgstr "%1$s est d'humeur %2$s" @@ -4854,21 +5248,21 @@ msgstr "Spécifiez votre humeur du moment, et informez vos amis" msgid "Do you really want to delete this suggestion?" msgstr "Voulez-vous vraiment supprimer cette suggestion ?" -#: mod/suggest.php:69 include/contact_widgets.php:35 -#: view/theme/diabook/theme.php:527 -msgid "Friend Suggestions" -msgstr "Suggestions d'amitiés/contacts" - -#: mod/suggest.php:76 +#: 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:94 +#: mod/suggest.php:83 mod/suggest.php:101 msgid "Ignore/Hide" msgstr "Ignorer/cacher" +#: 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 "Suggestions d'amitiés/contacts" + #: mod/profiles.php:37 msgid "Profile deleted." msgstr "Profil supprimé." @@ -4897,11 +5291,11 @@ msgstr "Statut marital" msgid "Romantic Partner" msgstr "Partenaire / conjoint" -#: mod/profiles.php:344 +#: mod/profiles.php:344 mod/photos.php:1639 include/conversation.php:508 msgid "Likes" msgstr "Derniers \"J'aime\"" -#: mod/profiles.php:348 +#: mod/profiles.php:348 mod/photos.php:1639 include/conversation.php:508 msgid "Dislikes" msgstr "Derniers \"Je n'aime pas\"" @@ -4929,7 +5323,7 @@ msgstr "Préférence sexuelle" msgid "Homepage" msgstr "Site internet" -#: mod/profiles.php:375 mod/profiles.php:695 +#: mod/profiles.php:375 mod/profiles.php:708 msgid "Interests" msgstr "Centres d'intérêt" @@ -4937,7 +5331,7 @@ msgstr "Centres d'intérêt" msgid "Address" msgstr "Adresse" -#: mod/profiles.php:386 mod/profiles.php:691 +#: mod/profiles.php:386 mod/profiles.php:704 msgid "Location" msgstr "Localisation" @@ -4976,221 +5370,225 @@ msgstr "Cacher mes contacts et amis :" 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:682 +#: mod/profiles.php:684 +msgid "Show more profile fields:" +msgstr "" + +#: mod/profiles.php:695 msgid "Edit Profile Details" msgstr "Éditer les détails du profil" -#: mod/profiles.php:684 +#: mod/profiles.php:697 msgid "Change Profile Photo" msgstr "Changer la photo du profil" -#: mod/profiles.php:685 +#: mod/profiles.php:698 msgid "View this profile" msgstr "Voir ce profil" -#: mod/profiles.php:686 +#: mod/profiles.php:699 msgid "Create a new profile using these settings" msgstr "Créer un nouveau profil en utilisant ces réglages" -#: mod/profiles.php:687 +#: mod/profiles.php:700 msgid "Clone this profile" msgstr "Cloner ce profil" -#: mod/profiles.php:688 +#: mod/profiles.php:701 msgid "Delete this profile" msgstr "Supprimer ce profil" -#: mod/profiles.php:689 +#: mod/profiles.php:702 msgid "Basic information" msgstr "Information de base" -#: mod/profiles.php:690 +#: mod/profiles.php:703 msgid "Profile picture" msgstr "Image de profil" -#: mod/profiles.php:692 +#: mod/profiles.php:705 msgid "Preferences" msgstr "Préférences" -#: mod/profiles.php:693 +#: mod/profiles.php:706 msgid "Status information" msgstr "Information sur le statut" -#: mod/profiles.php:694 +#: mod/profiles.php:707 msgid "Additional information" msgstr "Information additionnelle" -#: mod/profiles.php:697 +#: mod/profiles.php:710 msgid "Profile Name:" msgstr "Nom du profil :" -#: mod/profiles.php:698 +#: mod/profiles.php:711 msgid "Your Full Name:" msgstr "Votre nom complet :" -#: mod/profiles.php:699 +#: mod/profiles.php:712 msgid "Title/Description:" msgstr "Titre / Description :" -#: mod/profiles.php:700 +#: mod/profiles.php:713 msgid "Your Gender:" msgstr "Votre genre :" -#: mod/profiles.php:701 +#: mod/profiles.php:714 msgid "Birthday :" msgstr "" -#: mod/profiles.php:702 +#: mod/profiles.php:715 msgid "Street Address:" msgstr "Adresse postale :" -#: mod/profiles.php:703 +#: mod/profiles.php:716 msgid "Locality/City:" msgstr "Ville / Localité :" -#: mod/profiles.php:704 +#: mod/profiles.php:717 msgid "Postal/Zip Code:" msgstr "Code postal :" -#: mod/profiles.php:705 +#: mod/profiles.php:718 msgid "Country:" msgstr "Pays :" -#: mod/profiles.php:706 +#: mod/profiles.php:719 msgid "Region/State:" msgstr "Région / État :" -#: mod/profiles.php:707 +#: mod/profiles.php:720 msgid " Marital Status:" msgstr " Statut marital :" -#: mod/profiles.php:708 +#: mod/profiles.php:721 msgid "Who: (if applicable)" msgstr "Qui : (si pertinent)" -#: mod/profiles.php:709 +#: mod/profiles.php:722 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" -#: mod/profiles.php:710 +#: mod/profiles.php:723 msgid "Since [date]:" msgstr "Depuis [date] :" -#: mod/profiles.php:711 include/identity.php:569 +#: mod/profiles.php:724 include/identity.php:582 msgid "Sexual Preference:" msgstr "Préférence sexuelle:" -#: mod/profiles.php:712 +#: mod/profiles.php:725 msgid "Homepage URL:" msgstr "Page personnelle :" -#: mod/profiles.php:713 include/identity.php:573 +#: mod/profiles.php:726 include/identity.php:586 msgid "Hometown:" msgstr " Ville d'origine:" -#: mod/profiles.php:714 include/identity.php:577 +#: mod/profiles.php:727 include/identity.php:590 msgid "Political Views:" msgstr "Opinions politiques:" -#: mod/profiles.php:715 +#: mod/profiles.php:728 msgid "Religious Views:" msgstr "Opinions religieuses :" -#: mod/profiles.php:716 +#: mod/profiles.php:729 msgid "Public Keywords:" msgstr "Mots-clés publics :" -#: mod/profiles.php:717 +#: mod/profiles.php:730 msgid "Private Keywords:" msgstr "Mots-clés privés :" -#: mod/profiles.php:718 include/identity.php:585 +#: mod/profiles.php:731 include/identity.php:598 msgid "Likes:" msgstr "J'aime :" -#: mod/profiles.php:719 include/identity.php:587 +#: mod/profiles.php:732 include/identity.php:600 msgid "Dislikes:" msgstr "Je n'aime pas :" -#: mod/profiles.php:720 +#: mod/profiles.php:733 msgid "Example: fishing photography software" msgstr "Exemple : football dessin programmation" -#: mod/profiles.php:721 +#: mod/profiles.php:734 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:722 +#: mod/profiles.php:735 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:723 +#: mod/profiles.php:736 msgid "Tell us about yourself..." msgstr "Parlez-nous de vous..." -#: mod/profiles.php:724 +#: mod/profiles.php:737 msgid "Hobbies/Interests" msgstr "Passe-temps / Centres d'intérêt" -#: mod/profiles.php:725 +#: mod/profiles.php:738 msgid "Contact information and Social Networks" msgstr "Coordonnées / Réseaux sociaux" -#: mod/profiles.php:726 +#: mod/profiles.php:739 msgid "Musical interests" msgstr "Goûts musicaux" -#: mod/profiles.php:727 +#: mod/profiles.php:740 msgid "Books, literature" msgstr "Lectures" -#: mod/profiles.php:728 +#: mod/profiles.php:741 msgid "Television" msgstr "Télévision" -#: mod/profiles.php:729 +#: mod/profiles.php:742 msgid "Film/dance/culture/entertainment" msgstr "Cinéma / Danse / Culture / Divertissement" -#: mod/profiles.php:730 +#: mod/profiles.php:743 msgid "Love/romance" msgstr "Amour / Romance" -#: mod/profiles.php:731 +#: mod/profiles.php:744 msgid "Work/employment" msgstr "Activité professionnelle / Occupation" -#: mod/profiles.php:732 +#: mod/profiles.php:745 msgid "School/education" msgstr "Études / Formation" -#: mod/profiles.php:737 +#: mod/profiles.php:750 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:800 +#: mod/profiles.php:813 msgid "Edit/Manage Profiles" msgstr "Editer / gérer les profils" -#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257 +#: mod/profiles.php:814 include/identity.php:241 include/identity.php:267 msgid "Change profile photo" msgstr "Changer de photo de profil" -#: mod/profiles.php:802 include/identity.php:232 +#: mod/profiles.php:815 include/identity.php:242 msgid "Create New Profile" msgstr "Créer un nouveau profil" -#: mod/profiles.php:813 include/identity.php:242 +#: mod/profiles.php:826 include/identity.php:252 msgid "Profile Image" msgstr "Image du profil" -#: mod/profiles.php:815 include/identity.php:245 +#: mod/profiles.php:828 include/identity.php:255 msgid "visible to everybody" msgstr "visible par tous" -#: mod/profiles.php:816 include/identity.php:246 +#: mod/profiles.php:829 include/identity.php:256 msgid "Edit visibility" msgstr "Changer la visibilité" @@ -5202,75 +5600,75 @@ msgstr "Élément introuvable" msgid "Edit post" msgstr "Éditer la publication" -#: mod/editpost.php:111 include/conversation.php:1057 +#: mod/editpost.php:110 include/conversation.php:1185 msgid "upload photo" msgstr "envoi image" -#: mod/editpost.php:112 include/conversation.php:1058 +#: mod/editpost.php:111 include/conversation.php:1186 msgid "Attach file" msgstr "Joindre fichier" -#: mod/editpost.php:113 include/conversation.php:1059 +#: mod/editpost.php:112 include/conversation.php:1187 msgid "attach file" msgstr "ajout fichier" -#: mod/editpost.php:115 include/conversation.php:1061 +#: mod/editpost.php:114 include/conversation.php:1189 msgid "web link" msgstr "lien web" -#: mod/editpost.php:116 include/conversation.php:1062 +#: mod/editpost.php:115 include/conversation.php:1190 msgid "Insert video link" msgstr "Insérer un lien video" -#: mod/editpost.php:117 include/conversation.php:1063 +#: mod/editpost.php:116 include/conversation.php:1191 msgid "video link" msgstr "lien vidéo" -#: mod/editpost.php:118 include/conversation.php:1064 +#: mod/editpost.php:117 include/conversation.php:1192 msgid "Insert audio link" msgstr "Insérer un lien audio" -#: mod/editpost.php:119 include/conversation.php:1065 +#: mod/editpost.php:118 include/conversation.php:1193 msgid "audio link" msgstr "lien audio" -#: mod/editpost.php:120 include/conversation.php:1066 +#: mod/editpost.php:119 include/conversation.php:1194 msgid "Set your location" msgstr "Définir votre localisation" -#: mod/editpost.php:121 include/conversation.php:1067 +#: mod/editpost.php:120 include/conversation.php:1195 msgid "set location" msgstr "spéc. localisation" -#: mod/editpost.php:122 include/conversation.php:1068 +#: mod/editpost.php:121 include/conversation.php:1196 msgid "Clear browser location" msgstr "Effacer la localisation du navigateur" -#: mod/editpost.php:123 include/conversation.php:1069 +#: mod/editpost.php:122 include/conversation.php:1197 msgid "clear location" msgstr "supp. localisation" -#: mod/editpost.php:125 include/conversation.php:1075 +#: mod/editpost.php:124 include/conversation.php:1203 msgid "Permission settings" msgstr "Réglages des permissions" -#: mod/editpost.php:133 include/acl_selectors.php:343 +#: mod/editpost.php:132 include/acl_selectors.php:344 msgid "CC: email addresses" msgstr "CC: adresses de courriel" -#: mod/editpost.php:134 include/conversation.php:1084 +#: mod/editpost.php:133 include/conversation.php:1212 msgid "Public post" msgstr "Publication publique" -#: mod/editpost.php:137 include/conversation.php:1071 +#: mod/editpost.php:136 include/conversation.php:1199 msgid "Set title" msgstr "Définir un titre" -#: mod/editpost.php:139 include/conversation.php:1073 +#: mod/editpost.php:138 include/conversation.php:1201 msgid "Categories (comma-separated list)" msgstr "Catégories (séparées par des virgules)" -#: mod/editpost.php:140 include/acl_selectors.php:344 +#: mod/editpost.php:139 include/acl_selectors.php:345 msgid "Example: bob@example.com, mary@example.com" msgstr "Exemple: bob@exemple.com, mary@exemple.com" @@ -5336,7 +5734,7 @@ msgstr "Informations de confidentialité indisponibles." msgid "Visible to:" msgstr "Visible par:" -#: mod/notes.php:44 include/identity.php:675 +#: mod/notes.php:46 include/identity.php:694 msgid "Personal Notes" msgstr "Notes personnelles" @@ -5373,26 +5771,34 @@ msgstr "Temps local converti : %s" msgid "Please select your timezone:" msgstr "Sélectionner votre zone :" -#: mod/poke.php:192 +#: mod/poke.php:191 msgid "Poke/Prod" msgstr "Solliciter" -#: mod/poke.php:193 +#: mod/poke.php:192 msgid "poke, prod or do other things to somebody" msgstr "solliciter (poke/...) quelqu'un" -#: mod/poke.php:194 +#: mod/poke.php:193 msgid "Recipient" msgstr "Destinataire" -#: mod/poke.php:195 +#: mod/poke.php:194 msgid "Choose what you wish to do to recipient" msgstr "Choisissez ce que vous voulez faire au destinataire" -#: mod/poke.php:198 +#: mod/poke.php:197 msgid "Make this post private" msgstr "Rendez ce message privé" +#: mod/repair_ostatus.php:14 +msgid "Resubsribing to OStatus contacts" +msgstr "" + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "" + #: mod/invite.php:27 msgid "Total invitation limit exceeded." msgstr "La limite d'invitation totale est éxédée." @@ -5485,187 +5891,200 @@ msgid "" "important, please visit http://friendica.com" msgstr "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com" -#: mod/photos.php: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 "Photos du contact" - -#: mod/photos.php:84 include/identity.php:651 +#: mod/photos.php:91 include/identity.php:669 msgid "Photo Albums" msgstr "Albums photo" -#: mod/photos.php:85 mod/photos.php:1836 +#: mod/photos.php:92 mod/photos.php:1891 msgid "Recent Photos" msgstr "Photos récentes" -#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 +#: mod/photos.php:95 mod/photos.php:1312 mod/photos.php:1893 msgid "Upload New Photos" msgstr "Téléverser de nouvelles photos" -#: mod/photos.php:166 +#: mod/photos.php:173 msgid "Contact information unavailable" msgstr "Informations de contact indisponibles" -#: mod/photos.php:187 +#: mod/photos.php:194 msgid "Album not found." msgstr "Album introuvable." -#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 +#: mod/photos.php:224 mod/photos.php:236 mod/photos.php:1254 msgid "Delete Album" msgstr "Effacer l'album" -#: mod/photos.php:220 +#: mod/photos.php:234 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:300 mod/photos.php:311 mod/photos.php:1534 +#: mod/photos.php:314 mod/photos.php:325 mod/photos.php:1572 msgid "Delete Photo" msgstr "Effacer la photo" -#: mod/photos.php:309 +#: mod/photos.php:323 msgid "Do you really want to delete this photo?" msgstr "Voulez-vous vraiment supprimer cette photo ?" -#: mod/photos.php:684 +#: mod/photos.php:698 #, 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:684 +#: mod/photos.php:698 msgid "a photo" msgstr "une photo" -#: mod/photos.php:797 +#: mod/photos.php:811 msgid "Image file is empty." msgstr "Fichier image vide." -#: mod/photos.php:952 +#: mod/photos.php:978 msgid "No photos selected" msgstr "Aucune photo sélectionnée" -#: mod/photos.php:1114 +#: mod/photos.php:1139 #, 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:1149 +#: mod/photos.php:1174 msgid "Upload Photos" msgstr "Téléverser des photos" -#: mod/photos.php:1153 mod/photos.php:1219 +#: mod/photos.php:1178 mod/photos.php:1249 msgid "New album name: " msgstr "Nom du nouvel album: " -#: mod/photos.php:1154 +#: mod/photos.php:1179 msgid "or existing album name: " msgstr "ou nom d'un album existant: " -#: mod/photos.php:1155 +#: mod/photos.php:1180 msgid "Do not show a status post for this upload" msgstr "Ne pas publier de notice de statut pour cet envoi" -#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 +#: mod/photos.php:1182 mod/photos.php:1567 include/acl_selectors.php:347 msgid "Permissions" msgstr "Permissions" -#: mod/photos.php:1168 +#: mod/photos.php:1193 msgid "Private Photo" msgstr "Photo privée" -#: mod/photos.php:1169 +#: mod/photos.php:1194 msgid "Public Photo" msgstr "Photo publique" -#: mod/photos.php:1232 +#: mod/photos.php:1262 msgid "Edit Album" msgstr "Éditer l'album" -#: mod/photos.php:1238 +#: mod/photos.php:1268 msgid "Show Newest First" msgstr "Plus récent d'abord" -#: mod/photos.php:1240 +#: mod/photos.php:1270 msgid "Show Oldest First" msgstr "Plus ancien d'abord" -#: mod/photos.php:1268 mod/photos.php:1821 +#: mod/photos.php:1298 mod/photos.php:1876 msgid "View Photo" msgstr "Voir la photo" -#: mod/photos.php:1314 +#: mod/photos.php:1345 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:1316 +#: mod/photos.php:1347 msgid "Photo not available" msgstr "Photo indisponible" -#: mod/photos.php:1372 +#: mod/photos.php:1403 msgid "View photo" msgstr "Voir photo" -#: mod/photos.php:1372 +#: mod/photos.php:1403 msgid "Edit photo" msgstr "Éditer la photo" -#: mod/photos.php:1373 +#: mod/photos.php:1404 msgid "Use as profile photo" msgstr "Utiliser comme photo de profil" -#: mod/photos.php:1398 +#: mod/photos.php:1429 msgid "View Full Size" msgstr "Voir en taille réelle" -#: mod/photos.php:1477 +#: mod/photos.php:1515 msgid "Tags: " msgstr "Étiquettes:" -#: mod/photos.php:1480 +#: mod/photos.php:1518 msgid "[Remove any tag]" msgstr "[Retirer toutes les étiquettes]" -#: mod/photos.php:1520 +#: mod/photos.php:1558 msgid "New album name" msgstr "Nom du nouvel album" -#: mod/photos.php:1521 +#: mod/photos.php:1559 msgid "Caption" msgstr "Titre" -#: mod/photos.php:1522 +#: mod/photos.php:1560 msgid "Add a Tag" msgstr "Ajouter une étiquette" -#: mod/photos.php:1522 +#: mod/photos.php:1560 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" -#: mod/photos.php:1523 +#: mod/photos.php:1561 msgid "Do not rotate" msgstr "" -#: mod/photos.php:1524 +#: mod/photos.php:1562 msgid "Rotate CW (right)" msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" -#: mod/photos.php:1525 +#: mod/photos.php:1563 msgid "Rotate CCW (left)" msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" -#: mod/photos.php:1540 +#: mod/photos.php:1578 msgid "Private photo" msgstr "Photo privée" -#: mod/photos.php:1541 +#: mod/photos.php:1579 msgid "Public photo" msgstr "Photo publique" -#: mod/photos.php:1563 include/conversation.php:1055 +#: mod/photos.php:1601 include/conversation.php:1183 msgid "Share" msgstr "Partager" +#: mod/photos.php:1640 include/conversation.php:509 +#: include/conversation.php:1414 +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "" +msgstr[1] "" + +#: mod/photos.php:1640 include/conversation.php:509 +msgid "Not attending" +msgstr "" + +#: mod/photos.php:1640 include/conversation.php:509 +msgid "Might attend" +msgstr "" + +#: mod/photos.php:1805 +msgid "Map" +msgstr "" + #: mod/p.php:9 msgid "Not Extended" msgstr "" @@ -5701,8 +6120,8 @@ msgstr "Vous devez exporter votre compte à partir de l'ancien serveur et le té #: mod/uimport.php:69 msgid "" "This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora" +"network (GNU Social/Statusnet) or from Diaspora" +msgstr "" #: mod/uimport.php:70 msgid "Account file" @@ -5722,60 +6141,60 @@ msgstr "Elément non disponible." msgid "Item was not found." msgstr "Element introuvable." -#: boot.php:763 +#: boot.php:771 msgid "Delete this item?" msgstr "Effacer cet élément?" -#: boot.php:766 +#: boot.php:774 msgid "show fewer" msgstr "montrer moins" -#: boot.php:1140 +#: boot.php:1148 #, php-format msgid "Update %s failed. See error logs." msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur." -#: boot.php:1247 +#: boot.php:1255 msgid "Create a New Account" msgstr "Créer un nouveau compte" -#: boot.php:1272 include/nav.php:73 +#: boot.php:1280 include/nav.php:72 msgid "Logout" msgstr "Se déconnecter" -#: boot.php:1275 +#: boot.php:1283 msgid "Nickname or Email address: " msgstr "Pseudo ou courriel: " -#: boot.php:1276 +#: boot.php:1284 msgid "Password: " msgstr "Mot de passe: " -#: boot.php:1277 +#: boot.php:1285 msgid "Remember me" msgstr "Se souvenir de moi" -#: boot.php:1280 +#: boot.php:1288 msgid "Or login using OpenID: " msgstr "Ou connectez-vous via OpenID: " -#: boot.php:1286 +#: boot.php:1294 msgid "Forgot your password?" msgstr "Mot de passe oublié?" -#: boot.php:1289 +#: boot.php:1297 msgid "Website Terms of Service" msgstr "Conditions d'utilisation du site internet" -#: boot.php:1290 +#: boot.php:1298 msgid "terms of service" msgstr "conditions d'utilisation" -#: boot.php:1292 +#: boot.php:1300 msgid "Website Privacy Policy" msgstr "Politique de confidentialité du site internet" -#: boot.php:1293 +#: boot.php:1301 msgid "privacy policy" msgstr "politique de confidentialité" @@ -5783,31 +6202,39 @@ msgstr "politique de confidentialité" msgid "This entry was edited" msgstr "Cette entrée à été édité" -#: object/Item.php:209 +#: 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 "ignorer le fil" -#: object/Item.php:210 +#: object/Item.php:231 msgid "unignore thread" msgstr "Ne plus ignorer le fil" -#: object/Item.php:211 +#: object/Item.php:232 msgid "toggle ignore status" msgstr "Ignorer le statut" -#: object/Item.php:214 -msgid "ignored" -msgstr "ignoré" - -#: object/Item.php:318 include/conversation.php:665 +#: object/Item.php:345 include/conversation.php:687 msgid "Categories:" msgstr "Catégories:" -#: object/Item.php:319 include/conversation.php:666 +#: object/Item.php:346 include/conversation.php:688 msgid "Filed under:" msgstr "Rangé sous:" -#: object/Item.php:331 +#: object/Item.php:360 msgid "via" msgstr "via" @@ -5877,15 +6304,12 @@ 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 -msgid "Connect/Follow" -msgstr "Connecter/Suivre" - #: include/contact_widgets.php:33 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Exemples: Robert Morgenstein, Pêche" #: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 +#: view/theme/vier/theme.php:206 msgid "Similar Interests" msgstr "Intérêts similaires" @@ -5894,236 +6318,263 @@ msgid "Random Profile" msgstr "Profil au hasard" #: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 +#: view/theme/vier/theme.php:208 msgid "Invite Friends" msgstr "Inviter des amis" -#: include/contact_widgets.php:71 +#: include/contact_widgets.php:108 msgid "Networks" msgstr "Réseaux" -#: include/contact_widgets.php:74 +#: include/contact_widgets.php:111 msgid "All Networks" msgstr "Tous réseaux" -#: include/contact_widgets.php:104 include/features.php:60 +#: include/contact_widgets.php:141 include/features.php:97 msgid "Saved Folders" msgstr "Dossiers sauvegardés" -#: include/contact_widgets.php:107 include/contact_widgets.php:139 +#: include/contact_widgets.php:144 include/contact_widgets.php:176 msgid "Everything" msgstr "Tout" -#: include/contact_widgets.php:136 +#: include/contact_widgets.php:173 msgid "Categories" msgstr "Catégories" -#: include/features.php:23 +#: include/features.php:58 msgid "General Features" msgstr "Fonctions générales" -#: include/features.php:25 +#: include/features.php:60 msgid "Multiple Profiles" msgstr "Profils multiples" -#: include/features.php:25 +#: include/features.php:60 msgid "Ability to create multiple profiles" msgstr "Possibilité de créer plusieurs profils" -#: include/features.php:30 +#: include/features.php:61 +msgid "Photo Location" +msgstr "" + +#: include/features.php:61 +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:66 msgid "Post Composition Features" msgstr "Caractéristiques de composition de publication" -#: include/features.php:31 +#: include/features.php:67 msgid "Richtext Editor" msgstr "Éditeur de texte enrichi" -#: include/features.php:31 +#: include/features.php:67 msgid "Enable richtext editor" msgstr "Activer l'éditeur de texte enrichi" -#: include/features.php:32 +#: include/features.php:68 msgid "Post Preview" msgstr "Aperçu de la publication" -#: include/features.php:32 +#: include/features.php:68 msgid "Allow previewing posts and comments before publishing them" msgstr "Permet la prévisualisation des publications et commentaires avant de les publier" -#: include/features.php:33 +#: include/features.php:69 msgid "Auto-mention Forums" msgstr "" -#: include/features.php:33 +#: include/features.php:69 msgid "" "Add/remove mention when a fourm page is selected/deselected in ACL window." msgstr "" -#: include/features.php:38 +#: include/features.php:74 msgid "Network Sidebar Widgets" msgstr "Widgets réseau pour barre latérale" -#: include/features.php:39 +#: include/features.php:75 msgid "Search by Date" msgstr "Rechercher par Date" -#: include/features.php:39 +#: include/features.php:75 msgid "Ability to select posts by date ranges" msgstr "Capacité de sélectionner les publications par intervalles de dates" -#: include/features.php:40 +#: include/features.php:76 include/features.php:106 +msgid "List Forums" +msgstr "" + +#: include/features.php:76 +msgid "Enable widget to display the forums your are connected with" +msgstr "" + +#: include/features.php:77 msgid "Group Filter" msgstr "Filtre de groupe" -#: include/features.php:40 +#: include/features.php:77 msgid "Enable widget to display Network posts only from selected group" msgstr "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné" -#: include/features.php:41 +#: include/features.php:78 msgid "Network Filter" msgstr "Filtre de réseau" -#: include/features.php:41 +#: include/features.php:78 msgid "Enable widget to display Network posts only from selected network" msgstr "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné" -#: include/features.php:42 +#: include/features.php:79 msgid "Save search terms for re-use" msgstr "Sauvegarder la recherche pour une utilisation ultérieure" -#: include/features.php:47 +#: include/features.php:84 msgid "Network Tabs" msgstr "Onglets Réseau" -#: include/features.php:48 +#: include/features.php:85 msgid "Network Personal Tab" msgstr "Onglet Réseau Personnel" -#: include/features.php:48 +#: include/features.php:85 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit" -#: include/features.php:49 +#: include/features.php:86 msgid "Network New Tab" msgstr "Nouvel onglet réseaux" -#: include/features.php:49 +#: include/features.php:86 msgid "Enable tab to display only new Network posts (from the last 12 hours)" msgstr "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)" -#: include/features.php:50 +#: include/features.php:87 msgid "Network Shared Links Tab" msgstr "Onglet réseau partagé" -#: include/features.php:50 +#: include/features.php:87 msgid "Enable tab to display only Network posts with links in them" msgstr "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens" -#: include/features.php:55 +#: include/features.php:92 msgid "Post/Comment Tools" msgstr "outils de publication/commentaire" -#: include/features.php:56 +#: include/features.php:93 msgid "Multiple Deletion" msgstr "Suppression multiple" -#: include/features.php:56 +#: include/features.php:93 msgid "Select and delete multiple posts/comments at once" msgstr "Sélectionner et supprimer plusieurs publications/commentaires à la fois" -#: include/features.php:57 +#: include/features.php:94 msgid "Edit Sent Posts" msgstr "Éditer les publications envoyées" -#: include/features.php:57 +#: include/features.php:94 msgid "Edit and correct posts and comments after sending" msgstr "Éditer et corriger les publications et commentaires après l'envoi" -#: include/features.php:58 +#: include/features.php:95 msgid "Tagging" msgstr "Étiquettage" -#: include/features.php:58 +#: include/features.php:95 msgid "Ability to tag existing posts" msgstr "Possibilité d'étiqueter les publications existantes" -#: include/features.php:59 +#: include/features.php:96 msgid "Post Categories" msgstr "Catégories des publications" -#: include/features.php:59 +#: include/features.php:96 msgid "Add categories to your posts" msgstr "Ajouter des catégories à vos publications" -#: include/features.php:60 +#: include/features.php:97 msgid "Ability to file posts under folders" msgstr "Possibilité d'afficher les publications sous les répertoires" -#: include/features.php:61 +#: include/features.php:98 msgid "Dislike Posts" msgstr "Publications non aimées" -#: include/features.php:61 +#: include/features.php:98 msgid "Ability to dislike posts/comments" msgstr "Possibilité de ne pas aimer les publications/commentaires" -#: include/features.php:62 +#: include/features.php:99 msgid "Star Posts" msgstr "Publications spéciales" -#: include/features.php:62 +#: include/features.php:99 msgid "Ability to mark special posts with a star indicator" msgstr "Possibilité de marquer les publications spéciales d'une étoile" -#: include/features.php:63 +#: include/features.php:100 msgid "Mute Post Notifications" msgstr "" -#: include/features.php:63 +#: include/features.php:100 msgid "Ability to mute notifications for a thread" msgstr "" -#: include/follow.php:75 +#: include/features.php:105 +msgid "Advanced Profile Settings" +msgstr "" + +#: include/features.php:106 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "" + +#: include/follow.php:77 msgid "Connect URL missing." msgstr "URL de connexion manquante." -#: include/follow.php:102 +#: include/follow.php:104 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:103 include/follow.php:123 +#: include/follow.php:105 include/follow.php:125 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:121 +#: include/follow.php:123 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:125 +#: include/follow.php:127 msgid "An author or name was not found." msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé." -#: include/follow.php:127 +#: include/follow.php:129 msgid "No browser URL could be matched to this address." msgstr "Aucune URL de navigation ne correspond à cette adresse." -#: include/follow.php:129 +#: include/follow.php:131 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:130 +#: include/follow.php:132 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:136 +#: include/follow.php:138 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:146 +#: include/follow.php:148 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." @@ -6144,27 +6595,31 @@ msgid "" "not what you intended, please create another group with a different name." msgstr "Un groupe supprimé a été recréé. Les permissions existantes pourraient s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom." -#: include/group.php:207 +#: 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:226 +#: include/group.php:239 msgid "Everybody" msgstr "Tout le monde" -#: include/group.php:249 +#: include/group.php:262 msgid "edit" msgstr "éditer" -#: include/group.php:271 +#: include/group.php:285 +msgid "Edit groups" +msgstr "" + +#: include/group.php:287 msgid "Edit group" msgstr "Editer groupe" -#: include/group.php:272 +#: include/group.php:288 msgid "Create a new group" msgstr "Créer un nouveau groupe" -#: include/group.php:275 +#: include/group.php:291 msgid "Contacts not in any group" msgstr "Contacts n'appartenant à aucun groupe" @@ -6176,246 +6631,242 @@ msgstr "Divers" msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: include/datetime.php:256 +#: include/datetime.php:271 msgid "never" msgstr "jamais" -#: include/datetime.php:262 +#: include/datetime.php:277 msgid "less than a second ago" msgstr "il y a moins d'une seconde" -#: include/datetime.php:272 +#: include/datetime.php:287 msgid "year" msgstr "an" -#: include/datetime.php:272 +#: include/datetime.php:287 msgid "years" msgstr "ans" -#: include/datetime.php:273 -msgid "month" -msgstr "mois" - -#: include/datetime.php:273 +#: include/datetime.php:288 msgid "months" msgstr "mois" -#: include/datetime.php:274 -msgid "week" -msgstr "semaine" - -#: include/datetime.php:274 +#: include/datetime.php:289 msgid "weeks" msgstr "semaines" -#: include/datetime.php:275 -msgid "day" -msgstr "jour" - -#: include/datetime.php:275 +#: include/datetime.php:290 msgid "days" msgstr "jours" -#: include/datetime.php:276 +#: include/datetime.php:291 msgid "hour" msgstr "heure" -#: include/datetime.php:276 +#: include/datetime.php:291 msgid "hours" msgstr "heures" -#: include/datetime.php:277 +#: include/datetime.php:292 msgid "minute" msgstr "minute" -#: include/datetime.php:277 +#: include/datetime.php:292 msgid "minutes" msgstr "minutes" -#: include/datetime.php:278 +#: include/datetime.php:293 msgid "second" msgstr "seconde" -#: include/datetime.php:278 +#: include/datetime.php:293 msgid "seconds" msgstr "secondes" -#: include/datetime.php:287 +#: include/datetime.php:302 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s auparavant" -#: include/datetime.php:459 include/items.php:2431 +#: include/datetime.php:474 include/items.php:2444 #, php-format msgid "%s's birthday" msgstr "Anniversaire de %s's" -#: include/datetime.php:460 include/items.php:2432 +#: include/datetime.php:475 include/items.php:2445 #, php-format msgid "Happy Birthday %s" msgstr "Joyeux anniversaire, %s !" -#: include/identity.php:38 +#: include/identity.php:43 msgid "Requested account is not available." msgstr "Le compte demandé n'est pas disponible." -#: include/identity.php:121 include/identity.php:255 include/identity.php:607 +#: include/identity.php:126 include/identity.php:265 include/identity.php:625 msgid "Edit profile" msgstr "Editer le profil" -#: include/identity.php:220 +#: include/identity.php:225 +msgid "Atom feed" +msgstr "" + +#: include/identity.php:230 msgid "Message" msgstr "Message" -#: include/identity.php:226 include/nav.php:184 +#: include/identity.php:236 include/nav.php:185 msgid "Profiles" msgstr "Profils" -#: include/identity.php:226 +#: include/identity.php:236 msgid "Manage/edit profiles" msgstr "Gérer/éditer les profils" -#: include/identity.php:341 +#: include/identity.php:353 msgid "Network:" msgstr "Réseau" -#: include/identity.php:373 include/identity.php:459 +#: include/identity.php:385 include/identity.php:471 msgid "g A l F d" msgstr "g A | F d" -#: include/identity.php:374 include/identity.php:460 +#: include/identity.php:386 include/identity.php:472 msgid "F d" msgstr "F d" -#: include/identity.php:419 include/identity.php:506 +#: include/identity.php:431 include/identity.php:518 msgid "[today]" msgstr "[aujourd'hui]" -#: include/identity.php:431 +#: include/identity.php:443 msgid "Birthday Reminders" msgstr "Rappels d'anniversaires" -#: include/identity.php:432 +#: include/identity.php:444 msgid "Birthdays this week:" msgstr "Anniversaires cette semaine:" -#: include/identity.php:493 +#: include/identity.php:505 msgid "[No description]" msgstr "[Sans description]" -#: include/identity.php:517 +#: include/identity.php:529 msgid "Event Reminders" msgstr "Rappels d'événements" -#: include/identity.php:518 +#: include/identity.php:530 msgid "Events this week:" msgstr "Evénements cette semaine :" -#: include/identity.php:545 +#: include/identity.php:558 msgid "j F, Y" msgstr "j F, Y" -#: include/identity.php:546 +#: include/identity.php:559 msgid "j F" msgstr "j F" -#: include/identity.php:553 +#: include/identity.php:566 msgid "Birthday:" msgstr "Anniversaire:" -#: include/identity.php:557 +#: include/identity.php:570 msgid "Age:" msgstr "Age:" -#: include/identity.php:566 +#: include/identity.php:579 #, php-format msgid "for %1$d %2$s" msgstr "depuis %1$d %2$s" -#: include/identity.php:579 +#: include/identity.php:592 msgid "Religion:" msgstr "Religion:" -#: include/identity.php:583 +#: include/identity.php:596 msgid "Hobbies/Interests:" msgstr "Passe-temps/Centres d'intérêt:" -#: include/identity.php:590 +#: include/identity.php:603 msgid "Contact information and Social Networks:" msgstr "Coordonnées/Réseaux sociaux:" -#: include/identity.php:592 +#: include/identity.php:605 msgid "Musical interests:" msgstr "Goûts musicaux:" -#: include/identity.php:594 +#: include/identity.php:607 msgid "Books, literature:" msgstr "Lectures:" -#: include/identity.php:596 +#: include/identity.php:609 msgid "Television:" msgstr "Télévision:" -#: include/identity.php:598 +#: include/identity.php:611 msgid "Film/dance/culture/entertainment:" msgstr "Cinéma/Danse/Culture/Divertissement:" -#: include/identity.php:600 +#: include/identity.php:613 msgid "Love/Romance:" msgstr "Amour/Romance:" -#: include/identity.php:602 +#: include/identity.php:615 msgid "Work/employment:" msgstr "Activité professionnelle/Occupation:" -#: include/identity.php:604 +#: include/identity.php:617 msgid "School/education:" msgstr "Études/Formation:" -#: include/identity.php:632 include/nav.php:76 +#: include/identity.php:621 +msgid "Forums:" +msgstr "" + +#: include/identity.php:650 include/nav.php:75 msgid "Status" msgstr "Statut" -#: include/identity.php:635 +#: include/identity.php:653 msgid "Status Messages and Posts" msgstr "Messages d'état et publications" -#: include/identity.php:643 +#: include/identity.php:661 msgid "Profile Details" msgstr "Détails du profil" -#: include/identity.php:656 include/identity.php:659 include/nav.php:79 +#: include/identity.php:674 include/identity.php:677 include/nav.php:78 msgid "Videos" msgstr "Vidéos" -#: include/identity.php:670 +#: include/identity.php:689 include/nav.php:140 msgid "Events and Calendar" msgstr "Événements et agenda" -#: include/identity.php:678 +#: include/identity.php:697 msgid "Only You Can See This" msgstr "Vous seul pouvez voir ça" -#: include/acl_selectors.php:324 +#: include/acl_selectors.php:325 msgid "Post to Email" msgstr "Publier aux courriels" -#: include/acl_selectors.php:329 +#: include/acl_selectors.php:330 #, php-format msgid "Connectors disabled, since \"%s\" is enabled." msgstr "" -#: include/acl_selectors.php:335 +#: include/acl_selectors.php:336 msgid "Visible to everybody" msgstr "Visible par tout le monde" -#: include/acl_selectors.php:336 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 +#: 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 "montrer" -#: include/acl_selectors.php:337 view/theme/diabook/config.php:142 -#: view/theme/diabook/theme.php:621 +#: 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 "cacher" @@ -6427,41 +6878,34 @@ msgstr "[pas de sujet]" msgid "stopped following" msgstr "retiré de la liste de suivi" -#: include/Contact.php:232 include/conversation.php:881 -msgid "Poke" -msgstr "Sollicitations (pokes)" - -#: include/Contact.php:233 include/conversation.php:875 +#: include/Contact.php:361 include/conversation.php:911 msgid "View Status" msgstr "Voir les statuts" -#: include/Contact.php:234 include/conversation.php:876 -msgid "View Profile" -msgstr "Voir le profil" - -#: include/Contact.php:235 include/conversation.php:877 +#: include/Contact.php:363 include/conversation.php:913 msgid "View Photos" msgstr "Voir les photos" -#: include/Contact.php:236 include/Contact.php:259 -#: include/conversation.php:878 +#: include/Contact.php:364 include/conversation.php:914 msgid "Network Posts" msgstr "Publications du réseau" -#: include/Contact.php:237 include/Contact.php:259 -#: include/conversation.php:879 +#: include/Contact.php:365 include/conversation.php:915 msgid "Edit Contact" msgstr "Éditer le contact" -#: include/Contact.php:238 +#: include/Contact.php:366 msgid "Drop Contact" msgstr "Supprimer le contact" -#: include/Contact.php:239 include/Contact.php:259 -#: include/conversation.php:880 +#: include/Contact.php:367 include/conversation.php:916 msgid "Send PM" msgstr "Message privé" +#: include/Contact.php:368 include/conversation.php:920 +msgid "Poke" +msgstr "Sollicitations (pokes)" + #: include/security.php:22 msgid "Welcome " msgstr "Bienvenue " @@ -6480,445 +6924,448 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé." -#: include/conversation.php:118 include/conversation.php:245 -#: include/text.php:2032 view/theme/diabook/theme.php:463 -msgid "event" -msgstr "évènement" +#: include/conversation.php:147 +#, php-format +msgid "%1$s attends %2$s's %3$s" +msgstr "" -#: include/conversation.php:206 +#: 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 a sollicité %2$s" -#: include/conversation.php:290 +#: include/conversation.php:303 msgid "post/item" msgstr "publication/élément" -#: include/conversation.php:291 +#: 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:771 +#: include/conversation.php:792 msgid "remove" msgstr "enlever" -#: include/conversation.php:775 +#: include/conversation.php:796 msgid "Delete Selected Items" msgstr "Supprimer les éléments sélectionnés" -#: include/conversation.php:874 +#: include/conversation.php:910 msgid "Follow Thread" msgstr "Suivre le fil" -#: include/conversation.php:943 +#: include/conversation.php:1035 #, php-format msgid "%s likes this." msgstr "%s aime ça." -#: include/conversation.php:943 +#: include/conversation.php:1038 #, php-format msgid "%s doesn't like this." msgstr "%s n'aime pas ça." -#: include/conversation.php:948 +#: include/conversation.php:1041 #, php-format -msgid "%2$d people like this" -msgstr "%2$d personnes aiment ça" +msgid "%s attends." +msgstr "" -#: include/conversation.php:951 +#: include/conversation.php:1044 #, php-format -msgid "%2$d people don't like this" -msgstr "%2$d personnes n'aiment pas ça" +msgid "%s doesn't attend." +msgstr "" -#: include/conversation.php:965 +#: include/conversation.php:1047 +#, php-format +msgid "%s attends maybe." +msgstr "" + +#: include/conversation.php:1057 msgid "and" msgstr "et" -#: include/conversation.php:971 +#: include/conversation.php:1063 #, php-format msgid ", and %d other people" msgstr ", et %d autres personnes" -#: include/conversation.php:973 +#: include/conversation.php:1072 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d personnes aiment ça" + +#: include/conversation.php:1073 #, php-format msgid "%s like this." -msgstr "%s aiment ça." +msgstr "" -#: include/conversation.php:973 +#: include/conversation.php:1076 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d personnes n'aiment pas ça" + +#: include/conversation.php:1077 #, php-format msgid "%s don't like this." -msgstr "%s n'aiment pas ça." +msgstr "" -#: include/conversation.php:1000 include/conversation.php:1018 +#: include/conversation.php:1080 +#, php-format +msgid "%2$d people attend" +msgstr "" + +#: include/conversation.php:1081 +#, php-format +msgid "%s attend." +msgstr "" + +#: include/conversation.php:1084 +#, php-format +msgid "%2$d people don't attend" +msgstr "" + +#: include/conversation.php:1085 +#, php-format +msgid "%s don't attend." +msgstr "" + +#: include/conversation.php:1088 +#, php-format +msgid "%2$d people anttend maybe" +msgstr "" + +#: include/conversation.php:1089 +#, php-format +msgid "%s anttend maybe." +msgstr "" + +#: include/conversation.php:1128 include/conversation.php:1146 msgid "Visible to everybody" msgstr "Visible par tout le monde" -#: include/conversation.php:1002 include/conversation.php:1020 +#: include/conversation.php:1130 include/conversation.php:1148 msgid "Please enter a video link/URL:" msgstr "Entrez un lien/URL video :" -#: include/conversation.php:1003 include/conversation.php:1021 +#: include/conversation.php:1131 include/conversation.php:1149 msgid "Please enter an audio link/URL:" msgstr "Entrez un lien/URL audio :" -#: include/conversation.php:1004 include/conversation.php:1022 +#: include/conversation.php:1132 include/conversation.php:1150 msgid "Tag term:" msgstr "Terme d'étiquette:" -#: include/conversation.php:1006 include/conversation.php:1024 +#: include/conversation.php:1134 include/conversation.php:1152 msgid "Where are you right now?" msgstr "Où êtes-vous présentemment?" -#: include/conversation.php:1007 +#: include/conversation.php:1135 msgid "Delete item(s)?" msgstr "Supprimer les élément(s) ?" -#: include/conversation.php:1076 +#: include/conversation.php:1204 msgid "permissions" msgstr "permissions" -#: include/conversation.php:1099 +#: include/conversation.php:1227 msgid "Post to Groups" msgstr "Publier aux groupes" -#: include/conversation.php:1100 +#: include/conversation.php:1228 msgid "Post to Contacts" msgstr "Publier aux contacts" -#: include/conversation.php:1101 +#: include/conversation.php:1229 msgid "Private post" msgstr "Message privé" -#: include/network.php:959 +#: include/conversation.php:1386 +msgid "View all" +msgstr "" + +#: include/conversation.php:1408 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1411 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1417 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "" +msgstr[1] "" + +#: include/conversation.php:1420 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 +msgid "Forums" +msgstr "" + +#: include/forums.php:107 view/theme/vier/theme.php:261 +msgid "External link to forum" +msgstr "" + +#: include/network.php:967 msgid "view full size" msgstr "voir en pleine taille" -#: include/text.php:299 +#: include/text.php:303 msgid "newer" msgstr "Plus récent" -#: include/text.php:301 +#: include/text.php:305 msgid "older" msgstr "Plus ancien" -#: include/text.php:306 +#: include/text.php:310 msgid "prev" msgstr "précédent" -#: include/text.php:308 +#: include/text.php:312 msgid "first" msgstr "premier" -#: include/text.php:340 +#: include/text.php:344 msgid "last" msgstr "dernier" -#: include/text.php:343 +#: include/text.php:347 msgid "next" msgstr "suivant" -#: include/text.php:398 +#: include/text.php:402 msgid "Loading more entries..." msgstr "" -#: include/text.php:399 +#: include/text.php:403 msgid "The end" msgstr "" -#: include/text.php:890 +#: include/text.php:894 msgid "No contacts" msgstr "Aucun contact" -#: include/text.php:905 +#: include/text.php:909 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d contact" msgstr[1] "%d contacts" -#: include/text.php:1003 include/nav.php:122 +#: include/text.php:1010 include/nav.php:121 msgid "Full Text" msgstr "" -#: include/text.php:1004 include/nav.php:123 +#: include/text.php:1011 include/nav.php:122 msgid "Tags" msgstr "" -#: include/text.php:1008 include/nav.php:127 -msgid "Forums" -msgstr "" - -#: include/text.php:1058 +#: include/text.php:1066 msgid "poke" msgstr "titiller" -#: include/text.php:1058 +#: include/text.php:1066 msgid "poked" msgstr "a titillé" -#: include/text.php:1059 +#: include/text.php:1067 msgid "ping" msgstr "attirer l'attention" -#: include/text.php:1059 +#: include/text.php:1067 msgid "pinged" msgstr "a attiré l'attention de" -#: include/text.php:1060 +#: include/text.php:1068 msgid "prod" msgstr "aiguillonner" -#: include/text.php:1060 +#: include/text.php:1068 msgid "prodded" msgstr "a aiguillonné" -#: include/text.php:1061 +#: include/text.php:1069 msgid "slap" msgstr "gifler" -#: include/text.php:1061 +#: include/text.php:1069 msgid "slapped" msgstr "a giflé" -#: include/text.php:1062 +#: include/text.php:1070 msgid "finger" msgstr "tripoter" -#: include/text.php:1062 +#: include/text.php:1070 msgid "fingered" msgstr "a tripoté" -#: include/text.php:1063 +#: include/text.php:1071 msgid "rebuff" msgstr "rabrouer" -#: include/text.php:1063 +#: include/text.php:1071 msgid "rebuffed" msgstr "a rabroué" -#: include/text.php:1077 +#: include/text.php:1085 msgid "happy" msgstr "heureuse" -#: include/text.php:1078 +#: include/text.php:1086 msgid "sad" msgstr "triste" -#: include/text.php:1079 +#: include/text.php:1087 msgid "mellow" msgstr "suave" -#: include/text.php:1080 +#: include/text.php:1088 msgid "tired" msgstr "fatiguée" -#: include/text.php:1081 +#: include/text.php:1089 msgid "perky" msgstr "guillerette" -#: include/text.php:1082 +#: include/text.php:1090 msgid "angry" msgstr "colérique" -#: include/text.php:1083 +#: include/text.php:1091 msgid "stupified" msgstr "stupéfaite" -#: include/text.php:1084 +#: include/text.php:1092 msgid "puzzled" msgstr "perplexe" -#: include/text.php:1085 +#: include/text.php:1093 msgid "interested" msgstr "intéressée" -#: include/text.php:1086 +#: include/text.php:1094 msgid "bitter" msgstr "amère" -#: include/text.php:1087 +#: include/text.php:1095 msgid "cheerful" msgstr "entraînante" -#: include/text.php:1088 +#: include/text.php:1096 msgid "alive" msgstr "vivante" -#: include/text.php:1089 +#: include/text.php:1097 msgid "annoyed" msgstr "ennuyée" -#: include/text.php:1090 +#: include/text.php:1098 msgid "anxious" msgstr "anxieuse" -#: include/text.php:1091 +#: include/text.php:1099 msgid "cranky" msgstr "excentrique" -#: include/text.php:1092 +#: include/text.php:1100 msgid "disturbed" msgstr "dérangée" -#: include/text.php:1093 +#: include/text.php:1101 msgid "frustrated" msgstr "frustrée" -#: include/text.php:1094 +#: include/text.php:1102 msgid "motivated" msgstr "motivée" -#: include/text.php:1095 +#: include/text.php:1103 msgid "relaxed" msgstr "détendue" -#: include/text.php:1096 +#: include/text.php:1104 msgid "surprised" msgstr "surprise" -#: include/text.php:1266 -msgid "Monday" -msgstr "Lundi" - -#: include/text.php:1266 -msgid "Tuesday" -msgstr "Mardi" - -#: include/text.php:1266 -msgid "Wednesday" -msgstr "Mercredi" - -#: include/text.php:1266 -msgid "Thursday" -msgstr "Jeudi" - -#: include/text.php:1266 -msgid "Friday" -msgstr "Vendredi" - -#: include/text.php:1266 -msgid "Saturday" -msgstr "Samedi" - -#: include/text.php:1266 -msgid "Sunday" -msgstr "Dimanche" - -#: include/text.php:1270 -msgid "January" -msgstr "Janvier" - -#: include/text.php:1270 -msgid "February" -msgstr "Février" - -#: include/text.php:1270 -msgid "March" -msgstr "Mars" - -#: include/text.php:1270 -msgid "April" -msgstr "Avril" - -#: include/text.php:1270 -msgid "May" -msgstr "Mai" - -#: include/text.php:1270 -msgid "June" -msgstr "Juin" - -#: include/text.php:1270 -msgid "July" -msgstr "Juillet" - -#: include/text.php:1270 -msgid "August" -msgstr "Août" - -#: include/text.php:1270 -msgid "September" -msgstr "Septembre" - -#: include/text.php:1270 -msgid "October" -msgstr "Octobre" - -#: include/text.php:1270 -msgid "November" -msgstr "Novembre" - -#: include/text.php:1270 -msgid "December" -msgstr "Décembre" - -#: include/text.php:1492 +#: include/text.php:1497 msgid "bytes" msgstr "octets" -#: include/text.php:1524 include/text.php:1536 +#: include/text.php:1529 include/text.php:1541 msgid "Click to open/close" msgstr "Cliquer pour ouvrir/fermer" -#: include/text.php:1710 +#: include/text.php:1715 msgid "View on separate page" msgstr "" -#: include/text.php:1711 +#: include/text.php:1716 msgid "view on separate page" msgstr "" -#: include/text.php:1768 include/user.php:255 -#: view/theme/duepuntozero/config.php:44 -msgid "default" -msgstr "défaut" - -#: include/text.php:1780 -msgid "Select an alternate language" -msgstr "Choisir une langue alternative" - -#: include/text.php:2036 +#: include/text.php:1997 msgid "activity" msgstr "activité" -#: include/text.php:2039 +#: include/text.php:2000 msgid "post" msgstr "publication" -#: include/text.php:2207 +#: include/text.php:2168 msgid "Item filed" msgstr "Élément classé" -#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 +#: include/bbcode.php:483 include/bbcode.php:1143 include/bbcode.php:1144 msgid "Image/photo" msgstr "Image/photo" -#: include/bbcode.php:556 +#: include/bbcode.php:581 #, php-format msgid "
    %2$s %3$s" msgstr "" -#: include/bbcode.php:590 +#: include/bbcode.php:615 #, php-format msgid "" "%s wrote the following post" msgstr "" -#: include/bbcode.php:1076 include/bbcode.php:1096 +#: include/bbcode.php:1103 include/bbcode.php:1123 msgid "$1 wrote:" msgstr "$1 a écrit:" -#: include/bbcode.php:1121 include/bbcode.php:1122 +#: include/bbcode.php:1152 include/bbcode.php:1153 msgid "Encrypted content" msgstr "Contenu chiffré" -#: include/notifier.php:830 include/delivery.php:456 +#: include/notifier.php:843 include/delivery.php:458 msgid "(no subject)" msgstr "(sans titre)" -#: include/notifier.php:840 include/delivery.php:467 include/enotify.php:33 +#: include/notifier.php:853 include/delivery.php:469 include/enotify.php:37 msgid "noreply" msgstr "noreply" @@ -7000,8 +7447,8 @@ msgid "Diaspora Connector" msgstr "Connecteur Diaspora" #: include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" +msgid "GNU Social" +msgstr "" #: include/contact_selectors.php:92 msgid "App.net" @@ -7011,219 +7458,219 @@ msgstr "App.net" msgid "Redmatrix" msgstr "" -#: include/Scrape.php:603 +#: include/Scrape.php:610 msgid " on Last.fm" msgstr "sur Last.fm" -#: include/bb2diaspora.php:154 include/event.php:22 +#: include/bb2diaspora.php:154 include/event.php:30 include/event.php:48 msgid "Starts:" msgstr "Débute:" -#: include/bb2diaspora.php:162 include/event.php:32 +#: include/bb2diaspora.php:162 include/event.php:33 include/event.php:54 msgid "Finishes:" msgstr "Finit:" -#: include/plugin.php:458 include/plugin.php:460 +#: include/plugin.php:522 include/plugin.php:524 msgid "Click here to upgrade." msgstr "Cliquez ici pour mettre à jour." -#: include/plugin.php:466 +#: include/plugin.php:530 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:471 +#: include/plugin.php:535 msgid "This action is not available under your subscription plan." msgstr "Cette action n'est pas disponible avec votre abonnement." -#: include/nav.php:73 +#: include/nav.php:72 msgid "End this session" msgstr "Mettre fin à cette session" -#: include/nav.php:76 include/nav.php:156 view/theme/diabook/theme.php:123 +#: include/nav.php:75 include/nav.php:157 view/theme/diabook/theme.php:123 msgid "Your posts and conversations" msgstr "Vos publications et conversations" -#: include/nav.php:77 view/theme/diabook/theme.php:124 +#: include/nav.php:76 view/theme/diabook/theme.php:124 msgid "Your profile page" msgstr "Votre page de profil" -#: include/nav.php:78 view/theme/diabook/theme.php:126 +#: include/nav.php:77 view/theme/diabook/theme.php:126 msgid "Your photos" msgstr "Vos photos" -#: include/nav.php:79 +#: include/nav.php:78 msgid "Your videos" msgstr "Vos vidéos" -#: include/nav.php:80 view/theme/diabook/theme.php:127 +#: include/nav.php:79 view/theme/diabook/theme.php:127 msgid "Your events" msgstr "Vos événements" -#: include/nav.php:81 view/theme/diabook/theme.php:128 +#: include/nav.php:80 view/theme/diabook/theme.php:128 msgid "Personal notes" msgstr "Notes personnelles" -#: include/nav.php:81 +#: include/nav.php:80 msgid "Your personal notes" msgstr "Vos notes personnelles" -#: include/nav.php:92 +#: include/nav.php:91 msgid "Sign in" msgstr "Se connecter" -#: include/nav.php:105 +#: include/nav.php:104 msgid "Home Page" msgstr "Page d'accueil" -#: include/nav.php:109 +#: include/nav.php:108 msgid "Create an account" msgstr "Créer un compte" -#: include/nav.php:114 +#: include/nav.php:113 msgid "Help and documentation" msgstr "Aide et documentation" -#: include/nav.php:117 +#: include/nav.php:116 msgid "Apps" msgstr "Applications" -#: include/nav.php:117 +#: include/nav.php:116 msgid "Addon applications, utilities, games" msgstr "Applications supplémentaires, utilitaires, jeux" -#: include/nav.php:119 +#: include/nav.php:118 msgid "Search site content" msgstr "Rechercher dans le contenu du site" -#: include/nav.php:137 +#: include/nav.php:136 msgid "Conversations on this site" msgstr "Conversations ayant cours sur ce site" -#: include/nav.php:139 +#: include/nav.php:138 msgid "Conversations on the network" msgstr "" -#: include/nav.php:141 +#: include/nav.php:142 msgid "Directory" msgstr "Annuaire" -#: include/nav.php:141 +#: include/nav.php:142 msgid "People directory" msgstr "Annuaire des utilisateurs" -#: include/nav.php:143 +#: include/nav.php:144 msgid "Information" msgstr "Information" -#: include/nav.php:143 +#: include/nav.php:144 msgid "Information about this friendica instance" msgstr "Information au sujet de cette instance de friendica" -#: include/nav.php:153 +#: include/nav.php:154 msgid "Conversations from your friends" msgstr "Conversations de vos amis" -#: include/nav.php:154 +#: include/nav.php:155 msgid "Network Reset" msgstr "Réinitialiser le réseau" -#: include/nav.php:154 +#: include/nav.php:155 msgid "Load Network page with no filters" msgstr "Chargement des pages du réseau sans filtre" -#: include/nav.php:161 +#: include/nav.php:162 msgid "Friend Requests" msgstr "Demande d'amitié" -#: include/nav.php:165 +#: include/nav.php:166 msgid "See all notifications" msgstr "Voir toute notification" -#: include/nav.php:166 +#: include/nav.php:167 msgid "Mark all system notifications seen" msgstr "Marquer toutes les notifications système comme 'vues'" -#: include/nav.php:170 +#: include/nav.php:171 msgid "Private mail" msgstr "Messages privés" -#: include/nav.php:171 +#: include/nav.php:172 msgid "Inbox" msgstr "Messages entrants" -#: include/nav.php:172 +#: include/nav.php:173 msgid "Outbox" msgstr "Messages sortants" -#: include/nav.php:176 +#: include/nav.php:177 msgid "Manage" msgstr "Gérer" -#: include/nav.php:176 +#: include/nav.php:177 msgid "Manage other pages" msgstr "Gérer les autres pages" -#: include/nav.php:181 +#: include/nav.php:182 msgid "Account settings" msgstr "Compte" -#: include/nav.php:184 +#: include/nav.php:185 msgid "Manage/Edit Profiles" msgstr "Gérer/Éditer les profiles" -#: include/nav.php:186 +#: include/nav.php:187 msgid "Manage/edit friends and contacts" msgstr "Gérer/éditer les amitiés et contacts" -#: include/nav.php:193 +#: include/nav.php:194 msgid "Site setup and configuration" msgstr "Démarrage et configuration du site" -#: include/nav.php:197 +#: include/nav.php:198 msgid "Navigation" msgstr "Navigation" -#: include/nav.php:197 +#: include/nav.php:198 msgid "Site map" msgstr "Carte du site" #: include/api.php:321 include/api.php:332 include/api.php:441 -#: include/api.php:1141 include/api.php:1143 +#: include/api.php:1160 include/api.php:1162 msgid "User not found." msgstr "Utilisateur non trouvé" -#: include/api.php:795 +#: include/api.php:808 #, 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:814 +#: include/api.php:827 #, 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:833 +#: include/api.php:846 #, php-format msgid "Monthly posting limit of %d posts reached. The post was rejected." msgstr "Le quota mensuel de %d publications a été atteint. La publication a été rejetée." -#: include/api.php:1350 +#: include/api.php:1369 msgid "There is no status with this id." msgstr "Il n'y a pas de statut avec cet id." -#: include/api.php:1424 +#: include/api.php:1443 msgid "There is no conversation with this id." msgstr "Il n'y a pas de conversation avec cet id." -#: include/api.php:1703 +#: include/api.php:1722 msgid "Invalid item." msgstr "Item invalide." -#: include/api.php:1713 +#: include/api.php:1732 msgid "Invalid action. " msgstr "Action invalide." -#: include/api.php:1721 +#: include/api.php:1740 msgid "DB error" msgstr "" @@ -7271,33 +7718,38 @@ msgstr "Impossible d'utiliser ce courriel." msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"." msgstr "" -#: include/user.php:146 include/user.php:244 +#: include/user.php:147 include/user.php:245 msgid "Nickname is already registered. Please choose another." msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre." -#: include/user.php:156 +#: include/user.php:157 msgid "" "Nickname was once registered here and may not be re-used. Please choose " "another." msgstr "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre." -#: include/user.php:172 +#: include/user.php:173 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué." -#: include/user.php:230 +#: include/user.php:231 msgid "An error occurred during registration. Please try again." msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer." -#: include/user.php:265 +#: include/user.php:256 view/theme/clean/config.php:56 +#: view/theme/duepuntozero/config.php:44 +msgid "default" +msgstr "défaut" + +#: include/user.php:266 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:297 include/user.php:301 include/profile_selectors.php:42 +#: include/user.php:299 include/user.php:303 include/profile_selectors.php:42 msgid "Friends" msgstr "Amis" -#: include/user.php:385 +#: include/user.php:387 #, php-format msgid "" "\n" @@ -7306,7 +7758,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:389 +#: include/user.php:391 #, php-format msgid "" "\n" @@ -7336,19 +7788,19 @@ 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/diaspora.php:717 +#: include/diaspora.php:719 msgid "Sharing notification from Diaspora network" msgstr "Notification de partage du réseau Diaspora" -#: include/diaspora.php:2560 +#: include/diaspora.php:2574 msgid "Attachments:" msgstr "Pièces jointes : " -#: include/items.php:4852 +#: include/items.php:4871 msgid "Do you really want to delete this item?" msgstr "Voulez-vous vraiment supprimer cet élément ?" -#: include/items.php:5127 +#: include/items.php:5146 msgid "Archives" msgstr "Archives" @@ -7404,10 +7856,6 @@ msgstr "Non-spécifique" msgid "Other" msgstr "Autre" -#: include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indécis" - #: include/profile_selectors.php:23 msgid "Males" msgstr "Hommes" @@ -7588,242 +8036,247 @@ msgstr "Notification Friendica" msgid "Thank You," msgstr "Merci, " -#: include/enotify.php:23 +#: include/enotify.php:24 #, php-format msgid "%s Administrator" msgstr "L'administrateur de %s" -#: include/enotify.php:64 +#: include/enotify.php:26 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "" + +#: include/enotify.php:68 #, php-format msgid "%s " msgstr "%s " -#: include/enotify.php:78 +#: include/enotify.php:82 #, php-format msgid "[Friendica:Notify] New mail received at %s" msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s" -#: include/enotify.php:80 +#: include/enotify.php:84 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s." -#: include/enotify.php:81 +#: include/enotify.php:85 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s vous a envoyé %2$s." -#: include/enotify.php:81 +#: include/enotify.php:85 msgid "a private message" msgstr "un message privé" -#: include/enotify.php:82 +#: include/enotify.php:86 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre." -#: include/enotify.php:134 +#: include/enotify.php:138 #, php-format msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgstr "%1$s a commenté sur [url=%2$s]un %3$s[/url]" -#: include/enotify.php:141 +#: include/enotify.php:145 #, php-format msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgstr "%1$s a commenté sur [url=%2$s]le %4$s de %3$s[/url]" -#: include/enotify.php:149 +#: include/enotify.php:153 #, php-format msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgstr "%1$s commented on [url=%2$s]your %3$s[/url]" -#: include/enotify.php:159 +#: include/enotify.php:163 #, php-format msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d" -#: include/enotify.php:160 +#: include/enotify.php:164 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s a commenté un élément que vous suivez." -#: include/enotify.php:163 include/enotify.php:178 include/enotify.php:191 -#: include/enotify.php:204 include/enotify.php:222 include/enotify.php:235 +#: 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 "Merci de visiter %s pour voir la conversation et/ou y répondre." -#: include/enotify.php:170 +#: include/enotify.php:174 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" msgstr "[Friendica:Notification] %s a posté sur votre mur de profil" -#: include/enotify.php:172 +#: include/enotify.php:176 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s a publié sur votre mur à %2$s" -#: include/enotify.php:174 +#: include/enotify.php:178 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]" -#: include/enotify.php:185 +#: include/enotify.php:189 #, php-format msgid "[Friendica:Notify] %s tagged you" msgstr "[Friendica:Notification] %s vous a étiqueté" -#: include/enotify.php:186 +#: include/enotify.php:190 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s vous a étiqueté sur %2$s" -#: include/enotify.php:187 +#: include/enotify.php:191 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." msgstr "%1$s [url=%2$s]vous a étiqueté[/url]." -#: include/enotify.php:198 +#: include/enotify.php:202 #, php-format msgid "[Friendica:Notify] %s shared a new post" msgstr "[Friendica:Notification] %s partage une nouvelle publication" -#: include/enotify.php:199 +#: include/enotify.php:203 #, php-format msgid "%1$s shared a new post at %2$s" msgstr "%1$s a partagé une nouvelle publication sur %2$s" -#: include/enotify.php:200 +#: include/enotify.php:204 #, php-format msgid "%1$s [url=%2$s]shared a post[/url]." msgstr "%1$s [url=%2$s]partage une publication[/url]." -#: include/enotify.php:212 +#: include/enotify.php:216 #, php-format msgid "[Friendica:Notify] %1$s poked you" msgstr "[Friendica:Notify] %1$s vous a sollicité" -#: include/enotify.php:213 +#: include/enotify.php:217 #, php-format msgid "%1$s poked you at %2$s" msgstr "%1$s vous a sollicité via %2$s" -#: include/enotify.php:214 +#: include/enotify.php:218 #, php-format msgid "%1$s [url=%2$s]poked you[/url]." msgstr "%1$s vous a [url=%2$s]sollicité[/url]." -#: include/enotify.php:229 +#: include/enotify.php:233 #, php-format msgid "[Friendica:Notify] %s tagged your post" msgstr "[Friendica:Notification] %s a étiqueté votre publication" -#: include/enotify.php:230 +#: include/enotify.php:234 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "%1$s a étiqueté votre publication sur %2$s" -#: include/enotify.php:231 +#: include/enotify.php:235 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "%1$s a étiqueté [url=%2$s]votre publication[/url]" -#: include/enotify.php:242 +#: include/enotify.php:246 msgid "[Friendica:Notify] Introduction received" msgstr "[Friendica:Notification] Introduction reçue" -#: include/enotify.php:243 +#: include/enotify.php:247 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s" -#: include/enotify.php:244 +#: include/enotify.php:248 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s." -#: include/enotify.php:247 include/enotify.php:289 +#: include/enotify.php:251 include/enotify.php:293 #, php-format msgid "You may visit their profile at %s" msgstr "Vous pouvez visiter son profil sur %s" -#: include/enotify.php:249 +#: include/enotify.php:253 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction." -#: include/enotify.php:257 +#: include/enotify.php:261 msgid "[Friendica:Notify] A new person is sharing with you" msgstr "[Notification Friendica] Une nouvelle personne partage avec vous" -#: include/enotify.php:258 include/enotify.php:259 +#: include/enotify.php:262 include/enotify.php:263 #, php-format msgid "%1$s is sharing with you at %2$s" msgstr "" -#: include/enotify.php:265 +#: include/enotify.php:269 msgid "[Friendica:Notify] You have a new follower" msgstr "" -#: include/enotify.php:266 include/enotify.php:267 +#: 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:280 +#: include/enotify.php:284 msgid "[Friendica:Notify] Friend suggestion received" msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié" -#: include/enotify.php:281 +#: include/enotify.php:285 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s" -#: include/enotify.php:282 +#: include/enotify.php:286 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s." -#: include/enotify.php:287 +#: include/enotify.php:291 msgid "Name:" msgstr "Nom :" -#: include/enotify.php:288 +#: include/enotify.php:292 msgid "Photo:" msgstr "Photo :" -#: include/enotify.php:291 +#: include/enotify.php:295 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion." -#: include/enotify.php:299 include/enotify.php:312 +#: include/enotify.php:303 include/enotify.php:316 msgid "[Friendica:Notify] Connection accepted" msgstr "" -#: include/enotify.php:300 include/enotify.php:313 +#: 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:301 include/enotify.php:314 +#: 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:304 +#: include/enotify.php:308 msgid "" "You are now mutual friends and may exchange status updates, photos, and email\n" "\twithout restriction." msgstr "" -#: include/enotify.php:307 include/enotify.php:321 +#: 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/enotify.php:317 +#: include/enotify.php:321 #, php-format msgid "" "'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " @@ -7832,42 +8285,42 @@ msgid "" "automatically." msgstr "" -#: include/enotify.php:319 +#: include/enotify.php:323 #, 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:332 +#: include/enotify.php:336 msgid "[Friendica System:Notify] registration request" msgstr "" -#: include/enotify.php:333 +#: include/enotify.php:337 #, php-format msgid "You've received a registration request from '%1$s' at %2$s" msgstr "" -#: include/enotify.php:334 +#: include/enotify.php:338 #, php-format msgid "You've received a [url=%1$s]registration request[/url] from %2$s." msgstr "Vous avez reçu une [url=%1$s]demande de création de compte[/url] de %2$s." -#: include/enotify.php:337 +#: include/enotify.php:341 #, php-format msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" msgstr "Nom complet :\t%1$s\\nAdresse :\t%2$s\\nIdentifiant :\t%3$s (%4$s)" -#: include/enotify.php:340 +#: include/enotify.php:344 #, php-format msgid "Please visit %s to approve or reject the request." msgstr "Veuillez visiter %s pour approuver ou rejeter la demande." -#: include/oembed.php:223 +#: include/oembed.php:220 msgid "Embedded content" msgstr "Contenu incorporé" -#: include/oembed.php:232 +#: include/oembed.php:229 msgid "Embedding disabled" msgstr "Incorporation désactivée" @@ -7925,6 +8378,7 @@ msgid "Set theme width" msgstr "Largeur du thème" #: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 +#: view/theme/clean/config.php:88 msgid "Color scheme" msgstr "Palette de couleurs" @@ -7978,6 +8432,7 @@ msgstr "Régler la latitude (Y) pour la géolocalisation" #: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130 #: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 +#: view/theme/vier/config.php:111 msgid "Community Pages" msgstr "Pages de Communauté" @@ -7987,27 +8442,31 @@ msgid "Earth Layers" msgstr "Géolocalisation" #: view/theme/diabook/config.php:160 view/theme/diabook/theme.php:391 -#: view/theme/diabook/theme.php:626 +#: view/theme/diabook/theme.php:626 view/theme/vier/config.php:112 +#: view/theme/vier/theme.php:156 msgid "Community Profiles" msgstr "Profils communautaires" #: view/theme/diabook/config.php:161 view/theme/diabook/theme.php:599 -#: view/theme/diabook/theme.php:627 +#: view/theme/diabook/theme.php:627 view/theme/vier/config.php:113 msgid "Help or @NewHere ?" msgstr "Aide ou @NewHere?" #: view/theme/diabook/config.php:162 view/theme/diabook/theme.php:606 -#: view/theme/diabook/theme.php:628 +#: view/theme/diabook/theme.php:628 view/theme/vier/config.php:114 +#: view/theme/vier/theme.php:377 msgid "Connect Services" msgstr "Connecter des services" #: view/theme/diabook/config.php:163 view/theme/diabook/theme.php:523 -#: view/theme/diabook/theme.php:629 +#: view/theme/diabook/theme.php:629 view/theme/vier/config.php:115 +#: view/theme/vier/theme.php:203 msgid "Find Friends" msgstr "Trouver des amis" #: view/theme/diabook/config.php:164 view/theme/diabook/theme.php:412 -#: view/theme/diabook/theme.php:630 +#: view/theme/diabook/theme.php:630 view/theme/vier/config.php:116 +#: view/theme/vier/theme.php:185 msgid "Last users" msgstr "Derniers utilisateurs" @@ -8029,7 +8488,7 @@ msgstr "Vos contacts" msgid "Your personal photos" msgstr "Vos photos personnelles" -#: view/theme/diabook/theme.php:524 +#: view/theme/diabook/theme.php:524 view/theme/vier/theme.php:204 msgid "Local Directory" msgstr "Annuaire local" @@ -8041,10 +8500,68 @@ msgstr "Régler le niveau de zoom pour la géolocalisation" msgid "Show/hide boxes at right-hand column:" msgstr "Montrer/cacher les boîtes dans la colonne de droite :" -#: view/theme/vier/config.php:59 +#: view/theme/clean/config.php:57 +msgid "Midnight" +msgstr "" + +#: view/theme/clean/config.php:58 +msgid "Zenburn" +msgstr "" + +#: view/theme/clean/config.php:59 +msgid "Bootstrap" +msgstr "" + +#: view/theme/clean/config.php:60 +msgid "Shades of Pink" +msgstr "" + +#: view/theme/clean/config.php:61 +msgid "Lime and Orange" +msgstr "" + +#: view/theme/clean/config.php:62 +msgid "GeoCities Retro" +msgstr "" + +#: view/theme/clean/config.php:86 +msgid "Background Image" +msgstr "" + +#: view/theme/clean/config.php:86 +msgid "" +"The URL to a picture (e.g. from your photo album) that should be used as " +"background image." +msgstr "" + +#: view/theme/clean/config.php:87 +msgid "Background Color" +msgstr "" + +#: view/theme/clean/config.php:87 +msgid "HEX value for the background color. Don't include the #" +msgstr "" + +#: view/theme/clean/config.php:89 +msgid "font size" +msgstr "" + +#: view/theme/clean/config.php:89 +msgid "base font size for your interface" +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 "Définir le style" +#: view/theme/vier/theme.php:295 +msgid "Quick Start" +msgstr "" + #: view/theme/duepuntozero/config.php:45 msgid "greenzero" msgstr "" diff --git a/view/fr/strings.php b/view/fr/strings.php index a5e3730759..95642eb3b2 100644 --- a/view/fr/strings.php +++ b/view/fr/strings.php @@ -11,8 +11,8 @@ $a->strings["%d contact edited."] = array( ); $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 updated."] = "Contact mis à jour."; +$a->strings["Failed to update contact record."] = "Échec de mise à jour du contact."; $a->strings["Permission denied."] = "Permission refusée."; $a->strings["Contact has been blocked"] = "Le contact a été bloqué"; $a->strings["Contact has been unblocked"] = "Le contact n'est plus bloqué"; @@ -30,7 +30,7 @@ $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)"] = "(Mise à jour échouée)"; +$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["%d contact in common"] = array( @@ -69,6 +69,7 @@ $a->strings["Delete contact"] = "Effacer ce contact"; $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["Connect/Follow"] = "Connecter/Suivre"; $a->strings["Currently blocked"] = "Actuellement bloqué"; $a->strings["Currently ignored"] = "Actuellement ignoré"; $a->strings["Currently archived"] = "Actuellement archivé"; @@ -183,16 +184,31 @@ $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["Subsribing 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"] = "ignoré"; +$a->strings["Keep this window open until done."] = "Veuillez garder cette fenêtre ouverte jusqu'à la fin."; $a->strings["Save to Folder:"] = "Sauver dans le Dossier:"; $a->strings["- select -"] = "- choisir -"; $a->strings["Save"] = "Sauver"; +$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["Submit Request"] = "Envoyer la requête"; +$a->strings["Location:"] = "Localisation:"; +$a->strings["About:"] = "À propos:"; +$a->strings["Tags:"] = "Étiquette:"; $a->strings["Contact added"] = "Contact ajouté"; $a->strings["Unable to locate original post."] = "Impossible de localiser la publication originale."; $a->strings["Empty post discarded."] = "Publication vide rejetée."; @@ -271,12 +287,17 @@ $a->strings["Forgot your Password?"] = "Mot de passe oublié ?"; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel."; $a->strings["Nickname or Email: "] = "Pseudo ou eMail : "; $a->strings["Reset"] = "Réinitialiser"; +$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["{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["Forum"] = "Forum"; $a->strings["View Contacts"] = "Voir les contacts"; $a->strings["Invalid request identifier."] = "Identifiant de demande invalide."; $a->strings["Discard"] = "Rejeter"; @@ -303,9 +324,6 @@ $a->strings["Sharer"] = "Initiateur du partage"; $a->strings["Fan/Admirer"] = "Fan/Admirateur"; $a->strings["Friend/Connect Request"] = "Demande de connexion/relation"; $a->strings["New Follower"] = "Nouvel abonné"; -$a->strings["Location:"] = "Localisation:"; -$a->strings["About:"] = "À propos:"; -$a->strings["Tags:"] = "Étiquette:"; $a->strings["Gender:"] = "Genre:"; $a->strings["No introductions."] = "Aucune demande d'introduction."; $a->strings["Notifications"] = "Notifications"; @@ -355,30 +373,30 @@ $a->strings["Upload photo"] = "Joindre photo"; $a->strings["Insert web link"] = "Insérer lien web"; $a->strings["Please wait"] = "Patientez"; $a->strings["No messages."] = "Aucun message."; +$a->strings["Message not available."] = "Message indisponible."; +$a->strings["Delete message"] = "Effacer message"; +$a->strings["Delete conversation"] = "Effacer conversation"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur."; +$a->strings["Send Reply"] = "Répondre"; $a->strings["Unknown sender - %s"] = "Émetteur inconnu - %s"; $a->strings["You and %s"] = "Vous et %s"; $a->strings["%s and You"] = "%s et vous"; -$a->strings["Delete conversation"] = "Effacer conversation"; $a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; $a->strings["%d message"] = array( 0 => "%d message", 1 => "%d messages", ); -$a->strings["Message not available."] = "Message indisponible."; -$a->strings["Delete message"] = "Effacer message"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur."; -$a->strings["Send Reply"] = "Répondre"; $a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]"; $a->strings["Contact settings applied."] = "Réglages du contact appliqués."; $a->strings["Contact update failed."] = "Impossible d'appliquer les réglages."; -$a->strings["Repair Contact Settings"] = "Réglages de réparation des contacts"; $a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact."; $a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "une photo"; -$a->strings["Return to contact editor"] = "Retour à l'éditeur de contact"; $a->strings["No mirroring"] = "Pas de miroir"; $a->strings["Mirror as forwarded posting"] = ""; $a->strings["Mirror as my own posting"] = ""; -$a->strings["Refetch contact data"] = ""; +$a->strings["Repair Contact Settings"] = "Réglages de réparation des contacts"; +$a->strings["Return to contact editor"] = "Retour à l'éditeur de contact"; +$a->strings["Refetch contact data"] = "Récupérer à nouveau les données de contact"; $a->strings["Name"] = "Nom"; $a->strings["Account Nickname"] = "Pseudo du compte"; $a->strings["@Tagname - overrides Name/Nickname"] = "@NomEtiquette - prend le pas sur Nom/Pseudo"; @@ -390,14 +408,16 @@ $a->strings["Poll/Feed URL"] = "Téléverser des photos"; $a->strings["New photo from this URL"] = "Nouvelle photo depuis cette URL"; $a->strings["Remote Self"] = ""; $a->strings["Mirror postings from this contact"] = ""; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = ""; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marquer ce contact comme étant remote_self, friendica republiera alors les nouvelles entrées de ce contact."; $a->strings["Login"] = "Connexion"; -$a->strings["The post was created"] = ""; +$a->strings["The post was created"] = "La publication a été créée"; $a->strings["Access denied."] = "Accès refusé."; -$a->strings["People Search - %s"] = ""; $a->strings["Connect"] = "Relier"; +$a->strings["View Profile"] = "Voir le profil"; +$a->strings["People Search - %s"] = "Recherche de personne - %s"; $a->strings["No matches"] = "Aucune correspondance"; $a->strings["Photos"] = "Photos"; +$a->strings["Contact Photos"] = "Photos du contact"; $a->strings["Files"] = "Fichiers"; $a->strings["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe"; $a->strings["Theme settings updated."] = "Réglages du thème sauvés."; @@ -406,21 +426,21 @@ $a->strings["Users"] = "Utilisateurs"; $a->strings["Plugins"] = "Extensions"; $a->strings["Themes"] = "Thèmes"; $a->strings["DB updates"] = "Mise-à-jour de la base"; -$a->strings["Inspect Queue"] = ""; +$a->strings["Inspect Queue"] = "Inspecter la file d'attente"; $a->strings["Logs"] = "Journaux"; $a->strings["probe address"] = ""; -$a->strings["check webfinger"] = ""; +$a->strings["check webfinger"] = "vérification de webfinger"; $a->strings["Admin"] = "Admin"; $a->strings["Plugin Features"] = "Propriétés des extensions"; -$a->strings["diagnostics"] = ""; +$a->strings["diagnostics"] = "diagnostic"; $a->strings["User registrations waiting for confirmation"] = "Inscriptions en attente de confirmation"; $a->strings["Administration"] = "Administration"; -$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["ID"] = "ID"; +$a->strings["Recipient Name"] = "Nom du destinataire"; +$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["Normal Account"] = "Compte normal"; $a->strings["Soapbox Account"] = "Compte \"boîte à savon\""; $a->strings["Community/Celebrity Account"] = "Compte de communauté/célébrité"; @@ -434,11 +454,12 @@ $a->strings["Pending registrations"] = "Inscriptions en attente"; $a->strings["Version"] = "Versio"; $a->strings["Active plugins"] = "Extensions activés"; $a->strings["Can not parse base url. Must have at least ://"] = "Impossible d'analyser l'URL de base. Doit contenir au moins ://"; +$a->strings["RINO2 needs mcrypt php extension to work."] = "RINO2 a besoin du module php mcrypt pour fonctionner."; $a->strings["Site settings updated."] = "Réglages du site mis-à-jour."; $a->strings["No special theme for mobile devices"] = "Pas de thème particulier pour les terminaux mobiles"; -$a->strings["No community page"] = ""; -$a->strings["Public postings from users of this site"] = ""; -$a->strings["Global community page"] = ""; +$a->strings["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["At post arrival"] = "A l'arrivé d'une publication"; $a->strings["Frequently"] = "Fréquemment"; $a->strings["Hourly"] = "Toutes les heures"; @@ -448,7 +469,7 @@ $a->strings["Users, Global Contacts"] = ""; $a->strings["Users, Global Contacts/fallback"] = ""; $a->strings["One month"] = "Un mois"; $a->strings["Three months"] = "Trois mois"; -$a->strings["Half a year"] = ""; +$a->strings["Half a year"] = "Six mois"; $a->strings["One year"] = "Un an"; $a->strings["Multi user instance"] = "Instance multi-utilisateurs"; $a->strings["Closed"] = "Fermé"; @@ -467,12 +488,15 @@ $a->strings["Performance"] = "Performance"; $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible."; $a->strings["Site name"] = "Nom du site"; $a->strings["Host name"] = "Nom de la machine hôte"; -$a->strings["Sender Email"] = ""; +$a->strings["Sender Email"] = "Courriel de l'émetteur"; +$a->strings["The email address your server shall use to send notification emails from."] = "L'adresse courriel à partir de laquelle votre serveur enverra des courriels."; $a->strings["Banner/Logo"] = "Bannière/Logo"; -$a->strings["Shortcut icon"] = ""; +$a->strings["Shortcut icon"] = "Icône de raccourci"; +$a->strings["Link to an icon that will be used for browsers."] = "Lien vers une icône qui sera utilisée pour les navigateurs."; $a->strings["Touch icon"] = ""; +$a->strings["Link to an icon that will be used for tablets and mobiles."] = "Lien vers une icône qui sera utilisée pour les tablettes et les mobiles."; $a->strings["Additional Info"] = "Informations supplémentaires"; -$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = ""; +$a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "Pour les serveurs publics : vous pouvez ajouter des informations supplémentaires ici, qui figureront dans %s/siteinfo."; $a->strings["System language"] = "Langue du système"; $a->strings["System theme"] = "Thème du système"; $a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Thème par défaut sur ce site - peut être changé au niveau du profile utilisateur - changer les réglages du thème"; @@ -509,8 +533,8 @@ $a->strings["Block public"] = "Interdire la publication globale"; $a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques."; $a->strings["Force publish"] = "Forcer la publication globale"; $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site."; -$a->strings["Global directory update URL"] = "URL de mise-à-jour de l'annuaire global"; -$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible."; +$a->strings["Global directory URL"] = "URL de l'annuaire global"; +$a->strings["URL to the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL de l'annuaire global. Si ce champ n'est pas défini, l'annuaire global sera complètement indisponible pour l'application."; $a->strings["Allow threaded items"] = "autoriser le suivi des éléments par fil conducteur"; $a->strings["Allow infinite level threading for items on this site."] = "Permettre une imbrication infinie des commentaires."; $a->strings["Private posts by default for new users"] = "Publications privées par défaut pour les nouveaux utilisateurs"; @@ -531,14 +555,16 @@ $a->strings["Fullname check"] = "Vérification du \"Prénom Nom\""; $a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus"; $a->strings["UTF-8 Regular expressions"] = "Regex UTF-8"; $a->strings["Use PHP UTF8 regular expressions"] = "Utiliser les expressions rationnelles de PHP en UTF8"; -$a->strings["Community Page Style"] = ""; -$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = ""; -$a->strings["Posts per user on community page"] = ""; -$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = ""; +$a->strings["Community Page Style"] = "Style de la page de communauté"; +$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "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."; +$a->strings["Posts per user on community page"] = "Nombre de publications par utilisateur sur la page de la communauté (n'est pas valide pour "; +$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "Nombre maximal de publications par utilisateurs sur la page de la communauté (ne s'applique pas pour « Communauté globale »)."; $a->strings["Enable OStatus support"] = "Activer le support d'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."] = "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."; $a->strings["OStatus conversation completion interval"] = "Achèvement de l'intervalle de conversation OStatus "; $a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Combien de fois le poller devra vérifier les nouvelles entrées dans les conversations OStatus? Cela peut utilisé beaucoup de ressources."; +$a->strings["OStatus support can only be enabled if threading is enabled."] = "Le support OStatus ne peut être activé que si l'imbrication des commentaires est activée."; +$a->strings["Diaspora support can't be enabled because Friendica was installed into a sub directory."] = "Le support de Diaspora ne peut pas être activé parce que Friendica a été installé dans un sous-répertoire."; $a->strings["Enable Diaspora support"] = "Activer le support de Diaspora"; $a->strings["Provide built-in Diaspora network compatibility."] = "Fournir une compatibilité Diaspora intégrée."; $a->strings["Only allow Friendica contacts"] = "N'autoriser que les contacts Friendica"; @@ -555,11 +581,15 @@ $a->strings["Poll interval"] = "Intervalle de réception"; $a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "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."; $a->strings["Maximum Load Average"] = "Plafond de la charge moyenne"; $a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50."; -$a->strings["Maximum Load Average (Frontend)"] = ""; +$a->strings["Maximum Load Average (Frontend)"] = "Plafond de la charge moyenne (frontale)"; $a->strings["Maximum system load before the frontend quits service - default 50."] = ""; -$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["Discover contacts from other servers"] = ""; +$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["Periodical check of global contacts"] = "Vérification périodique des contacts globaux"; +$a->strings["If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers."] = "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."; +$a->strings["Days between requery"] = "Nombre de jours entre les requêtes"; +$a->strings["Number of days after which a server is requeried for his contacts."] = "Nombre de jours avant qu'une requête de contacts soient envoyée à nouveau à un serveur."; +$a->strings["Discover contacts from other servers"] = "Découvrir des contacts des autres serveurs"; $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."] = ""; @@ -653,8 +683,10 @@ $a->strings["Enable"] = "Activer"; $a->strings["Toggle"] = "Activer/Désactiver"; $a->strings["Author: "] = "Auteur: "; $a->strings["Maintainer: "] = "Mainteneur: "; +$a->strings["Reload active plugins"] = ""; $a->strings["No themes found."] = "Aucun thème trouvé."; $a->strings["Screenshot"] = "Capture d'écran"; +$a->strings["Reload active themes"] = ""; $a->strings["[Experimental]"] = "[Expérimental]"; $a->strings["[Unsupported]"] = "[Non supporté]"; $a->strings["Log settings updated."] = "Réglages des journaux mis-à-jour."; @@ -691,13 +723,53 @@ $a->strings["Private messages to this group are at risk of public disclosure."] $a->strings["No such group"] = "Groupe inexistant"; $a->strings["Group is empty"] = "Groupe vide"; $a->strings["Group: %s"] = ""; -$a->strings["Contact: %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["Friends of %s"] = "Amis de %s"; $a->strings["No friends to display."] = "Pas d'amis à afficher."; +$a->strings["Friends of %s"] = "Amis de %s"; $a->strings["Event can not end before it has started."] = ""; $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["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["month"] = "mois"; +$a->strings["week"] = "semaine"; +$a->strings["day"] = "jour"; $a->strings["l, F j"] = "l, F j"; $a->strings["Edit event"] = "Editer l'événement"; $a->strings["link to source"] = "lien original"; @@ -706,7 +778,7 @@ $a->strings["Create New Event"] = "Créer un nouvel événement"; $a->strings["Previous"] = "Précédent"; $a->strings["Next"] = "Suivant"; $a->strings["Event details"] = "Détails de l'événement"; -$a->strings["Starting date and Title are required."] = ""; +$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["Required"] = "Requis"; $a->strings["Finish date/time is not known or not relevant"] = "Date / heure de fin inconnue ou sans objet"; @@ -716,6 +788,8 @@ $a->strings["Description:"] = "Description:"; $a->strings["Title:"] = "Titre :"; $a->strings["Share this event"] = "Partager cet événement"; $a->strings["Preview"] = "Aperçu"; +$a->strings["Credits"] = "Remerciements"; +$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 est un projet communautaire, qui ne serait pas possible sans l'aide de beaucoup de gens. Voici une liste de ceux qui ont contribué au code ou à la traduction de Friendica. Merci à tous!"; $a->strings["Select"] = "Sélectionner"; $a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s"; $a->strings["%s from %s"] = "%s de %s"; @@ -765,7 +839,7 @@ $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."] = ""; +$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"; @@ -781,7 +855,7 @@ $a->strings["Your account email address must match this in order to use the web $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["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 'Activating scheduled tasks'"] = "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir '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'"] = "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"; @@ -799,6 +873,7 @@ $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["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é."; @@ -806,6 +881,9 @@ $a->strings["Error: GD graphics PHP module with JPEG support required but not in $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["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."] = "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."; @@ -818,6 +896,8 @@ $a->strings["Note: as a security measure, you should give the web server write a $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"] = ""; +$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."] = "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\"."; @@ -835,9 +915,9 @@ $a->strings["Sorry, maybe your upload is bigger than the PHP configuration allow $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"] = ""; $a->strings["File upload failed."] = "Le téléversement a échoué."; -$a->strings["Profile Match"] = "Correpondance de profils"; $a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."; $a->strings["is interested in:"] = "s'intéresse à :"; +$a->strings["Profile Match"] = "Correpondance de profils"; $a->strings["link"] = "lien"; $a->strings["Not available."] = "Indisponible."; $a->strings["Community"] = "Communauté"; @@ -883,18 +963,19 @@ $a->strings["Plugin Settings"] = "Extensions"; $a->strings["Off"] = "Éteint"; $a->strings["On"] = "Allumé"; $a->strings["Additional Features"] = "Fonctions supplémentaires"; -$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["General Social Media Settings"] = "Paramètres généraux des réseaux sociaux"; +$a->strings["Disable intelligent shortening"] = "Désactiver la réduction d'URL"; +$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."] = "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."; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Suivre automatiquement ceux qui me suivent ou me mentionnent sur GNU Social (OStatus)"; +$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."] = "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."; +$a->strings["Your legacy GNU Social account"] = "Le compte GNU Social que vous avez déjà"; +$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."] = "Si vous entrez votre 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é."; +$a->strings["Repair OStatus subscriptions"] = "Réparer les abonnements OStatus"; $a->strings["Built-in support for %s connectivity is %s"] = "Le support natif pour la connectivité %s est %s"; $a->strings["Diaspora"] = "Diaspora"; $a->strings["enabled"] = "activé"; $a->strings["disabled"] = "désactivé"; -$a->strings["GNU Social (OStatus)"] = ""; +$a->strings["GNU Social (OStatus)"] = "GNU Social (OStatus)"; $a->strings["Email access is disabled on this site."] = "L'accès courriel est désactivé sur ce site."; $a->strings["Email/Mailbox Setup"] = "Réglages de courriel/boîte à lettre"; $a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte."; @@ -920,6 +1001,8 @@ $a->strings["Number of items to display per page:"] = "Nombre d’éléments par $a->strings["Maximum of 100 items"] = "Maximum de 100 éléments"; $a->strings["Number of items to display per page when viewed from mobile device:"] = "Nombre d'éléments a afficher par page pour un appareil mobile"; $a->strings["Don't show emoticons"] = "Ne pas afficher les émoticônes (smileys grahiques)"; +$a->strings["Calendar"] = "Calendrier"; +$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"] = ""; @@ -970,6 +1053,8 @@ $a->strings["Basic Settings"] = "Réglages basiques"; $a->strings["Full Name:"] = "Nom complet:"; $a->strings["Email Address:"] = "Adresse courriel:"; $a->strings["Your Timezone:"] = "Votre fuseau horaire:"; +$a->strings["Your Language:"] = "Votre langue :"; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Détermine la langue que nous utilisons pour afficher votre interface Friendica et pour vous envoyer des courriels"; $a->strings["Default Post Location:"] = "Emplacement de publication par défaut:"; $a->strings["Use Browser Location:"] = "Utiliser la localisation géographique du navigateur:"; $a->strings["Security and Privacy Settings"] = "Réglages de sécurité et vie privée"; @@ -997,10 +1082,10 @@ $a->strings["You receive a private message"] = "Vous recevez un message privé"; $a->strings["You receive a friend suggestion"] = "Vous avez reçu une suggestion d'ami"; $a->strings["You are tagged in a post"] = "Vous avez été étiquetté dans une publication"; $a->strings["You are poked/prodded/etc. in a post"] = "Vous avez été sollicité dans une publication"; -$a->strings["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["Activate desktop notifications"] = "Activer les notifications de bureau"; +$a->strings["Show desktop popup on new notifications"] = "Afficher dans des pops-ups les nouvelles notifications"; +$a->strings["Text-only notification emails"] = "Courriels de notification en format texte"; +$a->strings["Send text only notification emails, without the html part"] = "Envoyer le texte des courriels de notification, sans la composante html"; $a->strings["Advanced Account/Page Type Settings"] = "Paramètres avancés de compte/page"; $a->strings["Change the behaviour of this account for special situations"] = "Modifier le comportement de ce compte dans certaines situations"; $a->strings["Relocate"] = "Relocaliser"; @@ -1044,6 +1129,7 @@ $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["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."] = ""; $a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée."; $a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site."; $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain."; @@ -1053,7 +1139,7 @@ $a->strings["Your OpenID (optional): "] = "Votre OpenID (facultatif): "; $a->strings["Include your profile in member directory?"] = "Inclure votre profil dans l'annuaire des membres?"; $a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation."; $a->strings["Your invitation ID: "] = "Votre ID d'invitation: "; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Votre nom complet (p.ex. Michel Dupont): "; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = ""; $a->strings["Your Email Address: "] = "Votre adresse courriel: "; $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'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@\$sitename</strong>'."; @@ -1062,16 +1148,20 @@ $a->strings["Register"] = "S'inscrire"; $a->strings["Import"] = "Importer"; $a->strings["Import your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica"; $a->strings["System down for maintenance"] = "Système indisponible pour cause de maintenance"; +$a->strings["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"] = "Recherche"; $a->strings["Items tagged with: %s"] = ""; $a->strings["Search results for: %s"] = ""; -$a->strings["Global Directory"] = "Annuaire global"; -$a->strings["Find on this site"] = "Trouver sur ce site"; -$a->strings["Site Directory"] = "Annuaire local"; $a->strings["Age: "] = "Age : "; $a->strings["Gender: "] = "Genre : "; $a->strings["Status:"] = "Statut:"; $a->strings["Homepage:"] = "Page personnelle:"; +$a->strings["Global Directory"] = "Annuaire global"; +$a->strings["Find on this site"] = "Trouver sur ce site"; +$a->strings["Finding:"] = ""; +$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["No potential page delegates located."] = "Pas de délégataire potentiel."; $a->strings["Delegate Page Management"] = "Déléguer la gestion de la page"; @@ -1081,8 +1171,8 @@ $a->strings["Existing Page Delegates"] = "Délégataires existants"; $a->strings["Potential Delegates"] = "Délégataires potentiels"; $a->strings["Add"] = "Ajouter"; $a->strings["No entries."] = "Aucune entrée."; -$a->strings["Common Friends"] = "Amis communs"; $a->strings["No contacts in common."] = "Pas de contacts en commun."; +$a->strings["Common Friends"] = "Amis communs"; $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"; @@ -1091,9 +1181,9 @@ $a->strings["%1\$s is currently %2\$s"] = "%1\$s est d'humeur %2\$s"; $a->strings["Mood"] = "Humeur"; $a->strings["Set your current mood and tell your friends"] = "Spécifiez votre humeur du moment, et informez vos amis"; $a->strings["Do you really want to delete this suggestion?"] = "Voulez-vous vraiment supprimer cette suggestion ?"; -$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts"; $a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h."; $a->strings["Ignore/Hide"] = "Ignorer/cacher"; +$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts"; $a->strings["Profile deleted."] = "Profil supprimé."; $a->strings["Profile-"] = "Profil-"; $a->strings["New profile created."] = "Nouveau profil créé."; @@ -1120,6 +1210,7 @@ $a->strings[" - Visit %1\$s's %2\$s"] = "Visiter le %2\$s de %1\$s"; $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour son %2\$s, en modifiant %3\$s."; $a->strings["Hide contacts and friends:"] = "Cacher mes contacts et amis :"; $a->strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher ma liste d'amis / contacts des visiteurs de ce profil ?"; +$a->strings["Show more profile fields:"] = ""; $a->strings["Edit Profile Details"] = "Éditer les détails du profil"; $a->strings["Change Profile Photo"] = "Changer la photo du profil"; $a->strings["View this profile"] = "Voir ce profil"; @@ -1221,6 +1312,8 @@ $a->strings["poke, prod or do other things to somebody"] = "solliciter (poke/... $a->strings["Recipient"] = "Destinataire"; $a->strings["Choose what you wish to do to recipient"] = "Choisissez ce que vous voulez faire au destinataire"; $a->strings["Make this post private"] = "Rendez ce message privé"; +$a->strings["Resubsribing to OStatus contacts"] = ""; +$a->strings["Error"] = ""; $a->strings["Total invitation limit exceeded."] = "La limite d'invitation totale est éxédée."; $a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide."; $a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica"; @@ -1241,7 +1334,6 @@ $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"] = "Vous devrez fournir ce code d'invitation : \$invite_code"; $a->strings["Once you have registered, please connect with me via my profile page at:"] = "Une fois inscrit, connectez-vous à la page de mon profil sur :"; $a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com"; -$a->strings["Contact Photos"] = "Photos du contact"; $a->strings["Photo Albums"] = "Albums photo"; $a->strings["Recent Photos"] = "Photos récentes"; $a->strings["Upload New Photos"] = "Téléverser de nouvelles photos"; @@ -1285,6 +1377,13 @@ $a->strings["Rotate CCW (left)"] = "Tourner dans le sens contraire des aiguilles $a->strings["Private photo"] = "Photo privée"; $a->strings["Public photo"] = "Photo publique"; $a->strings["Share"] = "Partager"; +$a->strings["Attending"] = array( + 0 => "", + 1 => "", +); +$a->strings["Not attending"] = ""; +$a->strings["Might attend"] = ""; +$a->strings["Map"] = ""; $a->strings["Not Extended"] = ""; $a->strings["Account approved."] = "Inscription validée."; $a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s"; @@ -1292,7 +1391,7 @@ $a->strings["Please login."] = "Merci de vous connecter."; $a->strings["Move account"] = "Migrer le compte"; $a->strings["You can import an account from another Friendica server."] = "Vous pouvez importer un compte d'un autre serveur Friendica."; $a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora"; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = ""; $a->strings["Account file"] = "Fichier du compte"; $a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\""; $a->strings["Item not available."] = "Elément non disponible."; @@ -1312,10 +1411,12 @@ $a->strings["terms of service"] = "conditions d'utilisation"; $a->strings["Website Privacy Policy"] = "Politique de confidentialité du site internet"; $a->strings["privacy policy"] = "politique de confidentialité"; $a->strings["This entry was edited"] = "Cette entrée à été édité"; +$a->strings["I will attend"] = ""; +$a->strings["I will not attend"] = ""; +$a->strings["I might attend"] = ""; $a->strings["ignore thread"] = "ignorer le fil"; $a->strings["unignore thread"] = "Ne plus ignorer le fil"; $a->strings["toggle ignore status"] = "Ignorer le statut"; -$a->strings["ignored"] = "ignoré"; $a->strings["Categories:"] = "Catégories:"; $a->strings["Filed under:"] = "Rangé sous:"; $a->strings["via"] = "via"; @@ -1335,7 +1436,6 @@ $a->strings["%d invitation available"] = array( ); $a->strings["Find People"] = "Trouver des personnes"; $a->strings["Enter name or interest"] = "Entrez un nom ou un centre d'intérêt"; -$a->strings["Connect/Follow"] = "Connecter/Suivre"; $a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Pêche"; $a->strings["Similar Interests"] = "Intérêts similaires"; $a->strings["Random Profile"] = "Profil au hasard"; @@ -1348,6 +1448,8 @@ $a->strings["Categories"] = "Catégories"; $a->strings["General Features"] = "Fonctions générales"; $a->strings["Multiple Profiles"] = "Profils multiples"; $a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils"; +$a->strings["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"] = "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"; @@ -1358,6 +1460,8 @@ $a->strings["Add/remove mention when a fourm page is selected/deselected in ACL $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"] = ""; +$a->strings["Enable widget to display the forums your are connected with"] = ""; $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"; @@ -1386,6 +1490,8 @@ $a->strings["Star Posts"] = "Publications spéciales"; $a->strings["Ability to mark special posts with a star indicator"] = "Possibilité de marquer les publications spéciales d'une étoile"; $a->strings["Mute Post Notifications"] = ""; $a->strings["Ability to mute notifications for a thread"] = ""; +$a->strings["Advanced Profile Settings"] = ""; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = ""; $a->strings["Connect URL missing."] = "URL de connexion manquante."; $a->strings["This site is not configured to allow communications with other networks."] = "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux."; $a->strings["No compatible communication protocols or feeds were discovered."] = "Aucun protocole de communication ni aucun flux n'a pu être découvert."; @@ -1402,6 +1508,7 @@ $a->strings["A deleted group with this name was revived. Existing item permissio $a->strings["Default privacy group for new contacts"] = "Paramètres de confidentialité par défaut pour les nouveaux contacts"; $a->strings["Everybody"] = "Tout le monde"; $a->strings["edit"] = "éditer"; +$a->strings["Edit groups"] = ""; $a->strings["Edit group"] = "Editer groupe"; $a->strings["Create a new group"] = "Créer un nouveau groupe"; $a->strings["Contacts not in any group"] = "Contacts n'appartenant à aucun groupe"; @@ -1411,11 +1518,8 @@ $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"; @@ -1428,6 +1532,7 @@ $a->strings["%s's birthday"] = "Anniversaire de %s's"; $a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !"; $a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible."; $a->strings["Edit profile"] = "Editer le profil"; +$a->strings["Atom feed"] = ""; $a->strings["Message"] = "Message"; $a->strings["Profiles"] = "Profils"; $a->strings["Manage/edit profiles"] = "Gérer/éditer les profils"; @@ -1455,6 +1560,7 @@ $a->strings["Film/dance/culture/entertainment:"] = "Cinéma/Danse/Culture/Divert $a->strings["Love/Romance:"] = "Amour/Romance:"; $a->strings["Work/employment:"] = "Activité professionnelle/Occupation:"; $a->strings["School/education:"] = "Études/Formation:"; +$a->strings["Forums:"] = ""; $a->strings["Status"] = "Statut"; $a->strings["Status Messages and Posts"] = "Messages d'état et publications"; $a->strings["Profile Details"] = "Détails du profil"; @@ -1468,19 +1574,20 @@ $a->strings["show"] = "montrer"; $a->strings["don't show"] = "cacher"; $a->strings["[no subject]"] = "[pas de sujet]"; $a->strings["stopped following"] = "retiré de la liste de suivi"; -$a->strings["Poke"] = "Sollicitations (pokes)"; $a->strings["View Status"] = "Voir les statuts"; -$a->strings["View Profile"] = "Voir le profil"; $a->strings["View Photos"] = "Voir les photos"; $a->strings["Network Posts"] = "Publications du réseau"; $a->strings["Edit Contact"] = "Éditer le contact"; $a->strings["Drop Contact"] = "Supprimer le contact"; $a->strings["Send PM"] = "Message privé"; +$a->strings["Poke"] = "Sollicitations (pokes)"; $a->strings["Welcome "] = "Bienvenue "; $a->strings["Please upload a profile photo."] = "Merci d'illustrer votre profil d'une image."; $a->strings["Welcome back "] = "Bienvenue à nouveau, "; $a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé."; -$a->strings["event"] = "évènement"; +$a->strings["%1\$s 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 a sollicité %2\$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"; @@ -1489,12 +1596,21 @@ $a->strings["Delete Selected Items"] = "Supprimer les éléments sélectionnés" $a->strings["Follow Thread"] = "Suivre le fil"; $a->strings["%s likes this."] = "%s aime ça."; $a->strings["%s doesn't like this."] = "%s n'aime pas ça."; -$a->strings["%2\$d people like this"] = "%2\$d personnes aiment ça"; -$a->strings["%2\$d people don't like this"] = "%2\$d personnes n'aiment pas ça"; +$a->strings["%s attends."] = ""; +$a->strings["%s doesn't attend."] = ""; +$a->strings["%s attends maybe."] = ""; $a->strings["and"] = "et"; $a->strings[", and %d other people"] = ", et %d autres personnes"; -$a->strings["%s like this."] = "%s aiment ça."; -$a->strings["%s don't like this."] = "%s n'aiment pas ça."; +$a->strings["%2\$d people like this"] = "%2\$d personnes aiment ça"; +$a->strings["%s like this."] = ""; +$a->strings["%2\$d people don't like this"] = "%2\$d personnes n'aiment pas ça"; +$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"] = "Visible par tout le monde"; $a->strings["Please enter a video link/URL:"] = "Entrez un lien/URL video :"; $a->strings["Please enter an audio link/URL:"] = "Entrez un lien/URL audio :"; @@ -1505,6 +1621,25 @@ $a->strings["permissions"] = "permissions"; $a->strings["Post to Groups"] = "Publier aux groupes"; $a->strings["Post to Contacts"] = "Publier aux contacts"; $a->strings["Private post"] = "Message privé"; +$a->strings["View 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"] = "voir en pleine taille"; $a->strings["newer"] = "Plus récent"; $a->strings["older"] = "Plus ancien"; @@ -1521,7 +1656,6 @@ $a->strings["%d Contact"] = array( ); $a->strings["Full Text"] = ""; $a->strings["Tags"] = ""; -$a->strings["Forums"] = ""; $a->strings["poke"] = "titiller"; $a->strings["poked"] = "a titillé"; $a->strings["ping"] = "attirer l'attention"; @@ -1554,31 +1688,10 @@ $a->strings["frustrated"] = "frustrée"; $a->strings["motivated"] = "motivée"; $a->strings["relaxed"] = "détendue"; $a->strings["surprised"] = "surprise"; -$a->strings["Monday"] = "Lundi"; -$a->strings["Tuesday"] = "Mardi"; -$a->strings["Wednesday"] = "Mercredi"; -$a->strings["Thursday"] = "Jeudi"; -$a->strings["Friday"] = "Vendredi"; -$a->strings["Saturday"] = "Samedi"; -$a->strings["Sunday"] = "Dimanche"; -$a->strings["January"] = "Janvier"; -$a->strings["February"] = "Février"; -$a->strings["March"] = "Mars"; -$a->strings["April"] = "Avril"; -$a->strings["May"] = "Mai"; -$a->strings["June"] = "Juin"; -$a->strings["July"] = "Juillet"; -$a->strings["August"] = "Août"; -$a->strings["September"] = "Septembre"; -$a->strings["October"] = "Octobre"; -$a->strings["November"] = "Novembre"; -$a->strings["December"] = "Décembre"; $a->strings["bytes"] = "octets"; $a->strings["Click to open/close"] = "Cliquer pour ouvrir/fermer"; $a->strings["View on separate page"] = ""; $a->strings["view on separate page"] = ""; -$a->strings["default"] = "défaut"; -$a->strings["Select an alternate language"] = "Choisir une langue alternative"; $a->strings["activity"] = "activité"; $a->strings["post"] = "publication"; $a->strings["Item filed"] = "Élément classé"; @@ -1608,7 +1721,7 @@ $a->strings["Google+"] = "Google+"; $a->strings["pump.io"] = "pump.io"; $a->strings["Twitter"] = "Twitter"; $a->strings["Diaspora Connector"] = "Connecteur Diaspora"; -$a->strings["Statusnet"] = "Statusnet"; +$a->strings["GNU Social"] = ""; $a->strings["App.net"] = "App.net"; $a->strings["Redmatrix"] = ""; $a->strings[" on Last.fm"] = "sur Last.fm"; @@ -1679,6 +1792,7 @@ $a->strings["Nickname is already registered. Please choose another."] = "Pseudo $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["Friends"] = "Amis"; $a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tChère/Cher %1\$s,\n\t\t\tMerci de vous être inscrit sur %2\$s. Votre compte a bien été créé.\n\t"; @@ -1700,7 +1814,6 @@ $a->strings["Hermaphrodite"] = "Hermaphrodite"; $a->strings["Neuter"] = "Neutre"; $a->strings["Non-specific"] = "Non-spécifique"; $a->strings["Other"] = "Autre"; -$a->strings["Undecided"] = "Indécis"; $a->strings["Males"] = "Hommes"; $a->strings["Females"] = "Femmes"; $a->strings["Gay"] = "Gay"; @@ -1747,6 +1860,7 @@ $a->strings["Ask me"] = "Me demander"; $a->strings["Friendica Notification"] = "Notification Friendica"; $a->strings["Thank You,"] = "Merci, "; $a->strings["%s Administrator"] = "L'administrateur de %s"; +$a->strings["%1\$s, %2\$s Administrator"] = ""; $a->strings["%s "] = "%s "; $a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notification] Nouveau courriel reçu sur %s"; $a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s vous a envoyé un nouveau message privé sur %2\$s."; @@ -1845,7 +1959,21 @@ $a->strings["Your personal photos"] = "Vos photos personnelles"; $a->strings["Local Directory"] = "Annuaire local"; $a->strings["Set zoomfactor for Earth Layers"] = "Régler le niveau de zoom pour la géolocalisation"; $a->strings["Show/hide boxes at right-hand column:"] = "Montrer/cacher les boîtes dans la colonne de droite :"; +$a->strings["Midnight"] = ""; +$a->strings["Zenburn"] = ""; +$a->strings["Bootstrap"] = ""; +$a->strings["Shades of Pink"] = ""; +$a->strings["Lime and Orange"] = ""; +$a->strings["GeoCities Retro"] = ""; +$a->strings["Background Image"] = ""; +$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = ""; +$a->strings["Background Color"] = ""; +$a->strings["HEX value for the background color. Don't include the #"] = ""; +$a->strings["font size"] = ""; +$a->strings["base font size for your interface"] = ""; +$a->strings["Comma separated list of helper forums"] = ""; $a->strings["Set style"] = "Définir le style"; +$a->strings["Quick Start"] = ""; $a->strings["greenzero"] = ""; $a->strings["purplezero"] = ""; $a->strings["easterbunny"] = ""; From 49b4be16702d225e88922be6218768d409ad8c70 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 11 Dec 2015 08:04:35 +0100 Subject: [PATCH 416/443] regenerated credits.txt --- util/credits.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/util/credits.txt b/util/credits.txt index a0890ef3d9..ec040e14a8 100644 --- a/util/credits.txt +++ b/util/credits.txt @@ -108,6 +108,7 @@ Oliver Olivier Olivier Migeot Pavel Morozov +Perig Gouanvic peturisfeld Piotr Blonkowski pokerazor From 8d1af68f4417d9b5c1577d472c543afc5c8c5c50 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Fri, 11 Dec 2015 19:38:00 +0100 Subject: [PATCH 417/443] missing frost-mobile event icons --- view/theme/frost-mobile/images/event-attend.png | Bin 0 -> 737 bytes .../frost-mobile/images/event-dontattend.png | Bin 0 -> 803 bytes .../frost-mobile/images/event-maybeattend.png | Bin 0 -> 675 bytes 3 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 view/theme/frost-mobile/images/event-attend.png create mode 100644 view/theme/frost-mobile/images/event-dontattend.png create mode 100644 view/theme/frost-mobile/images/event-maybeattend.png diff --git a/view/theme/frost-mobile/images/event-attend.png b/view/theme/frost-mobile/images/event-attend.png new file mode 100644 index 0000000000000000000000000000000000000000..f555fbb4a90270de38f1b8cc96cba176955f1ed7 GIT binary patch literal 737 zcmV<70v`Q|P)hxK znfcC{XP%i!%4-o0V>3SEQ-!{H*jt4G3?=C&wvMAcxDgGIrbl_%*C*fUSdB(J7Jg;1 zn$d(cRRFTu|G)!bt2CoKBHoL4C05dpZ6)f9)1DgazhFfjj$&q&)#asWI97*w69kZI ze%%BEV8k&~b)!evuVM|MS8%*a%3?nkbK=IENrx+FD5{Io(<+mf8nc{zJuZljZfejP zb=rtu(Ex+kQ3FI4`?V=Vyd48k{+4i_cSqEBYkD&S18%H5EbffT%+|W+deX^o=*f5#e;CI)L}%39%d}qVhRhtY%aT#N;aN zjmd;*zSq9Du(TtZ^TA|NrEKc&ju?ycbjz1hRTgtRg#uFp=|H=}5T7{^XM#$qC z=3S;l*e(Zg%IG_wR|vVOW}z!;zo&8#tQlfG{`mJY>c=J&a6PK;!@>*zqadpJM32%> z^+sG3yg$D9_TzO%h*7Gx9SejzpxWE=QjPOw{u6{ivjMLv^!bQ=H9`z4>k<8cb$C{y zZ4hnvnl}W&H(KzpsQx7Gj1{0(2*PT&;C@o>Od$SCF+^iVn{Nq72X+e2xUpzTT(~TF zX@`-xpSS99KAHD+L2#<}q_GPx1ZT@j1>ufqO3H@{Nv2JBj!n&R@?s6(8qWR&N5Iqq T_kbhv00000NkvXXu0mjfA7w zJn!@Ml8>?2h6Q+omj$}Dur~#r=!(WyEc%D`;B>-4Jg(Ntz9IS@gsJF<>%vy1(SjyS zt3aTv{byVej!Fw&B^bBiQO1{aU`fV&dTgx1{w-STu^mGyd|jz}?=l8)Ow7rVPr$oK=OY$Y@Yg29KpYQO(43(+DUx5Uv=dFjWi%jq z?~jvMm7~8Ndr+5{>w^zPi&P@fg2Ab|MjXPX)ciW^P5HcqdBPo0h)TyXODHl~m({LF zXDxoDWOp&NVBPNHC_@5Th0Z98$QgW3&D|5KVi8KmM2s6kzwt0bHXpqb?@yw+=OulY zPEiqonYdk`^Gw*$$5r^PiUi^7X5)U2yj`La)`|q-UTDsdjTh>|m|BupA*5$fxgU+o zm{H8VWa(q@*CzfRp=n#rn z5<7Eh~DzG(fKGtBV h(6sz3bmA2D{Q`}%1vay-;DZ1F002ovPDHLkV1hqxaclqp literal 0 HcmV?d00001 diff --git a/view/theme/frost-mobile/images/event-maybeattend.png b/view/theme/frost-mobile/images/event-maybeattend.png new file mode 100644 index 0000000000000000000000000000000000000000..16daa320866a4147b5ad646996522fce37c32441 GIT binary patch literal 675 zcmV;U0$lxxP)rE@@zeo5n@A-Yd zzxVk)x2vtS=*Mn+#g{sD^N6KOv4sH<&; z0WdK!D;mU*FkVTGZzId6<8jBd|0k<2OSAtT;4Qjyjsp$@kLw}E!|4MzNpeJ z{D~5bp(h1IGx6Ii5bU3dKnxtun-(x*K zB>X3Z3Ai}&Ez1kyT@8PyaQem?NCVO8oM^{o6Pp}-#>?q~=)iUCjeLJ`6r*VprJBW& z+Hpg;AH)ECc$79-R*3!tz$gymW|m}GhodiHpU(J;S2N9?H=6{Mfi9TrO^#dBS)|$g%OHO1O)Q{{VO Date: Sat, 12 Dec 2015 01:27:31 +0100 Subject: [PATCH 418/443] fix directory search --- mod/directory.php | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/mod/directory.php b/mod/directory.php index cb233db898..484858f34d 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -57,19 +57,19 @@ function directory_content(&$a) { $sql_extra = " AND ((`profile`.`name` LIKE '%$search%') OR (`user`.`nickname` LIKE '%$search%') OR - (`pdesc` LIKE '%$search%') OR - (`locality` LIKE '%$search%') OR - (`region` LIKE '%$search%') OR - (`country-name` LIKE '%$search%') OR - (`gender` LIKE '%$search%') OR - (`marital` LIKE '%$search%') OR - (`sexual` LIKE '%$search%') OR - (`about` LIKE '%$search%') OR - (`romance` LIKE '%$search%') OR - (`work` LIKE '%$search%') OR - (`education` LIKE '%$search%') OR - (`pub_keywords` LIKE '%$search%') OR - (`prv_keywords` LIKE '%$search%'))"; + (`profile`.`pdesc` LIKE '%$search%') OR + (`profile`.`locality` LIKE '%$search%') OR + (`profile`.`region` LIKE '%$search%') OR + (`profile`.`country-name` LIKE '%$search%') OR + (`profile`.`gender` LIKE '%$search%') OR + (`profile`.`marital` LIKE '%$search%') OR + (`profile`.`sexual` LIKE '%$search%') OR + (`profile`.`about` LIKE '%$search%') OR + (`profile`.`romance` LIKE '%$search%') OR + (`profile`.`work` LIKE '%$search%') OR + (`profile`.`education` LIKE '%$search%') OR + (`profile`.`pub_keywords` LIKE '%$search%') OR + (`profile`.`prv_keywords` LIKE '%$search%'))"; } $publish = ((get_config('system','publish_all')) ? '' : " AND `publish` = 1 " ); From a7b37faafdbeb9a0fcc797bb87113fa81b260f02 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sat, 12 Dec 2015 06:23:54 +0100 Subject: [PATCH 419/443] added event icons from frost-mobile to frost --- view/theme/frost/images/event-attend.png | Bin 0 -> 737 bytes view/theme/frost/images/event-dontattend.png | Bin 0 -> 803 bytes view/theme/frost/images/event-maybeattend.png | Bin 0 -> 675 bytes view/theme/frost/style.css | 6 +++--- 4 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 view/theme/frost/images/event-attend.png create mode 100644 view/theme/frost/images/event-dontattend.png create mode 100644 view/theme/frost/images/event-maybeattend.png diff --git a/view/theme/frost/images/event-attend.png b/view/theme/frost/images/event-attend.png new file mode 100644 index 0000000000000000000000000000000000000000..f555fbb4a90270de38f1b8cc96cba176955f1ed7 GIT binary patch literal 737 zcmV<70v`Q|P)hxK znfcC{XP%i!%4-o0V>3SEQ-!{H*jt4G3?=C&wvMAcxDgGIrbl_%*C*fUSdB(J7Jg;1 zn$d(cRRFTu|G)!bt2CoKBHoL4C05dpZ6)f9)1DgazhFfjj$&q&)#asWI97*w69kZI ze%%BEV8k&~b)!evuVM|MS8%*a%3?nkbK=IENrx+FD5{Io(<+mf8nc{zJuZljZfejP zb=rtu(Ex+kQ3FI4`?V=Vyd48k{+4i_cSqEBYkD&S18%H5EbffT%+|W+deX^o=*f5#e;CI)L}%39%d}qVhRhtY%aT#N;aN zjmd;*zSq9Du(TtZ^TA|NrEKc&ju?ycbjz1hRTgtRg#uFp=|H=}5T7{^XM#$qC z=3S;l*e(Zg%IG_wR|vVOW}z!;zo&8#tQlfG{`mJY>c=J&a6PK;!@>*zqadpJM32%> z^+sG3yg$D9_TzO%h*7Gx9SejzpxWE=QjPOw{u6{ivjMLv^!bQ=H9`z4>k<8cb$C{y zZ4hnvnl}W&H(KzpsQx7Gj1{0(2*PT&;C@o>Od$SCF+^iVn{Nq72X+e2xUpzTT(~TF zX@`-xpSS99KAHD+L2#<}q_GPx1ZT@j1>ufqO3H@{Nv2JBj!n&R@?s6(8qWR&N5Iqq T_kbhv00000NkvXXu0mjfA7w zJn!@Ml8>?2h6Q+omj$}Dur~#r=!(WyEc%D`;B>-4Jg(Ntz9IS@gsJF<>%vy1(SjyS zt3aTv{byVej!Fw&B^bBiQO1{aU`fV&dTgx1{w-STu^mGyd|jz}?=l8)Ow7rVPr$oK=OY$Y@Yg29KpYQO(43(+DUx5Uv=dFjWi%jq z?~jvMm7~8Ndr+5{>w^zPi&P@fg2Ab|MjXPX)ciW^P5HcqdBPo0h)TyXODHl~m({LF zXDxoDWOp&NVBPNHC_@5Th0Z98$QgW3&D|5KVi8KmM2s6kzwt0bHXpqb?@yw+=OulY zPEiqonYdk`^Gw*$$5r^PiUi^7X5)U2yj`La)`|q-UTDsdjTh>|m|BupA*5$fxgU+o zm{H8VWa(q@*CzfRp=n#rn z5<7Eh~DzG(fKGtBV h(6sz3bmA2D{Q`}%1vay-;DZ1F002ovPDHLkV1hqxaclqp literal 0 HcmV?d00001 diff --git a/view/theme/frost/images/event-maybeattend.png b/view/theme/frost/images/event-maybeattend.png new file mode 100644 index 0000000000000000000000000000000000000000..16daa320866a4147b5ad646996522fce37c32441 GIT binary patch literal 675 zcmV;U0$lxxP)rE@@zeo5n@A-Yd zzxVk)x2vtS=*Mn+#g{sD^N6KOv4sH<&; z0WdK!D;mU*FkVTGZzId6<8jBd|0k<2OSAtT;4Qjyjsp$@kLw}E!|4MzNpeJ z{D~5bp(h1IGx6Ii5bU3dKnxtun-(x*K zB>X3Z3Ai}&Ez1kyT@8PyaQem?NCVO8oM^{o6Pp}-#>?q~=)iUCjeLJ`6r*VprJBW& z+Hpg;AH)ECc$79-R*3!tz$gymW|m}GhodiHpU(J;S2N9?H=6{Mfi9TrO^#dBS)|$g%OHO1O)Q{{VO Date: Sat, 12 Dec 2015 17:41:25 +0100 Subject: [PATCH 420/443] Code cleaning, real changes will follow --- mod/pubsubhubbub.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mod/pubsubhubbub.php b/mod/pubsubhubbub.php index d6b9bf1e7c..ad75268a94 100644 --- a/mod/pubsubhubbub.php +++ b/mod/pubsubhubbub.php @@ -39,7 +39,7 @@ function pubsubhubbub_init(&$a) { http_status_exit(404); } - logger("pubsubhubbub: $hub_mode request from " . + logger("pubsubhubbub: $hub_mode request from " . $_SERVER['REMOTE_ADDR']); // get the nick name from the topic, a bit hacky but needed @@ -52,9 +52,9 @@ function pubsubhubbub_init(&$a) { // fetch user from database given the nickname $r = q("SELECT * FROM `user` WHERE `nickname` = '%s'" . - " AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1", + " AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1", dbesc($nick)); - + if(!count($r)) { logger('pubsubhubbub: local account not found: ' . $nick); http_status_exit(404); @@ -82,20 +82,20 @@ function pubsubhubbub_init(&$a) { // sanity check that topic URLs are the same if(!link_compare($hub_topic, $contact['poll'])) { - logger('pubsubhubbub: hub topic ' . $hub_topic . ' != ' . + logger('pubsubhubbub: hub topic ' . $hub_topic . ' != ' . $contact['poll']); http_status_exit(404); } // do subscriber verification according to the PuSH protocol $hub_challenge = random_string(40); - $params = 'hub.mode=' . + $params = 'hub.mode=' . ($subscribe == 1 ? 'subscribe' : 'unsubscribe') . '&hub.topic=' . urlencode($hub_topic) . '&hub.challenge=' . $hub_challenge . '&hub.lease_seconds=604800' . '&hub.verify_token=' . $hub_verify_token; - + // lease time is hard coded to one week (in seconds) // we don't actually enforce the lease time because GNU // Social/StatusNet doesn't honour it (yet) From ec9b1b7afd95db31a3488cce9a2793e0edbfab74 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 12 Dec 2015 17:46:24 +0100 Subject: [PATCH 421/443] There is now a fragmentation level for the table optimisation --- include/cron.php | 25 ++++++++++++++++++++----- mod/admin.php | 3 +++ view/templates/admin_site.tpl | 1 + 3 files changed, 24 insertions(+), 5 deletions(-) diff --git a/include/cron.php b/include/cron.php index d95d8bc601..8bf168ed50 100644 --- a/include/cron.php +++ b/include/cron.php @@ -189,24 +189,39 @@ function cron_run(&$argv, &$argc){ q('DELETE FROM `photo` WHERE `uid` = 0 AND `resource-id` LIKE "pic:%%" AND `created` < NOW() - INTERVAL %d SECOND', $cachetime); } - // maximum table size in megabyte + // Maximum table size in megabyte $max_tablesize = intval(get_config('system','optimize_max_tablesize')) * 1000000; if ($max_tablesize == 0) $max_tablesize = 100 * 1000000; // Default are 100 MB + // Minimum fragmentation level in percent + $fragmentation_level = intval(get_config('system','optimize_fragmentation')) / 100; + if ($fragmentation_level == 0) + $fragmentation_level = 0.3; // Default value is 30% + // Optimize some tables that need to be optimized $r = q("SHOW TABLE STATUS"); foreach($r as $table) { - // Don't optimize tables that needn't to be optimized - if ($table["Data_free"] == 0) - continue; - // Don't optimize tables that are too large if ($table["Data_length"] > $max_tablesize) continue; + // Don't optimize empty tables + if ($table["Data_length"] == 0) + continue; + + // Calculate fragmentation + $fragmentation = $table["Data_free"] / $table["Data_length"]; + + logger("Table ".$table["Name"]." - Fragmentation level: ".round($fragmentation * 100, 2), LOGGER_DEBUG); + + // Don't optimize tables that needn't to be optimized + if ($fragmentation < $fragmentation_level) + continue; + // So optimize it + logger("Optimize Table ".$table["Name"], LOGGER_DEBUG); q("OPTIMIZE TABLE `%s`", dbesc($table["Name"])); } diff --git a/mod/admin.php b/mod/admin.php index 8d2a7688f8..9e330fd1dc 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -410,6 +410,7 @@ function admin_page_site_post(&$a){ $maxloadavg = ((x($_POST,'maxloadavg')) ? intval(trim($_POST['maxloadavg'])) : 50); $maxloadavg_frontend = ((x($_POST,'maxloadavg_frontend')) ? intval(trim($_POST['maxloadavg_frontend'])) : 50); $optimize_max_tablesize = ((x($_POST,'optimize_max_tablesize')) ? intval(trim($_POST['optimize_max_tablesize'])): 100); + $optimize_fragmentation = ((x($_POST,'optimize_fragmentation')) ? intval(trim($_POST['optimize_fragmentation'])): 30); $poco_completion = ((x($_POST,'poco_completion')) ? intval(trim($_POST['poco_completion'])) : false); $poco_requery_days = ((x($_POST,'poco_requery_days')) ? intval(trim($_POST['poco_requery_days'])) : 7); $poco_discovery = ((x($_POST,'poco_discovery')) ? intval(trim($_POST['poco_discovery'])) : 0); @@ -492,6 +493,7 @@ function admin_page_site_post(&$a){ set_config('system','maxloadavg',$maxloadavg); set_config('system','maxloadavg_frontend',$maxloadavg_frontend); set_config('system','optimize_max_tablesize',$optimize_max_tablesize); + set_config('system','optimize_fragmentation',$optimize_fragmentation); set_config('system','poco_completion',$poco_completion); set_config('system','poco_requery_days',$poco_requery_days); set_config('system','poco_discovery',$poco_discovery); @@ -775,6 +777,7 @@ function admin_page_site(&$a) { '$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_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.")), '$poco_requery_days' => array('poco_requery_days', t("Days between requery"), get_config('system','poco_requery_days'), t("Number of days after which a server is requeried for his contacts.")), diff --git a/view/templates/admin_site.tpl b/view/templates/admin_site.tpl index c1e70614ce..b08e5f935f 100644 --- a/view/templates/admin_site.tpl +++ b/view/templates/admin_site.tpl @@ -124,6 +124,7 @@ {{include file="field_input.tpl" field=$maxloadavg}} {{include file="field_input.tpl" field=$maxloadavg_frontend}} {{include file="field_input.tpl" field=$optimize_max_tablesize}} + {{include file="field_input.tpl" field=$optimize_fragmentation}} {{include file="field_input.tpl" field=$abandon_days}} {{include file="field_input.tpl" field=$lockpath}} {{include file="field_input.tpl" field=$temppath}} From 5a1041578cdbb1cf9921392c333c14efd6b7e937 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sat, 12 Dec 2015 17:55:57 +0100 Subject: [PATCH 422/443] Bugfix: The subscribe process took the own contact by random ... --- mod/pubsubhubbub.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/pubsubhubbub.php b/mod/pubsubhubbub.php index ad75268a94..5d7621cc74 100644 --- a/mod/pubsubhubbub.php +++ b/mod/pubsubhubbub.php @@ -70,8 +70,8 @@ function pubsubhubbub_init(&$a) { } // get corresponding row from contact table - $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0" . - " AND `pending` = 0 LIMIT 1", + $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND NOT `blocked`". + " AND NOT `pending` AND `self` LIMIT 1", intval($owner['uid'])); if(!count($r)) { logger('pubsubhubbub: contact not found.'); From 4a7d6eb13c7b9b7f8c48be791dbf4045aa6423e0 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 13 Dec 2015 08:09:53 +0100 Subject: [PATCH 423/443] resized icons to 16px --- view/theme/frost/images/event-attend-16.png | Bin 0 -> 615 bytes view/theme/frost/images/event-dontattend-16.png | Bin 0 -> 637 bytes view/theme/frost/images/event-maybeattend-16.png | Bin 0 -> 601 bytes view/theme/frost/style.css | 6 +++--- 4 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 view/theme/frost/images/event-attend-16.png create mode 100644 view/theme/frost/images/event-dontattend-16.png create mode 100644 view/theme/frost/images/event-maybeattend-16.png diff --git a/view/theme/frost/images/event-attend-16.png b/view/theme/frost/images/event-attend-16.png new file mode 100644 index 0000000000000000000000000000000000000000..b96a92aefa75d1dedd87e5de2ef61147173a0775 GIT binary patch literal 615 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6SkfJR9T^xl_H+M9WCijSl0AZa z85pY67#JE_7#My5g&JNkFq9fFFuY1&V6d9Oz#v{QXIG#NP=YDR+ueoXe|!I#{XiaP zfk$L9(5CAk%;=;sy8FJ_wf1S!e6wVl3pTD*^k;h#nP_|8jeC6Z#^-vXc91I zedrj;v!QS7ftqhfcI8x}R$* zyVCaBn_n8gp3j~CD=2zjS6$@A?Sej<-VUAuQ@Z!&94VQQb@GhI+N!lmg&FruZGElN zn&*A5(|BF^+JOJ(@y2bXvE@w~RvR?BT)X$Zw>zDZ#L2nI_(zkvoP@3F(nEfqEDQae zFZbE}bSVA2YRA)w{&AL;Tb=uk+nPRHG)?vRw7+tHc=_5=+;n!l?rPs>xmfr5LEm_n zi`<7%A?{`K(Zxw|k-X>9wDaW^en?ymE2$ z?s?U^A;2(IEpd$~Nl7e8wMs5Z1yT$~28O1(hDN%E#vuk4RtCmaCMMbjhE@g!-w&LB zjiMnpKP5A*61Rr7x#i(N4U!-mg7ec#$`gxH8OqDc^)mCai<1)zQuXqS(r3T3kpe1W N@O1TaS?83{1OVj5=x_i4 literal 0 HcmV?d00001 diff --git a/view/theme/frost/images/event-dontattend-16.png b/view/theme/frost/images/event-dontattend-16.png new file mode 100644 index 0000000000000000000000000000000000000000..56351f25f9bb7b71d72675fed08b496ef88762a0 GIT binary patch literal 637 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6SkfJR9T^xl_H+M9WCijSl0AZa z85pY67#JE_7#My5g&JNkFq9fFFuY1&V6d9Oz#v{QXIG#NP=YDR+ueoXe|!I#{XiaP zfk$L9(5CAk%;=;sy8_Wb9EXWPvU@(v5D%bwk1KJBT(3G3W@bLMR?OLgVD zW1_l#&FVwkySJ&-Rj0+fho9_oxjU=xY(k6 z4=c;Za!bv-ExbDVs*m@!n(yblO*cz+9^pT|Z$}ab&+MR$3)kx}e4@lR8>KAVcm!t?;y5`>3*|Apf2OC7#SFv z>KYp98XAWfSXdbtTbY<>8yH#{7<@l){xyn*-29Zxv`X9>+UAyr12ss3YzWRzD=AMb mN@XZ7FW1Y=%Pvk%EJ)SMFG`>N&PEETh{4m<&t;ucLK6T-(D?fR literal 0 HcmV?d00001 diff --git a/view/theme/frost/images/event-maybeattend-16.png b/view/theme/frost/images/event-maybeattend-16.png new file mode 100644 index 0000000000000000000000000000000000000000..ab6ee336f3a58dee8de8e3cf0b4257afdd3691bc GIT binary patch literal 601 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!60wlNoGJgf6SkfJR9T^xl_H+M9WCijSl0AZa z85pY67#JE_7#My5g&JNkFq9fFFuY1&V6d9Oz#v{QXIG#NP=YDR+ueoXe|!I#{XiaP zfk$L9(5CAk%;=;sy8A0IOVdgwN8KZCK`bFG zjv{-66Z@wol<5|&TmB^U^SwO}4UG>>SRZCn+^%WA_Zv&os<>da*xN-5bS{M$ugeO5 zHG!9X-|4$Q-Z&|3P4-`x=bL0KA=K^QDR6|fzf^)RXtk04(rdchUbCL{WJG*BU2@^W z(U~`v`p(^DD!a2N>$bUi+{R>)iF)tnW?FrBbX7Uja92p_Nm6IIm`d8738(*;I&G{@ z@_e;&)+)0pU9Z-M^qU`BbNkFc-H@#UAbRL?TmEJ zV@t=#`H!a+9-eq#Yi)4)uc^xUw&hCMo{=9pl|p}S_f!byH zRdP`(kYX@0Ff`RQG}1LR4l%H>GBCC>G0`?Kv@$UGe&GCT6b-rgDVb@NxHYuREe{83 wkObKfoS#-wo>-L1P+nfHmzkGcoSayYs+V7sKKq@G6i^X^r>mdKI;Vst0EgGs2mk;8 literal 0 HcmV?d00001 diff --git a/view/theme/frost/style.css b/view/theme/frost/style.css index 10e53e576d..3dd400c76b 100644 --- a/view/theme/frost/style.css +++ b/view/theme/frost/style.css @@ -3828,9 +3828,9 @@ aside input[type='text'] { background-repeat: no-repeat; opacity: 0.4; } -.event-attend-icon { background-image: url('images/event-attend.png'); } -.event-maybeattend-icon { background-image: url('images/event-maybeattend.png'); } -.event-dontattend-icon { background-image: url('images/event-dontattend.png'); } +.event-attend-icon { background-image: url('images/event-attend-16.png'); } +.event-maybeattend-icon { background-image: url('images/event-maybeattend-16.png'); } +.event-dontattend-icon { background-image: url('images/event-dontattend-16.png'); } .filer-icon:hover { opacity: 1.0; From 143e1a4a836e1fe4d05ab5d1c6008aa0198d2db5 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 13 Dec 2015 09:43:47 +0100 Subject: [PATCH 424/443] Bugfix: Warning because of undefined constant --- include/conversation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/conversation.php b/include/conversation.php index 476ae80bea..f2d3cda33b 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -951,7 +951,7 @@ function item_photo_menu($item){ * @param array &$conv_responses (already created with builtin activity structure) * @return void */ -if(! function_exists(builtin_activity_puller)) { +if(! function_exists('builtin_activity_puller')) { function builtin_activity_puller($item, &$conv_responses) { foreach($conv_responses as $mode => $v) { $url = ''; From e0b53aa0ac2eb0886b03202fb52cc915a52b61ad Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Sun, 13 Dec 2015 14:10:18 +0100 Subject: [PATCH 425/443] OStatus: Make sure that mentions are always accepted --- include/ostatus.php | 39 ++++++++++++++++++++++++++++++++++++--- 1 file changed, 36 insertions(+), 3 deletions(-) diff --git a/include/ostatus.php b/include/ostatus.php index 932fc1fa9a..d2d25b76ff 100644 --- a/include/ostatus.php +++ b/include/ostatus.php @@ -1386,6 +1386,8 @@ function ostatus_entry($doc, $item, $owner, $toplevel = false) { xml_add_element($doc, $entry, "published", datetime_convert("UTC","UTC",$item["created"]."+00:00",ATOM_TIME)); xml_add_element($doc, $entry, "updated", datetime_convert("UTC","UTC",$item["edited"]."+00:00",ATOM_TIME)); + $mentioned = array(); + if (($item['parent'] != $item['id']) || ($item['parent-uri'] !== $item['uri']) || (($item['thr-parent'] !== '') && ($item['thr-parent'] !== $item['uri']))) { $parent = q("SELECT `guid` FROM `item` WHERE `id` = %d", intval($item["parent"])); $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']); @@ -1400,7 +1402,18 @@ function ostatus_entry($doc, $item, $owner, $toplevel = false) { "rel" => "related", "href" => $a->get_baseurl()."/display/".$parent[0]["guid"]); xml_add_element($doc, $entry, "link", "", $attributes); - } + + $mentioned[$parent[0]["author-link"]] = $parent[0]["author-link"]; + $mentioned[$parent[0]["owner-link"]] = $parent[0]["owner-link"]; + + $thrparent = q("SELECT `guid`, `author-link`, `owner-link` FROM `item` WHERE `uid` = %d AND `uri` = '%s'", + intval($owner["uid"]), + dbesc($parent_item)); + if ($thrparent) { + $mentioned[$thrparent[0]["author-link"]] = $thrparent[0]["author-link"]; + $mentioned[$thrparent[0]["owner-link"]] = $thrparent[0]["owner-link"]; + } + } xml_add_element($doc, $entry, "link", "", array("rel" => "ostatus:conversation", "href" => $a->get_baseurl()."/display/".$owner["nick"]."/".$item["parent"])); @@ -1411,9 +1424,29 @@ function ostatus_entry($doc, $item, $owner, $toplevel = false) { if(count($tags)) foreach($tags as $t) if ($t[0] == "@") - xml_add_element($doc, $entry, "link", "", array("rel" => "mentioned", + $mentioned[$t[1]] = $t[1]; + + // Make sure that mentions are accepted (GNU Social has problems with mixing HTTP and HTTPS) + $newmentions = array(); + foreach ($mentioned AS $mention) { + $newmentions[str_replace("http://", "https://", $mention)] = str_replace("http://", "https://", $mention); + $newmentions[str_replace("https://", "http://", $mention)] = str_replace("https://", "http://", $mention); + } + $mentioned = $newmentions; + + foreach ($mentioned AS $mention) { + $r = q("SELECT `forum`, `prv` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s'", + intval($owner["uid"]), + dbesc(normalise_link($mention))); + if ($r[0]["forum"] OR $r[0]["prv"]) + xml_add_element($doc, $entry, "link", "", array("rel" => "mentioned", + "ostatus:object-type" => ACTIVITY_OBJ_GROUP, + "href" => $mention)); + else + xml_add_element($doc, $entry, "link", "", array("rel" => "mentioned", "ostatus:object-type" => ACTIVITY_OBJ_PERSON, - "href" => $t[1])); + "href" => $mention)); + } if (!$item["private"]) xml_add_element($doc, $entry, "link", "", array("rel" => "mentioned", From e61d6e030eefa00685020f44601d3363814a5dae Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Mon, 14 Dec 2015 14:12:56 +0100 Subject: [PATCH 426/443] fix account_type --- include/identity.php | 10 +++++----- mod/photos.php | 2 +- mod/videos.php | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/include/identity.php b/include/identity.php index 2230d98a42..b5791ba1e9 100644 --- a/include/identity.php +++ b/include/identity.php @@ -287,11 +287,11 @@ if(! function_exists('profile_sidebar')) { } // check if profile is a forum - if((x($profile['page-flags']) == 2) - || (x($profile['page-flags']) == 5) - || (x($profile['forum'])) - || (x($profile['prv'])) - || (x($profile['community']))) + if((intval($profile['page-flags']) == PAGE_COMMUNITY) + || (intval($profile['page-flags']) == PAGE_PRVGROUP) + || (intval($profile['forum'])) + || (intval($profile['prv'])) + || (intval($profile['community']))) $account_type = t('Forum'); else $account_type = ""; diff --git a/mod/photos.php b/mod/photos.php index 6b97d7d4fb..a9dade6a81 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -37,7 +37,7 @@ function photos_init(&$a) { $profile = get_profiledata_by_nick($nick, $a->profile_uid); - if((x($profile['page-flags']) == 2) || (x($profile['page-flags']) == 5)) + if((intval($profile['page-flags']) == PAGE_COMMUNITY) || (intval($profile['page-flags']) == PAGE_PRVGROUP)) $account_type = t('Forum'); else $account_type = ""; diff --git a/mod/videos.php b/mod/videos.php index 7ea09d6a93..bf8d696b60 100644 --- a/mod/videos.php +++ b/mod/videos.php @@ -33,7 +33,7 @@ function videos_init(&$a) { $profile = get_profiledata_by_nick($nick, $a->profile_uid); - if((x($profile['page-flags']) == 2) || (x($profile['page-flags']) == 5)) + if((intval($profile['page-flags']) == PAGE_COMMUNITY) || (intval($profile['page-flags']) == PAGE_PRVGROUP)) $account_type = t('Forum'); else $account_type = ""; From e97a6dfb77f27c03da63d96a2995891f05856d0c Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 14 Dec 2015 16:27:00 +0100 Subject: [PATCH 427/443] DE update to the strings --- view/de/messages.po | 1304 +++++++++++++++++++++---------------------- view/de/strings.php | 65 +-- 2 files changed, 679 insertions(+), 690 deletions(-) diff --git a/view/de/messages.po b/view/de/messages.po index 5f5b92e292..6a47a710e8 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -32,8 +32,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-30 13:14+0100\n" -"PO-Revision-Date: 2015-12-01 09:46+0000\n" +"POT-Creation-Date: 2015-12-14 07:48+0100\n" +"PO-Revision-Date: 2015-12-14 09:27+0000\n" "Last-Translator: Andreas H.\n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -42,233 +42,182 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: mod/contacts.php:118 +#: mod/contacts.php:50 include/identity.php:380 +msgid "Network:" +msgstr "Netzwerk" + +#: mod/contacts.php:51 mod/contacts.php:986 mod/videos.php:37 +#: mod/viewcontacts.php:105 mod/dirfind.php:208 mod/network.php:596 +#: mod/allfriends.php:72 mod/match.php:82 mod/directory.php:172 +#: mod/common.php:124 mod/suggest.php:95 mod/photos.php:41 +#: include/identity.php:295 +msgid "Forum" +msgstr "Forum" + +#: mod/contacts.php:128 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited" msgstr[0] "%d Kontakt bearbeitet." msgstr[1] "%d Kontakte bearbeitet" -#: mod/contacts.php:149 mod/contacts.php:372 +#: mod/contacts.php:159 mod/contacts.php:382 msgid "Could not access contact record." msgstr "Konnte nicht auf die Kontaktdaten zugreifen." -#: mod/contacts.php:163 +#: mod/contacts.php:173 msgid "Could not locate selected profile." msgstr "Konnte das ausgewählte Profil nicht finden." -#: mod/contacts.php:196 +#: mod/contacts.php:206 msgid "Contact updated." msgstr "Kontakt aktualisiert." -#: mod/contacts.php:198 mod/dfrn_request.php:578 +#: mod/contacts.php:208 mod/dfrn_request.php:578 msgid "Failed to update contact record." msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." -#: mod/contacts.php:354 mod/manage.php:96 mod/display.php:496 +#: mod/contacts.php:364 mod/manage.php:96 mod/display.php:496 #: 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:10 mod/follow.php:72 #: mod/follow.php:137 mod/item.php:169 mod/item.php:185 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:24 mod/notifications.php:69 -#: mod/message.php:45 mod/message.php:181 mod/crepair.php:120 +#: 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:11 mod/events.php:165 mod/wallmessage.php:9 +#: 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:116 mod/settings.php:635 mod/register.php:42 -#: mod/delegate.php:12 mod/common.php:17 mod/mood.php:114 mod/suggest.php:58 +#: mod/settings.php:116 mod/settings.php:637 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:163 mod/photos.php:1097 mod/regmod.php:110 -#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5041 index.php:382 +#: mod/photos.php:171 mod/photos.php:1105 mod/regmod.php:110 +#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5067 index.php:382 msgid "Permission denied." msgstr "Zugriff verweigert." -#: mod/contacts.php:393 +#: mod/contacts.php:403 msgid "Contact has been blocked" msgstr "Kontakt wurde blockiert" -#: mod/contacts.php:393 +#: mod/contacts.php:403 msgid "Contact has been unblocked" msgstr "Kontakt wurde wieder freigegeben" -#: mod/contacts.php:404 +#: mod/contacts.php:414 msgid "Contact has been ignored" msgstr "Kontakt wurde ignoriert" -#: mod/contacts.php:404 +#: mod/contacts.php:414 msgid "Contact has been unignored" msgstr "Kontakt wird nicht mehr ignoriert" -#: mod/contacts.php:416 +#: mod/contacts.php:426 msgid "Contact has been archived" msgstr "Kontakt wurde archiviert" -#: mod/contacts.php:416 +#: mod/contacts.php:426 msgid "Contact has been unarchived" msgstr "Kontakt wurde aus dem Archiv geholt" -#: mod/contacts.php:443 mod/contacts.php:817 +#: mod/contacts.php:453 mod/contacts.php:801 msgid "Do you really want to delete this contact?" msgstr "Möchtest Du wirklich diesen Kontakt löschen?" -#: mod/contacts.php:445 mod/follow.php:105 mod/message.php:216 -#: mod/settings.php:1091 mod/settings.php:1097 mod/settings.php:1105 -#: mod/settings.php:1109 mod/settings.php:1114 mod/settings.php:1120 -#: mod/settings.php:1126 mod/settings.php:1132 mod/settings.php:1158 -#: mod/settings.php:1159 mod/settings.php:1160 mod/settings.php:1161 -#: mod/settings.php:1162 mod/dfrn_request.php:850 mod/register.php:238 +#: mod/contacts.php:455 mod/follow.php:105 mod/message.php:216 +#: mod/settings.php:1094 mod/settings.php:1100 mod/settings.php:1108 +#: mod/settings.php:1112 mod/settings.php:1117 mod/settings.php:1123 +#: mod/settings.php:1129 mod/settings.php:1135 mod/settings.php:1161 +#: mod/settings.php:1162 mod/settings.php:1163 mod/settings.php:1164 +#: mod/settings.php:1165 mod/dfrn_request.php:850 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:4873 +#: mod/profiles.php:687 mod/api.php:105 include/items.php:4899 msgid "Yes" msgstr "Ja" -#: mod/contacts.php:448 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:116 -#: mod/videos.php:123 mod/message.php:219 mod/fbrowser.php:93 -#: mod/fbrowser.php:128 mod/settings.php:649 mod/settings.php:675 -#: mod/dfrn_request.php:864 mod/suggest.php:32 mod/editpost.php:147 -#: mod/photos.php:239 mod/photos.php:328 include/conversation.php:1221 -#: include/items.php:4876 +#: mod/contacts.php:458 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:116 +#: mod/videos.php:131 mod/message.php:219 mod/fbrowser.php:93 +#: mod/fbrowser.php:128 mod/settings.php:651 mod/settings.php:677 +#: mod/dfrn_request.php:864 mod/suggest.php:32 mod/editpost.php:148 +#: mod/photos.php:247 mod/photos.php:336 include/conversation.php:1221 +#: include/items.php:4902 msgid "Cancel" msgstr "Abbrechen" -#: mod/contacts.php:460 +#: mod/contacts.php:470 msgid "Contact has been removed." msgstr "Kontakt wurde entfernt." -#: mod/contacts.php:498 +#: mod/contacts.php:511 #, php-format msgid "You are mutual friends with %s" msgstr "Du hast mit %s eine beidseitige Freundschaft" -#: mod/contacts.php:502 +#: mod/contacts.php:515 #, php-format msgid "You are sharing with %s" msgstr "Du teilst mit %s" -#: mod/contacts.php:507 +#: mod/contacts.php:520 #, php-format msgid "%s is sharing with you" msgstr "%s teilt mit Dir" -#: mod/contacts.php:527 +#: mod/contacts.php:540 msgid "Private communications are not available for this contact." msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." -#: mod/contacts.php:530 mod/admin.php:645 +#: mod/contacts.php:543 mod/admin.php:645 msgid "Never" msgstr "Niemals" -#: mod/contacts.php:534 +#: mod/contacts.php:547 msgid "(Update was successful)" msgstr "(Aktualisierung war erfolgreich)" -#: mod/contacts.php:534 +#: mod/contacts.php:547 msgid "(Update was not successful)" msgstr "(Aktualisierung war nicht erfolgreich)" -#: mod/contacts.php:536 +#: mod/contacts.php:549 msgid "Suggest friends" msgstr "Kontakte vorschlagen" -#: mod/contacts.php:540 +#: mod/contacts.php:553 #, php-format msgid "Network type: %s" msgstr "Netzwerktyp: %s" -#: mod/contacts.php:543 include/contact_widgets.php:237 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d gemeinsamer Kontakt" -msgstr[1] "%d gemeinsame Kontakte" - -#: mod/contacts.php:548 -msgid "View all contacts" -msgstr "Alle Kontakte anzeigen" - -#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:821 -#: mod/admin.php:1117 -msgid "Unblock" -msgstr "Entsperren" - -#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:821 -#: mod/admin.php:1116 -msgid "Block" -msgstr "Sperren" - -#: mod/contacts.php:556 -msgid "Toggle Blocked status" -msgstr "Geblockt-Status ein-/ausschalten" - -#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:822 -msgid "Unignore" -msgstr "Ignorieren aufheben" - -#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:822 -#: mod/notifications.php:54 mod/notifications.php:179 -#: mod/notifications.php:259 -msgid "Ignore" -msgstr "Ignorieren" - -#: mod/contacts.php:564 -msgid "Toggle Ignored status" -msgstr "Ignoriert-Status ein-/ausschalten" - -#: mod/contacts.php:570 mod/contacts.php:823 -msgid "Unarchive" -msgstr "Aus Archiv zurückholen" - -#: mod/contacts.php:570 mod/contacts.php:823 -msgid "Archive" -msgstr "Archivieren" - -#: mod/contacts.php:573 -msgid "Toggle Archive status" -msgstr "Archiviert-Status ein-/ausschalten" - -#: mod/contacts.php:578 -msgid "Repair" -msgstr "Reparieren" - -#: mod/contacts.php:581 -msgid "Advanced Contact Settings" -msgstr "Fortgeschrittene Kontakteinstellungen" - -#: mod/contacts.php:589 +#: mod/contacts.php:566 msgid "Communications lost with this contact!" msgstr "Verbindungen mit diesem Kontakt verloren!" -#: mod/contacts.php:592 +#: mod/contacts.php:569 msgid "Fetch further information for feeds" msgstr "Weitere Informationen zu Feeds holen" -#: mod/contacts.php:593 mod/admin.php:654 +#: mod/contacts.php:570 mod/admin.php:654 msgid "Disabled" msgstr "Deaktiviert" -#: mod/contacts.php:593 +#: mod/contacts.php:570 msgid "Fetch information" msgstr "Beziehe Information" -#: mod/contacts.php:593 +#: mod/contacts.php:570 msgid "Fetch information and keywords" msgstr "Beziehe Information und Schlüsselworte" -#: mod/contacts.php:606 -msgid "Contact Editor" -msgstr "Kontakt Editor" - -#: mod/contacts.php:608 mod/manage.php:143 mod/fsuggest.php:107 -#: mod/message.php:342 mod/message.php:525 mod/crepair.php:195 +#: mod/contacts.php:586 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:1129 mod/photos.php:1253 mod/photos.php:1571 -#: mod/photos.php:1622 mod/photos.php:1670 mod/photos.php:1758 +#: 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 @@ -277,208 +226,303 @@ msgstr "Kontakt Editor" msgid "Submit" msgstr "Senden" -#: mod/contacts.php:609 +#: mod/contacts.php:587 msgid "Profile Visibility" msgstr "Profil-Sichtbarkeit" -#: mod/contacts.php:610 +#: mod/contacts.php:588 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft." -#: mod/contacts.php:611 +#: mod/contacts.php:589 msgid "Contact Information / Notes" msgstr "Kontakt Informationen / Notizen" -#: mod/contacts.php:612 +#: mod/contacts.php:590 msgid "Edit contact notes" msgstr "Notizen zum Kontakt bearbeiten" -#: mod/contacts.php:617 mod/contacts.php:861 mod/viewcontacts.php:77 +#: mod/contacts.php:595 mod/contacts.php:977 mod/viewcontacts.php:97 #: mod/nogroup.php:41 #, php-format msgid "Visit %s's profile [%s]" msgstr "Besuche %ss Profil [%s]" -#: mod/contacts.php:618 +#: mod/contacts.php:596 msgid "Block/Unblock contact" msgstr "Kontakt blockieren/freischalten" -#: mod/contacts.php:619 +#: mod/contacts.php:597 msgid "Ignore contact" msgstr "Ignoriere den Kontakt" -#: mod/contacts.php:620 +#: mod/contacts.php:598 msgid "Repair URL settings" msgstr "URL Einstellungen reparieren" -#: mod/contacts.php:621 +#: mod/contacts.php:599 msgid "View conversations" msgstr "Unterhaltungen anzeigen" -#: mod/contacts.php:623 +#: mod/contacts.php:601 msgid "Delete contact" msgstr "Lösche den Kontakt" -#: mod/contacts.php:627 +#: mod/contacts.php:605 msgid "Last update:" msgstr "Letzte Aktualisierung: " -#: mod/contacts.php:629 +#: mod/contacts.php:607 msgid "Update public posts" msgstr "Öffentliche Beiträge aktualisieren" -#: mod/contacts.php:631 mod/admin.php:1653 +#: mod/contacts.php:609 mod/admin.php:1653 msgid "Update now" msgstr "Jetzt aktualisieren" -#: mod/contacts.php:633 mod/dirfind.php:190 mod/allfriends.php:67 +#: mod/contacts.php:611 mod/dirfind.php:190 mod/allfriends.php:60 #: mod/match.php:71 mod/suggest.php:82 include/contact_widgets.php:32 #: include/Contact.php:321 include/conversation.php:924 msgid "Connect/Follow" msgstr "Verbinden/Folgen" -#: mod/contacts.php:640 +#: mod/contacts.php:614 mod/contacts.php:805 mod/contacts.php:864 +#: mod/admin.php:1117 +msgid "Unblock" +msgstr "Entsperren" + +#: mod/contacts.php:614 mod/contacts.php:805 mod/contacts.php:864 +#: mod/admin.php:1116 +msgid "Block" +msgstr "Sperren" + +#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:871 +msgid "Unignore" +msgstr "Ignorieren aufheben" + +#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:871 +#: mod/notifications.php:54 mod/notifications.php:179 +#: mod/notifications.php:259 +msgid "Ignore" +msgstr "Ignorieren" + +#: mod/contacts.php:618 msgid "Currently blocked" msgstr "Derzeit geblockt" -#: mod/contacts.php:641 +#: mod/contacts.php:619 msgid "Currently ignored" msgstr "Derzeit ignoriert" -#: mod/contacts.php:642 +#: mod/contacts.php:620 msgid "Currently archived" msgstr "Momentan archiviert" -#: mod/contacts.php:643 mod/notifications.php:172 mod/notifications.php:251 +#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:251 msgid "Hide this contact from others" msgstr "Verbirg diesen Kontakt vor andere" -#: mod/contacts.php:643 +#: mod/contacts.php:621 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein" -#: mod/contacts.php:644 +#: mod/contacts.php:622 msgid "Notification for new posts" msgstr "Benachrichtigung bei neuen Beiträgen" -#: mod/contacts.php:644 +#: mod/contacts.php:622 msgid "Send a notification of every new post of this contact" msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt." -#: mod/contacts.php:647 +#: mod/contacts.php:625 msgid "Blacklisted keywords" msgstr "Blacklistete Schlüsselworte " -#: mod/contacts.php:647 +#: mod/contacts.php:625 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde" -#: mod/contacts.php:654 mod/follow.php:121 mod/notifications.php:255 +#: mod/contacts.php:632 mod/follow.php:121 mod/notifications.php:255 msgid "Profile URL" msgstr "Profil URL" -#: mod/contacts.php:700 +#: mod/contacts.php:635 mod/follow.php:125 mod/notifications.php:244 +#: mod/events.php:566 mod/directory.php:145 include/identity.php:304 +#: include/bb2diaspora.php:170 include/event.php:36 include/event.php:60 +msgid "Location:" +msgstr "Ort:" + +#: mod/contacts.php:637 mod/follow.php:127 mod/notifications.php:246 +#: mod/directory.php:153 include/identity.php:313 include/identity.php:621 +msgid "About:" +msgstr "Über:" + +#: mod/contacts.php:639 mod/follow.php:129 mod/notifications.php:248 +#: include/identity.php:615 +msgid "Tags:" +msgstr "Tags" + +#: mod/contacts.php:684 msgid "Suggestions" msgstr "Kontaktvorschläge" -#: mod/contacts.php:703 +#: mod/contacts.php:687 msgid "Suggest potential friends" msgstr "Freunde vorschlagen" -#: mod/contacts.php:708 mod/group.php:192 +#: mod/contacts.php:692 mod/group.php:192 msgid "All Contacts" msgstr "Alle Kontakte" -#: mod/contacts.php:711 +#: mod/contacts.php:695 msgid "Show all contacts" msgstr "Alle Kontakte anzeigen" -#: mod/contacts.php:716 +#: mod/contacts.php:700 msgid "Unblocked" msgstr "Ungeblockt" -#: mod/contacts.php:719 +#: mod/contacts.php:703 msgid "Only show unblocked contacts" msgstr "Nur nicht-blockierte Kontakte anzeigen" -#: mod/contacts.php:725 +#: mod/contacts.php:709 msgid "Blocked" msgstr "Geblockt" -#: mod/contacts.php:728 +#: mod/contacts.php:712 msgid "Only show blocked contacts" msgstr "Nur blockierte Kontakte anzeigen" -#: mod/contacts.php:734 +#: mod/contacts.php:718 msgid "Ignored" msgstr "Ignoriert" -#: mod/contacts.php:737 +#: mod/contacts.php:721 msgid "Only show ignored contacts" msgstr "Nur ignorierte Kontakte anzeigen" -#: mod/contacts.php:743 +#: mod/contacts.php:727 msgid "Archived" msgstr "Archiviert" -#: mod/contacts.php:746 +#: mod/contacts.php:730 msgid "Only show archived contacts" msgstr "Nur archivierte Kontakte anzeigen" -#: mod/contacts.php:752 +#: mod/contacts.php:736 msgid "Hidden" msgstr "Verborgen" -#: mod/contacts.php:755 +#: mod/contacts.php:739 msgid "Only show hidden contacts" msgstr "Nur verborgene Kontakte anzeigen" -#: mod/contacts.php:808 include/text.php:1012 include/nav.php:123 -#: include/nav.php:187 view/theme/diabook/theme.php:125 +#: mod/contacts.php:792 mod/contacts.php:840 mod/viewcontacts.php:116 +#: include/identity.php:732 include/identity.php:735 include/text.php:1012 +#: include/nav.php:123 include/nav.php:187 view/theme/diabook/theme.php:125 msgid "Contacts" msgstr "Kontakte" -#: mod/contacts.php:812 +#: mod/contacts.php:796 msgid "Search your contacts" msgstr "Suche in deinen Kontakten" -#: mod/contacts.php:813 +#: mod/contacts.php:797 msgid "Finding: " msgstr "Funde: " -#: mod/contacts.php:814 mod/directory.php:202 include/contact_widgets.php:34 +#: mod/contacts.php:798 mod/directory.php:210 include/contact_widgets.php:34 msgid "Find" msgstr "Finde" -#: mod/contacts.php:820 mod/settings.php:146 mod/settings.php:674 +#: mod/contacts.php:804 mod/settings.php:146 mod/settings.php:676 msgid "Update" msgstr "Aktualisierungen" -#: mod/contacts.php:824 mod/group.php:171 mod/admin.php:1115 -#: mod/content.php:440 mod/content.php:743 mod/settings.php:711 -#: mod/photos.php:1715 object/Item.php:134 include/conversation.php:635 +#: mod/contacts.php:807 mod/contacts.php:878 +msgid "Archive" +msgstr "Archivieren" + +#: mod/contacts.php:807 mod/contacts.php:878 +msgid "Unarchive" +msgstr "Aus Archiv zurückholen" + +#: mod/contacts.php:808 mod/group.php:171 mod/admin.php:1115 +#: mod/content.php:440 mod/content.php:743 mod/settings.php:713 +#: mod/photos.php:1723 object/Item.php:134 include/conversation.php:635 msgid "Delete" msgstr "Löschen" -#: mod/contacts.php:837 +#: mod/contacts.php:821 include/identity.php:677 include/nav.php:75 +msgid "Status" +msgstr "Status" + +#: mod/contacts.php:824 include/identity.php:680 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" + +#: mod/contacts.php:829 mod/profperm.php:104 mod/newmember.php:32 +#: include/identity.php:569 include/identity.php:655 include/identity.php:685 +#: include/nav.php:76 view/theme/diabook/theme.php:124 +msgid "Profile" +msgstr "Profil" + +#: mod/contacts.php:832 include/identity.php:688 +msgid "Profile Details" +msgstr "Profildetails" + +#: mod/contacts.php:843 +msgid "View all contacts" +msgstr "Alle Kontakte anzeigen" + +#: mod/contacts.php:849 mod/common.php:135 +msgid "Common Friends" +msgstr "Gemeinsame Freunde" + +#: mod/contacts.php:852 +msgid "View all common friends" +msgstr "Alle Kontakte anzeigen" + +#: mod/contacts.php:856 +msgid "Repair" +msgstr "Reparieren" + +#: mod/contacts.php:859 +msgid "Advanced Contact Settings" +msgstr "Fortgeschrittene Kontakteinstellungen" + +#: mod/contacts.php:867 +msgid "Toggle Blocked status" +msgstr "Geblockt-Status ein-/ausschalten" + +#: mod/contacts.php:874 +msgid "Toggle Ignored status" +msgstr "Ignoriert-Status ein-/ausschalten" + +#: mod/contacts.php:881 +msgid "Toggle Archive status" +msgstr "Archiviert-Status ein-/ausschalten" + +#: mod/contacts.php:949 msgid "Mutual Friendship" msgstr "Beidseitige Freundschaft" -#: mod/contacts.php:841 +#: mod/contacts.php:953 msgid "is a fan of yours" msgstr "ist ein Fan von dir" -#: mod/contacts.php:845 +#: mod/contacts.php:957 msgid "you are a fan of" msgstr "Du bist Fan von" -#: mod/contacts.php:862 mod/nogroup.php:42 +#: mod/contacts.php:978 mod/nogroup.php:42 msgid "Edit contact" msgstr "Kontakt bearbeiten" @@ -516,13 +560,7 @@ msgstr "Ungültiger Profil-Bezeichner." msgid "Profile Visibility Editor" msgstr "Editor für die Profil-Sichtbarkeit" -#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:542 -#: include/identity.php:628 include/identity.php:658 include/nav.php:76 -#: view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "Profil" - -#: mod/profperm.php:106 mod/group.php:222 +#: mod/profperm.php:106 mod/group.php:223 msgid "Click on a contact to add or remove." msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" @@ -536,13 +574,13 @@ msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" #: mod/display.php:82 mod/display.php:283 mod/display.php:500 #: mod/viewsrc.php:15 mod/admin.php:196 mod/admin.php:1160 mod/admin.php:1381 -#: mod/notice.php:15 include/items.php:4832 +#: mod/notice.php:15 include/items.php:4858 msgid "Item not found." msgstr "Beitrag nicht gefunden." -#: mod/display.php:211 mod/videos.php:189 mod/viewcontacts.php:19 +#: mod/display.php:211 mod/videos.php:197 mod/viewcontacts.php:35 #: mod/community.php:18 mod/dfrn_request.php:779 mod/search.php:93 -#: mod/search.php:99 mod/directory.php:37 mod/photos.php:968 +#: mod/search.php:99 mod/directory.php:37 mod/photos.php:976 msgid "Public access denied." msgstr "Öffentlicher Zugriff verweigert." @@ -768,9 +806,9 @@ msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl." #: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 #: mod/profile_photo.php:210 mod/profile_photo.php:302 -#: mod/profile_photo.php:311 mod/photos.php:70 mod/photos.php:184 -#: mod/photos.php:767 mod/photos.php:1237 mod/photos.php:1260 -#: mod/photos.php:1854 include/user.php:345 include/user.php:352 +#: 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 "Profilbilder" @@ -791,12 +829,12 @@ msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue msgid "Unable to process image" msgstr "Bild konnte nicht verarbeitet werden" -#: mod/profile_photo.php:150 mod/wall_upload.php:151 mod/photos.php:803 +#: mod/profile_photo.php:150 mod/wall_upload.php:151 mod/photos.php:811 #, php-format msgid "Image exceeds size limit of %s" msgstr "Bildgröße überschreitet das Limit von %s" -#: mod/profile_photo.php:159 mod/wall_upload.php:183 mod/photos.php:843 +#: mod/profile_photo.php:159 mod/wall_upload.php:183 mod/photos.php:851 msgid "Unable to process image." msgstr "Konnte das Bild nicht bearbeiten." @@ -840,13 +878,13 @@ msgstr "Bearbeitung abgeschlossen" msgid "Image uploaded successfully." msgstr "Bild erfolgreich hochgeladen." -#: mod/profile_photo.php:307 mod/wall_upload.php:216 mod/photos.php:870 +#: mod/profile_photo.php:307 mod/wall_upload.php:216 mod/photos.php:878 msgid "Image upload failed." msgstr "Hochladen des Bildes gescheitert." #: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 #: include/conversation.php:130 include/conversation.php:266 -#: include/text.php:1995 include/diaspora.php:2140 +#: include/text.php:1993 include/diaspora.php:2146 #: view/theme/diabook/theme.php:471 msgid "photo" msgstr "Foto" @@ -854,7 +892,7 @@ msgstr "Foto" #: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 mod/like.php:346 #: include/conversation.php:125 include/conversation.php:134 #: include/conversation.php:261 include/conversation.php:270 -#: include/diaspora.php:2140 view/theme/diabook/theme.php:466 +#: include/diaspora.php:2146 view/theme/diabook/theme.php:466 #: view/theme/diabook/theme.php:475 msgid "status" msgstr "Status" @@ -925,7 +963,7 @@ msgstr "In diesem Ordner speichern:" msgid "- select -" msgstr "- auswählen -" -#: mod/filer.php:31 mod/editpost.php:108 mod/notes.php:61 +#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:61 #: include/text.php:1004 msgid "Save" msgstr "Speichern" @@ -959,11 +997,11 @@ msgstr "Bitte beantworte folgendes:" msgid "Does %s know you?" msgstr "Kennt %s Dich?" -#: mod/follow.php:105 mod/settings.php:1091 mod/settings.php:1097 -#: mod/settings.php:1105 mod/settings.php:1109 mod/settings.php:1114 -#: mod/settings.php:1120 mod/settings.php:1126 mod/settings.php:1132 -#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160 -#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:850 +#: mod/follow.php:105 mod/settings.php:1094 mod/settings.php:1100 +#: mod/settings.php:1108 mod/settings.php:1112 mod/settings.php:1117 +#: mod/settings.php:1123 mod/settings.php:1129 mod/settings.php:1135 +#: mod/settings.php:1161 mod/settings.php:1162 mod/settings.php:1163 +#: mod/settings.php:1164 mod/settings.php:1165 mod/dfrn_request.php:850 #: mod/register.php:239 mod/profiles.php:658 mod/profiles.php:662 #: mod/profiles.php:687 mod/api.php:106 msgid "No" @@ -977,21 +1015,6 @@ msgstr "Eine persönliche Notiz beifügen:" msgid "Your Identity Address:" msgstr "Adresse Deines Profils:" -#: mod/follow.php:125 mod/notifications.php:244 mod/events.php:566 -#: mod/directory.php:139 include/identity.php:278 include/bb2diaspora.php:170 -#: include/event.php:36 include/event.php:60 -msgid "Location:" -msgstr "Ort:" - -#: mod/follow.php:127 mod/notifications.php:246 mod/directory.php:147 -#: include/identity.php:287 include/identity.php:594 -msgid "About:" -msgstr "Über:" - -#: mod/follow.php:129 mod/notifications.php:248 include/identity.php:588 -msgid "Tags:" -msgstr "Tags" - #: mod/follow.php:162 msgid "Contact added" msgstr "Kontakt hinzugefügt" @@ -1081,6 +1104,10 @@ msgstr "Gruppeneditor" msgid "Members" msgstr "Mitglieder" +#: mod/group.php:193 mod/network.php:563 mod/content.php:130 +msgid "Group is empty" +msgstr "Gruppe ist leer" + #: mod/apps.php:7 index.php:225 msgid "You must be logged in to use addons. " msgstr "Sie müssen angemeldet sein um Addons benutzen zu können." @@ -1099,7 +1126,7 @@ msgid "Profile not found." msgstr "Profil nicht gefunden." #: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 -#: mod/crepair.php:134 +#: mod/crepair.php:131 msgid "Contact not found." msgstr "Kontakt nicht gefunden." @@ -1179,7 +1206,7 @@ msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werd msgid "Unable to update your contact profile details on our system" msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden" -#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:734 include/items.php:4244 +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:734 include/items.php:4270 msgid "[Name Withheld]" msgstr "[Name unterdrückt]" @@ -1188,7 +1215,7 @@ msgstr "[Name unterdrückt]" msgid "%1$s has joined %2$s" msgstr "%1$s ist %2$s beigetreten" -#: mod/profile.php:21 include/identity.php:82 +#: mod/profile.php:21 include/identity.php:52 msgid "Requested profile is not available." msgstr "Das angefragte Profil ist nicht vorhanden." @@ -1196,35 +1223,35 @@ msgstr "Das angefragte Profil ist nicht vorhanden." msgid "Tips for New Members" msgstr "Tipps für neue Nutzer" -#: mod/videos.php:115 +#: mod/videos.php:123 msgid "Do you really want to delete this video?" msgstr "Möchtest Du dieses Video wirklich löschen?" -#: mod/videos.php:120 +#: mod/videos.php:128 msgid "Delete Video" msgstr "Video Löschen" -#: mod/videos.php:199 +#: mod/videos.php:207 msgid "No videos selected" msgstr "Keine Videos ausgewählt" -#: mod/videos.php:300 mod/photos.php:1079 +#: mod/videos.php:308 mod/photos.php:1087 msgid "Access to this item is restricted." msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." -#: mod/videos.php:375 include/text.php:1465 +#: mod/videos.php:383 include/text.php:1465 msgid "View Video" msgstr "Video ansehen" -#: mod/videos.php:382 mod/photos.php:1882 +#: mod/videos.php:390 mod/photos.php:1890 msgid "View Album" msgstr "Album betrachten" -#: mod/videos.php:391 +#: mod/videos.php:399 msgid "Recent Videos" msgstr "Neueste Videos" -#: mod/videos.php:393 +#: mod/videos.php:401 msgid "Upload New Videos" msgstr "Neues Video hochladen" @@ -1248,7 +1275,7 @@ msgstr "Schlage %s einen Kontakt vor" #: 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:1711 +#: mod/wall_attach.php:25 mod/wall_attach.php:76 include/api.php:1733 msgid "Invalid request." msgstr "Ungültige Anfrage" @@ -1304,7 +1331,7 @@ msgid "" "Password reset failed." msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." -#: mod/lostpass.php:109 boot.php:1295 +#: mod/lostpass.php:109 boot.php:1307 msgid "Password Reset" msgstr "Passwort zurücksetzen" @@ -1379,11 +1406,11 @@ msgid "Reset" msgstr "Zurücksetzen" #: mod/like.php:170 include/conversation.php:122 include/conversation.php:258 -#: include/text.php:1993 view/theme/diabook/theme.php:463 +#: include/text.php:1991 view/theme/diabook/theme.php:463 msgid "event" msgstr "Event" -#: mod/like.php:187 include/conversation.php:141 include/diaspora.php:2156 +#: mod/like.php:187 include/conversation.php:141 include/diaspora.php:2162 #: view/theme/diabook/theme.php:480 #, php-format msgid "%1$s likes %2$s's %3$s" @@ -1409,32 +1436,22 @@ msgstr "%1$s nimmt nicht an %2$ss %3$s teil." msgid "%1$s may attend %2$s's %3$s" msgstr "%1$s nimmt eventuell an %2$ss %3$s teil." -#: mod/ping.php:273 +#: mod/ping.php:265 msgid "{0} wants to be your friend" msgstr "{0} möchte mit Dir in Kontakt treten" -#: mod/ping.php:288 +#: mod/ping.php:280 msgid "{0} sent you a message" msgstr "{0} schickte Dir eine Nachricht" -#: mod/ping.php:303 +#: mod/ping.php:295 msgid "{0} requested registration" msgstr "{0} möchte sich registrieren" -#: mod/viewcontacts.php:52 +#: mod/viewcontacts.php:72 msgid "No contacts." msgstr "Keine Kontakte." -#: mod/viewcontacts.php:85 mod/dirfind.php:208 mod/network.php:596 -#: mod/allfriends.php:79 mod/match.php:82 mod/common.php:122 -#: mod/suggest.php:95 -msgid "Forum" -msgstr "Forum" - -#: mod/viewcontacts.php:96 include/text.php:921 -msgid "View Contacts" -msgstr "Kontakte anzeigen" - #: mod/notifications.php:29 msgid "Invalid request identifier." msgstr "Invalid request identifier." @@ -1544,8 +1561,8 @@ msgstr "Kontakt-/Freundschaftsanfrage" msgid "New Follower" msgstr "Neuer Bewunderer" -#: mod/notifications.php:250 mod/directory.php:141 include/identity.php:280 -#: include/identity.php:553 +#: mod/notifications.php:250 mod/directory.php:147 include/identity.php:306 +#: include/identity.php:580 msgid "Gender:" msgstr "Geschlecht:" @@ -1738,18 +1755,18 @@ msgid "Your message:" msgstr "Deine Nachricht:" #: mod/message.php:339 mod/message.php:523 mod/wallmessage.php:154 -#: mod/editpost.php:109 include/conversation.php:1184 +#: mod/editpost.php:110 include/conversation.php:1184 msgid "Upload photo" msgstr "Foto hochladen" #: mod/message.php:340 mod/message.php:524 mod/wallmessage.php:155 -#: mod/editpost.php:113 include/conversation.php:1188 +#: mod/editpost.php:114 include/conversation.php:1188 msgid "Insert web link" msgstr "Einen Link einfügen" #: mod/message.php:341 mod/message.php:526 mod/content.php:501 -#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:123 -#: mod/photos.php:1602 object/Item.php:396 include/conversation.php:713 +#: 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:1202 msgid "Please wait" msgstr "Bitte warten" @@ -1811,103 +1828,99 @@ msgstr[1] "%d Nachrichten" msgid "[Embedded content - reload page to view]" msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]" -#: mod/crepair.php:107 +#: mod/crepair.php:104 msgid "Contact settings applied." msgstr "Einstellungen zum Kontakt angewandt." -#: mod/crepair.php:109 +#: mod/crepair.php:106 msgid "Contact update failed." msgstr "Konnte den Kontakt nicht aktualisieren." -#: mod/crepair.php:140 +#: 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 "ACHTUNG: Das sind Experten-Einstellungen! Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." -#: mod/crepair.php:141 +#: mod/crepair.php:138 msgid "" "Please use your browser 'Back' button now if you are " "uncertain what to do on this page." msgstr "Bitte nutze den Zurück-Button Deines Browsers jetzt, wenn Du Dir unsicher bist, was Du tun willst." -#: mod/crepair.php:154 mod/crepair.php:156 +#: mod/crepair.php:151 mod/crepair.php:153 msgid "No mirroring" msgstr "Kein Spiegeln" -#: mod/crepair.php:154 +#: mod/crepair.php:151 msgid "Mirror as forwarded posting" msgstr "Spiegeln als weitergeleitete Beiträge" -#: mod/crepair.php:154 mod/crepair.php:156 +#: mod/crepair.php:151 mod/crepair.php:153 msgid "Mirror as my own posting" msgstr "Spiegeln als meine eigenen Beiträge" -#: mod/crepair.php:162 -msgid "Repair Contact Settings" -msgstr "Kontakteinstellungen reparieren" - -#: mod/crepair.php:166 +#: mod/crepair.php:167 msgid "Return to contact editor" msgstr "Zurück zum Kontakteditor" -#: mod/crepair.php:168 +#: mod/crepair.php:169 msgid "Refetch contact data" msgstr "Kontaktdaten neu laden" -#: mod/crepair.php:169 mod/admin.php:1111 mod/admin.php:1123 -#: mod/admin.php:1124 mod/admin.php:1137 mod/settings.php:650 -#: mod/settings.php:676 +#: mod/crepair.php:170 mod/admin.php:1111 mod/admin.php:1123 +#: mod/admin.php:1124 mod/admin.php:1137 mod/settings.php:652 +#: mod/settings.php:678 msgid "Name" msgstr "Name" -#: mod/crepair.php:170 +#: mod/crepair.php:171 msgid "Account Nickname" msgstr "Konto-Spitzname" -#: mod/crepair.php:171 +#: mod/crepair.php:172 msgid "@Tagname - overrides Name/Nickname" msgstr "@Tagname - überschreibt Name/Spitzname" -#: mod/crepair.php:172 +#: mod/crepair.php:173 msgid "Account URL" msgstr "Konto-URL" -#: mod/crepair.php:173 +#: mod/crepair.php:174 msgid "Friend Request URL" msgstr "URL für Freundschaftsanfragen" -#: mod/crepair.php:174 +#: mod/crepair.php:175 msgid "Friend Confirm URL" msgstr "URL für Bestätigungen von Freundschaftsanfragen" -#: mod/crepair.php:175 +#: mod/crepair.php:176 msgid "Notification Endpoint URL" msgstr "URL-Endpunkt für Benachrichtigungen" -#: mod/crepair.php:176 +#: mod/crepair.php:177 msgid "Poll/Feed URL" msgstr "Pull/Feed-URL" -#: mod/crepair.php:177 +#: mod/crepair.php:178 msgid "New photo from this URL" msgstr "Neues Foto von dieser URL" -#: mod/crepair.php:178 +#: mod/crepair.php:179 msgid "Remote Self" msgstr "Entfernte Konten" -#: mod/crepair.php:181 +#: mod/crepair.php:182 msgid "Mirror postings from this contact" msgstr "Spiegle Beiträge dieses Kontakts" -#: mod/crepair.php:183 +#: mod/crepair.php:184 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden." -#: mod/bookmarklet.php:12 boot.php:1281 include/nav.php:91 +#: mod/bookmarklet.php:12 boot.php:1293 include/nav.php:91 msgid "Login" msgstr "Anmeldung" @@ -1919,13 +1932,13 @@ msgstr "Der Beitrag wurde angelegt" msgid "Access denied." msgstr "Zugriff verweigert." -#: mod/dirfind.php:188 mod/allfriends.php:82 mod/match.php:85 -#: mod/suggest.php:98 include/contact_widgets.php:10 include/identity.php:193 +#: mod/dirfind.php:188 mod/allfriends.php:75 mod/match.php:85 +#: mod/suggest.php:98 include/contact_widgets.php:10 include/identity.php:209 msgid "Connect" msgstr "Verbinden" -#: mod/dirfind.php:189 mod/allfriends.php:66 mod/match.php:70 -#: mod/directory.php:156 mod/suggest.php:81 include/Contact.php:307 +#: mod/dirfind.php:189 mod/allfriends.php:59 mod/match.php:70 +#: mod/directory.php:162 mod/suggest.php:81 include/Contact.php:307 #: include/Contact.php:320 include/Contact.php:362 #: include/conversation.php:912 include/conversation.php:926 msgid "View Profile" @@ -1940,14 +1953,14 @@ msgstr "Personensuche - %s" msgid "No matches" msgstr "Keine Übereinstimmungen" -#: mod/fbrowser.php:32 include/identity.php:666 include/nav.php:77 +#: mod/fbrowser.php:32 include/identity.php:693 include/nav.php:77 #: view/theme/diabook/theme.php:126 msgid "Photos" msgstr "Bilder" -#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:54 -#: mod/photos.php:184 mod/photos.php:1111 mod/photos.php:1237 -#: mod/photos.php:1260 mod/photos.php:1830 mod/photos.php:1842 +#: 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 "Kontaktbilder" @@ -2109,7 +2122,7 @@ msgstr "RINO2 benötigt die PHP Extension mcrypt." msgid "Site settings updated." msgstr "Seiteneinstellungen aktualisiert." -#: mod/admin.php:619 mod/settings.php:901 +#: mod/admin.php:619 mod/settings.php:903 msgid "No special theme for mobile devices" msgstr "Kein spezielles Theme für mobile Geräte verwenden." @@ -2198,8 +2211,8 @@ msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)" #: mod/admin.php:712 mod/admin.php:1271 mod/admin.php:1507 mod/admin.php:1595 -#: mod/settings.php:648 mod/settings.php:758 mod/settings.php:802 -#: mod/settings.php:871 mod/settings.php:957 mod/settings.php:1192 +#: mod/settings.php:650 mod/settings.php:760 mod/settings.php:804 +#: mod/settings.php:873 mod/settings.php:960 mod/settings.php:1195 msgid "Save Settings" msgstr "Einstellungen speichern" @@ -3157,6 +3170,7 @@ msgid "Maintainer: " msgstr "Betreuer:" #: mod/admin.php:1272 +#: view/smarty3/compiled/f835364006028b1061f37be121c9bd9db5fa50a9.file.admin_plugins.tpl.php:42 msgid "Reload active plugins" msgstr "Aktive Plugins neu laden" @@ -3303,10 +3317,6 @@ msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit gera msgid "No such group" msgstr "Es gibt keine solche Gruppe" -#: mod/network.php:563 mod/content.php:130 -msgid "Group is empty" -msgstr "Gruppe ist leer" - #: mod/network.php:574 mod/content.php:135 #, php-format msgid "Group: %s" @@ -3320,15 +3330,10 @@ msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gela msgid "Invalid contact." msgstr "Ungültiger Kontakt." -#: mod/allfriends.php:45 +#: mod/allfriends.php:38 msgid "No friends to display." msgstr "Keine Freunde zum Anzeigen." -#: mod/allfriends.php:92 -#, php-format -msgid "Friends of %s" -msgstr "Freunde von %s" - #: mod/events.php:71 mod/events.php:73 msgid "Event can not end before it has started." msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt." @@ -3365,11 +3370,11 @@ msgstr "Fr" msgid "Sat" msgstr "Sa" -#: mod/events.php:208 mod/settings.php:936 include/text.php:1274 +#: mod/events.php:208 mod/settings.php:939 include/text.php:1274 msgid "Sunday" msgstr "Sonntag" -#: mod/events.php:209 mod/settings.php:936 include/text.php:1274 +#: mod/events.php:209 mod/settings.php:939 include/text.php:1274 msgid "Monday" msgstr "Montag" @@ -3513,7 +3518,7 @@ msgstr "Veranstaltung bearbeiten" msgid "link to source" msgstr "Link zum Originalbeitrag" -#: mod/events.php:456 include/identity.php:686 include/nav.php:79 +#: mod/events.php:456 include/identity.php:713 include/nav.php:79 #: include/nav.php:140 view/theme/diabook/theme.php:127 msgid "Events" msgstr "Veranstaltungen" @@ -3570,8 +3575,8 @@ msgstr "Titel:" msgid "Share this event" msgstr "Veranstaltung teilen" -#: mod/events.php:572 mod/content.php:721 mod/editpost.php:144 -#: mod/photos.php:1623 mod/photos.php:1671 mod/photos.php:1759 +#: 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:1217 msgid "Preview" msgstr "Vorschau" @@ -3587,7 +3592,7 @@ msgid "" "code or the translation of Friendica. Thank you all!" msgstr "Friendica ist ein Gemeinschaftsprojekt, das nicht ohne die Hilfe vieler Personen möglich wäre. Hier ist eine Aufzählung der Personen, die zum Code oder der Übersetzung beigetragen haben. Dank an alle !" -#: mod/content.php:439 mod/content.php:742 mod/photos.php:1714 +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1722 #: object/Item.php:133 include/conversation.php:634 msgid "Select" msgstr "Auswählen" @@ -3616,23 +3621,23 @@ msgstr[0] "%d Kommentar" msgstr[1] "%d Kommentare" #: mod/content.php:607 object/Item.php:421 object/Item.php:434 -#: include/text.php:1999 +#: include/text.php:1997 msgid "comment" msgid_plural "comments" msgstr[0] "Kommentar" msgstr[1] "Kommentare" -#: mod/content.php:608 boot.php:773 object/Item.php:422 +#: mod/content.php:608 boot.php:785 object/Item.php:422 #: include/contact_widgets.php:242 include/forums.php:110 -#: include/items.php:5152 view/theme/vier/theme.php:264 +#: include/items.php:5178 view/theme/vier/theme.php:264 msgid "show more" msgstr "mehr anzeigen" -#: mod/content.php:622 mod/photos.php:1410 object/Item.php:117 +#: mod/content.php:622 mod/photos.php:1418 object/Item.php:117 msgid "Private Message" msgstr "Private Nachricht" -#: mod/content.php:686 mod/photos.php:1599 object/Item.php:253 +#: mod/content.php:686 mod/photos.php:1607 object/Item.php:253 msgid "I like this (toggle)" msgstr "Ich mag das (toggle)" @@ -3640,7 +3645,7 @@ msgstr "Ich mag das (toggle)" msgid "like" msgstr "mag ich" -#: mod/content.php:687 mod/photos.php:1600 object/Item.php:254 +#: mod/content.php:687 mod/photos.php:1608 object/Item.php:254 msgid "I don't like this (toggle)" msgstr "Ich mag das nicht (toggle)" @@ -3656,13 +3661,13 @@ msgstr "Weitersagen" msgid "share" msgstr "Teilen" -#: mod/content.php:709 mod/photos.php:1619 mod/photos.php:1667 -#: mod/photos.php:1755 object/Item.php:707 +#: 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 "Das bist Du" -#: mod/content.php:711 mod/photos.php:1621 mod/photos.php:1669 -#: mod/photos.php:1757 boot.php:772 object/Item.php:393 object/Item.php:709 +#: mod/content.php:711 mod/photos.php:1629 mod/photos.php:1677 +#: mod/photos.php:1765 boot.php:784 object/Item.php:393 object/Item.php:709 msgid "Comment" msgstr "Kommentar" @@ -3698,7 +3703,7 @@ msgstr "Link" msgid "Video" msgstr "Video" -#: mod/content.php:730 mod/settings.php:710 object/Item.php:122 +#: mod/content.php:730 mod/settings.php:712 object/Item.php:122 #: object/Item.php:124 msgid "Edit" msgstr "Bearbeiten" @@ -4162,11 +4167,11 @@ msgstr "Nicht verfügbar." msgid "Community" msgstr "Gemeinschaft" -#: mod/community.php:62 mod/community.php:71 mod/search.php:218 +#: mod/community.php:62 mod/community.php:71 mod/search.php:228 msgid "No results." msgstr "Keine Ergebnisse." -#: mod/settings.php:34 mod/photos.php:109 +#: mod/settings.php:34 mod/photos.php:117 msgid "everybody" msgstr "jeder" @@ -4178,7 +4183,7 @@ msgstr "Zusätzliche Features" msgid "Display" msgstr "Anzeige" -#: mod/settings.php:60 mod/settings.php:853 +#: mod/settings.php:60 mod/settings.php:855 msgid "Social Networks" msgstr "Soziale Netzwerke" @@ -4214,655 +4219,655 @@ msgstr "E-Mail Einstellungen bearbeitet." msgid "Features updated" msgstr "Features aktualisiert" -#: mod/settings.php:341 +#: mod/settings.php:343 msgid "Relocate message has been send to your contacts" msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet." -#: mod/settings.php:355 include/user.php:39 +#: mod/settings.php:357 include/user.php:39 msgid "Passwords do not match. Password unchanged." msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." -#: mod/settings.php:360 +#: mod/settings.php:362 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert." -#: mod/settings.php:368 +#: mod/settings.php:370 msgid "Wrong password." msgstr "Falsches Passwort." -#: mod/settings.php:379 +#: mod/settings.php:381 msgid "Password changed." msgstr "Passwort geändert." -#: mod/settings.php:381 +#: mod/settings.php:383 msgid "Password update failed. Please try again." msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." -#: mod/settings.php:450 +#: mod/settings.php:452 msgid " Please use a shorter name." msgstr " Bitte verwende einen kürzeren Namen." -#: mod/settings.php:452 +#: mod/settings.php:454 msgid " Name too short." msgstr " Name ist zu kurz." -#: mod/settings.php:461 +#: mod/settings.php:463 msgid "Wrong Password" msgstr "Falsches Passwort" -#: mod/settings.php:466 +#: mod/settings.php:468 msgid " Not valid email." msgstr " Keine gültige E-Mail." -#: mod/settings.php:472 +#: mod/settings.php:474 msgid " Cannot change to that email." msgstr "Ändern der E-Mail nicht möglich. " -#: mod/settings.php:528 +#: mod/settings.php:530 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt." -#: mod/settings.php:532 +#: mod/settings.php:534 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte." -#: mod/settings.php:571 +#: mod/settings.php:573 msgid "Settings updated." msgstr "Einstellungen aktualisiert." -#: mod/settings.php:647 mod/settings.php:673 mod/settings.php:709 +#: mod/settings.php:649 mod/settings.php:675 mod/settings.php:711 msgid "Add application" msgstr "Programm hinzufügen" -#: mod/settings.php:651 mod/settings.php:677 +#: mod/settings.php:653 mod/settings.php:679 msgid "Consumer Key" msgstr "Consumer Key" -#: mod/settings.php:652 mod/settings.php:678 +#: mod/settings.php:654 mod/settings.php:680 msgid "Consumer Secret" msgstr "Consumer Secret" -#: mod/settings.php:653 mod/settings.php:679 +#: mod/settings.php:655 mod/settings.php:681 msgid "Redirect" msgstr "Umleiten" -#: mod/settings.php:654 mod/settings.php:680 +#: mod/settings.php:656 mod/settings.php:682 msgid "Icon url" msgstr "Icon URL" -#: mod/settings.php:665 +#: mod/settings.php:667 msgid "You can't edit this application." msgstr "Du kannst dieses Programm nicht bearbeiten." -#: mod/settings.php:708 +#: mod/settings.php:710 msgid "Connected Apps" msgstr "Verbundene Programme" -#: mod/settings.php:712 +#: mod/settings.php:714 msgid "Client key starts with" msgstr "Anwenderschlüssel beginnt mit" -#: mod/settings.php:713 +#: mod/settings.php:715 msgid "No name" msgstr "Kein Name" -#: mod/settings.php:714 +#: mod/settings.php:716 msgid "Remove authorization" msgstr "Autorisierung entziehen" -#: mod/settings.php:726 +#: mod/settings.php:728 msgid "No Plugin settings configured" msgstr "Keine Plugin-Einstellungen konfiguriert" -#: mod/settings.php:734 +#: mod/settings.php:736 msgid "Plugin Settings" msgstr "Plugin-Einstellungen" -#: mod/settings.php:748 +#: mod/settings.php:750 msgid "Off" msgstr "Aus" -#: mod/settings.php:748 +#: mod/settings.php:750 msgid "On" msgstr "An" -#: mod/settings.php:756 +#: mod/settings.php:758 msgid "Additional Features" msgstr "Zusätzliche Features" -#: mod/settings.php:766 mod/settings.php:770 +#: mod/settings.php:768 mod/settings.php:772 msgid "General Social Media Settings" msgstr "Allgemeine Einstellungen zu Sozialen Medien" -#: mod/settings.php:776 +#: mod/settings.php:778 msgid "Disable intelligent shortening" msgstr "Intelligentes Link kürzen ausschalten" -#: mod/settings.php:778 +#: mod/settings.php:780 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If this option is enabled then every shortened post will always point to the" " original friendica post." msgstr "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt." -#: mod/settings.php:784 +#: mod/settings.php:786 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen" -#: mod/settings.php:786 +#: mod/settings.php:788 msgid "" "If you receive a message from an unknown OStatus user, this option decides " "what to do. If it is checked, a new contact will be created for every " "unknown user." msgstr "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,." -#: mod/settings.php:795 +#: mod/settings.php:797 msgid "Your legacy GNU Social account" msgstr "Dein alter GNU Social Account" -#: mod/settings.php:797 +#: mod/settings.php:799 msgid "" "If you enter your old GNU Social/Statusnet account name here (in the format " "user@domain.tld), your contacts will be added automatically. The field will " "be emptied when done." msgstr "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden." -#: mod/settings.php:800 +#: mod/settings.php:802 msgid "Repair OStatus subscriptions" msgstr "OStatus Abonnements reparieren" -#: mod/settings.php:809 mod/settings.php:810 +#: mod/settings.php:811 mod/settings.php:812 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s" -#: mod/settings.php:809 mod/dfrn_request.php:858 +#: mod/settings.php:811 mod/dfrn_request.php:858 #: include/contact_selectors.php:80 msgid "Diaspora" msgstr "Diaspora" -#: mod/settings.php:809 mod/settings.php:810 +#: mod/settings.php:811 mod/settings.php:812 msgid "enabled" msgstr "eingeschaltet" -#: mod/settings.php:809 mod/settings.php:810 +#: mod/settings.php:811 mod/settings.php:812 msgid "disabled" msgstr "ausgeschaltet" -#: mod/settings.php:810 +#: mod/settings.php:812 msgid "GNU Social (OStatus)" msgstr "GNU Social (OStatus)" -#: mod/settings.php:846 +#: mod/settings.php:848 msgid "Email access is disabled on this site." msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." -#: mod/settings.php:858 +#: mod/settings.php:860 msgid "Email/Mailbox Setup" msgstr "E-Mail/Postfach-Einstellungen" -#: mod/settings.php:859 +#: mod/settings.php:861 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an." -#: mod/settings.php:860 +#: mod/settings.php:862 msgid "Last successful email check:" msgstr "Letzter erfolgreicher E-Mail Check" -#: mod/settings.php:862 +#: mod/settings.php:864 msgid "IMAP server name:" msgstr "IMAP-Server-Name:" -#: mod/settings.php:863 +#: mod/settings.php:865 msgid "IMAP port:" msgstr "IMAP-Port:" -#: mod/settings.php:864 +#: mod/settings.php:866 msgid "Security:" msgstr "Sicherheit:" -#: mod/settings.php:864 mod/settings.php:869 +#: mod/settings.php:866 mod/settings.php:871 msgid "None" msgstr "Keine" -#: mod/settings.php:865 +#: mod/settings.php:867 msgid "Email login name:" msgstr "E-Mail-Login-Name:" -#: mod/settings.php:866 +#: mod/settings.php:868 msgid "Email password:" msgstr "E-Mail-Passwort:" -#: mod/settings.php:867 +#: mod/settings.php:869 msgid "Reply-to address:" msgstr "Reply-to Adresse:" -#: mod/settings.php:868 +#: mod/settings.php:870 msgid "Send public posts to all email contacts:" msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" -#: mod/settings.php:869 +#: mod/settings.php:871 msgid "Action after import:" msgstr "Aktion nach Import:" -#: mod/settings.php:869 +#: mod/settings.php:871 msgid "Mark as seen" msgstr "Als gelesen markieren" -#: mod/settings.php:869 +#: mod/settings.php:871 msgid "Move to folder" msgstr "In einen Ordner verschieben" -#: mod/settings.php:870 +#: mod/settings.php:872 msgid "Move to folder:" msgstr "In diesen Ordner verschieben:" -#: mod/settings.php:955 +#: mod/settings.php:958 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: mod/settings.php:961 mod/settings.php:979 +#: mod/settings.php:964 mod/settings.php:982 msgid "Display Theme:" msgstr "Theme:" -#: mod/settings.php:962 +#: mod/settings.php:965 msgid "Mobile Theme:" msgstr "Mobiles Theme" -#: mod/settings.php:963 +#: mod/settings.php:966 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: mod/settings.php:963 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimal 10 Sekunden, kein Maximum" +#: mod/settings.php:966 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Minimum sind 10 Sekeunden. Gib -1 ein um abzuschalten." -#: mod/settings.php:964 +#: mod/settings.php:967 msgid "Number of items to display per page:" msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: " -#: mod/settings.php:964 mod/settings.php:965 +#: mod/settings.php:967 mod/settings.php:968 msgid "Maximum of 100 items" msgstr "Maximal 100 Beiträge" -#: mod/settings.php:965 +#: mod/settings.php:968 msgid "Number of items to display per page when viewed from mobile device:" msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:" -#: mod/settings.php:966 +#: mod/settings.php:969 msgid "Don't show emoticons" msgstr "Keine Smilies anzeigen" -#: mod/settings.php:967 +#: mod/settings.php:970 msgid "Calendar" msgstr "Kalender" -#: mod/settings.php:968 +#: mod/settings.php:971 msgid "Beginning of week:" msgstr "Wochenbeginn:" -#: mod/settings.php:969 +#: mod/settings.php:972 msgid "Don't show notices" msgstr "Info-Popups nicht anzeigen" -#: mod/settings.php:970 +#: mod/settings.php:973 msgid "Infinite scroll" msgstr "Endloses Scrollen" -#: mod/settings.php:971 +#: mod/settings.php:974 msgid "Automatic updates only at the top of the network page" msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist." -#: mod/settings.php:973 view/theme/cleanzero/config.php:82 +#: mod/settings.php:976 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/clean/config.php:85 #: view/theme/vier/config.php:109 view/theme/duepuntozero/config.php:61 msgid "Theme settings" msgstr "Themeneinstellungen" -#: mod/settings.php:1050 +#: mod/settings.php:1053 msgid "User Types" msgstr "Nutzer Art" -#: mod/settings.php:1051 +#: mod/settings.php:1054 msgid "Community Types" msgstr "Gemeinschafts Art" -#: mod/settings.php:1052 +#: mod/settings.php:1055 msgid "Normal Account Page" msgstr "Normales Konto" -#: mod/settings.php:1053 +#: mod/settings.php:1056 msgid "This account is a normal personal profile" msgstr "Dieses Konto ist ein normales persönliches Profil" -#: mod/settings.php:1056 +#: mod/settings.php:1059 msgid "Soapbox Page" msgstr "Marktschreier-Konto" -#: mod/settings.php:1057 +#: mod/settings.php:1060 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert" -#: mod/settings.php:1060 +#: mod/settings.php:1063 msgid "Community Forum/Celebrity Account" msgstr "Forum/Promi-Konto" -#: mod/settings.php:1061 +#: mod/settings.php:1064 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert" -#: mod/settings.php:1064 +#: mod/settings.php:1067 msgid "Automatic Friend Page" msgstr "Automatische Freunde Seite" -#: mod/settings.php:1065 +#: mod/settings.php:1068 msgid "Automatically approve all connection/friend requests as friends" msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert" -#: mod/settings.php:1068 +#: mod/settings.php:1071 msgid "Private Forum [Experimental]" msgstr "Privates Forum [Versuchsstadium]" -#: mod/settings.php:1069 +#: mod/settings.php:1072 msgid "Private forum - approved members only" msgstr "Privates Forum, nur für Mitglieder" -#: mod/settings.php:1081 +#: mod/settings.php:1084 msgid "OpenID:" msgstr "OpenID:" -#: mod/settings.php:1081 +#: mod/settings.php:1084 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID." -#: mod/settings.php:1091 +#: mod/settings.php:1094 msgid "Publish your default profile in your local site directory?" msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?" -#: mod/settings.php:1097 +#: mod/settings.php:1100 msgid "Publish your default profile in the global social directory?" msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?" -#: mod/settings.php:1105 +#: mod/settings.php:1108 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?" -#: mod/settings.php:1109 include/acl_selectors.php:331 +#: mod/settings.php:1112 include/acl_selectors.php:331 msgid "Hide your profile details from unknown viewers?" msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" -#: mod/settings.php:1109 +#: mod/settings.php:1112 msgid "" "If enabled, posting public messages to Diaspora and other networks isn't " "possible." msgstr "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich" -#: mod/settings.php:1114 +#: mod/settings.php:1117 msgid "Allow friends to post to your profile page?" msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?" -#: mod/settings.php:1120 +#: mod/settings.php:1123 msgid "Allow friends to tag your posts?" msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?" -#: mod/settings.php:1126 +#: mod/settings.php:1129 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" -#: mod/settings.php:1132 +#: mod/settings.php:1135 msgid "Permit unknown people to send you private mail?" msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?" -#: mod/settings.php:1140 +#: mod/settings.php:1143 msgid "Profile is not published." msgstr "Profil ist nicht veröffentlicht." -#: mod/settings.php:1148 +#: mod/settings.php:1151 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Die Adresse deines Profils lautet '%s' oder '%s'." -#: mod/settings.php:1155 +#: mod/settings.php:1158 msgid "Automatically expire posts after this many days:" msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" -#: mod/settings.php:1155 +#: mod/settings.php:1158 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht." -#: mod/settings.php:1156 +#: mod/settings.php:1159 msgid "Advanced expiration settings" msgstr "Erweiterte Verfallseinstellungen" -#: mod/settings.php:1157 +#: mod/settings.php:1160 msgid "Advanced Expiration" msgstr "Erweitertes Verfallen" -#: mod/settings.php:1158 +#: mod/settings.php:1161 msgid "Expire posts:" msgstr "Beiträge verfallen lassen:" -#: mod/settings.php:1159 +#: mod/settings.php:1162 msgid "Expire personal notes:" msgstr "Persönliche Notizen verfallen lassen:" -#: mod/settings.php:1160 +#: mod/settings.php:1163 msgid "Expire starred posts:" msgstr "Markierte Beiträge verfallen lassen:" -#: mod/settings.php:1161 +#: mod/settings.php:1164 msgid "Expire photos:" msgstr "Fotos verfallen lassen:" -#: mod/settings.php:1162 +#: mod/settings.php:1165 msgid "Only expire posts by others:" msgstr "Nur Beiträge anderer verfallen:" -#: mod/settings.php:1190 +#: mod/settings.php:1193 msgid "Account Settings" msgstr "Kontoeinstellungen" -#: mod/settings.php:1198 +#: mod/settings.php:1201 msgid "Password Settings" msgstr "Passwort-Einstellungen" -#: mod/settings.php:1199 mod/register.php:274 +#: mod/settings.php:1202 mod/register.php:274 msgid "New Password:" msgstr "Neues Passwort:" -#: mod/settings.php:1200 mod/register.php:275 +#: mod/settings.php:1203 mod/register.php:275 msgid "Confirm:" msgstr "Bestätigen:" -#: mod/settings.php:1200 +#: mod/settings.php:1203 msgid "Leave password fields blank unless changing" msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern" -#: mod/settings.php:1201 +#: mod/settings.php:1204 msgid "Current Password:" msgstr "Aktuelles Passwort:" -#: mod/settings.php:1201 mod/settings.php:1202 +#: mod/settings.php:1204 mod/settings.php:1205 msgid "Your current password to confirm the changes" msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" -#: mod/settings.php:1202 +#: mod/settings.php:1205 msgid "Password:" msgstr "Passwort:" -#: mod/settings.php:1206 +#: mod/settings.php:1209 msgid "Basic Settings" msgstr "Grundeinstellungen" -#: mod/settings.php:1207 include/identity.php:551 +#: mod/settings.php:1210 include/identity.php:578 msgid "Full Name:" msgstr "Kompletter Name:" -#: mod/settings.php:1208 +#: mod/settings.php:1211 msgid "Email Address:" msgstr "E-Mail-Adresse:" -#: mod/settings.php:1209 +#: mod/settings.php:1212 msgid "Your Timezone:" msgstr "Deine Zeitzone:" -#: mod/settings.php:1210 +#: mod/settings.php:1213 msgid "Your Language:" msgstr "Deine Sprache:" -#: mod/settings.php:1210 +#: mod/settings.php:1213 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken" -#: mod/settings.php:1211 +#: mod/settings.php:1214 msgid "Default Post Location:" msgstr "Standardstandort:" -#: mod/settings.php:1212 +#: mod/settings.php:1215 msgid "Use Browser Location:" msgstr "Standort des Browsers verwenden:" -#: mod/settings.php:1215 +#: mod/settings.php:1218 msgid "Security and Privacy Settings" msgstr "Sicherheits- und Privatsphäre-Einstellungen" -#: mod/settings.php:1217 +#: mod/settings.php:1220 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:" -#: mod/settings.php:1217 mod/settings.php:1247 +#: mod/settings.php:1220 mod/settings.php:1250 msgid "(to prevent spam abuse)" msgstr "(um SPAM zu vermeiden)" -#: mod/settings.php:1218 +#: mod/settings.php:1221 msgid "Default Post Permissions" msgstr "Standard-Zugriffsrechte für Beiträge" -#: mod/settings.php:1219 +#: mod/settings.php:1222 msgid "(click to open/close)" msgstr "(klicke zum öffnen/schließen)" -#: mod/settings.php:1228 mod/photos.php:1191 mod/photos.php:1576 +#: mod/settings.php:1231 mod/photos.php:1199 mod/photos.php:1584 msgid "Show to Groups" msgstr "Zeige den Gruppen" -#: mod/settings.php:1229 mod/photos.php:1192 mod/photos.php:1577 +#: mod/settings.php:1232 mod/photos.php:1200 mod/photos.php:1585 msgid "Show to Contacts" msgstr "Zeige den Kontakten" -#: mod/settings.php:1230 +#: mod/settings.php:1233 msgid "Default Private Post" msgstr "Privater Standardbeitrag" -#: mod/settings.php:1231 +#: mod/settings.php:1234 msgid "Default Public Post" msgstr "Öffentlicher Standardbeitrag" -#: mod/settings.php:1235 +#: mod/settings.php:1238 msgid "Default Permissions for New Posts" msgstr "Standardberechtigungen für neue Beiträge" -#: mod/settings.php:1247 +#: mod/settings.php:1250 msgid "Maximum private messages per day from unknown people:" msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:" -#: mod/settings.php:1250 +#: mod/settings.php:1253 msgid "Notification Settings" msgstr "Benachrichtigungseinstellungen" -#: mod/settings.php:1251 +#: mod/settings.php:1254 msgid "By default post a status message when:" msgstr "Standardmäßig eine Statusnachricht posten, wenn:" -#: mod/settings.php:1252 +#: mod/settings.php:1255 msgid "accepting a friend request" msgstr "– Du eine Kontaktanfrage akzeptierst" -#: mod/settings.php:1253 +#: mod/settings.php:1256 msgid "joining a forum/community" msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst" -#: mod/settings.php:1254 +#: mod/settings.php:1257 msgid "making an interesting profile change" msgstr "– Du eine interessante Änderung an Deinem Profil durchführst" -#: mod/settings.php:1255 +#: mod/settings.php:1258 msgid "Send a notification email when:" msgstr "Benachrichtigungs-E-Mail senden wenn:" -#: mod/settings.php:1256 +#: mod/settings.php:1259 msgid "You receive an introduction" msgstr "– Du eine Kontaktanfrage erhältst" -#: mod/settings.php:1257 +#: mod/settings.php:1260 msgid "Your introductions are confirmed" msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" -#: mod/settings.php:1258 +#: mod/settings.php:1261 msgid "Someone writes on your profile wall" msgstr "– jemand etwas auf Deine Pinnwand schreibt" -#: mod/settings.php:1259 +#: mod/settings.php:1262 msgid "Someone writes a followup comment" msgstr "– jemand auch einen Kommentar verfasst" -#: mod/settings.php:1260 +#: mod/settings.php:1263 msgid "You receive a private message" msgstr "– Du eine private Nachricht erhältst" -#: mod/settings.php:1261 +#: mod/settings.php:1264 msgid "You receive a friend suggestion" msgstr "– Du eine Empfehlung erhältst" -#: mod/settings.php:1262 +#: mod/settings.php:1265 msgid "You are tagged in a post" msgstr "– Du in einem Beitrag erwähnt wirst" -#: mod/settings.php:1263 +#: mod/settings.php:1266 msgid "You are poked/prodded/etc. in a post" msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst" -#: mod/settings.php:1265 +#: mod/settings.php:1268 msgid "Activate desktop notifications" msgstr "Desktop Benachrichtigungen einschalten" -#: mod/settings.php:1265 +#: mod/settings.php:1268 msgid "Show desktop popup on new notifications" msgstr "Desktop Benachrichtigungen einschalten" -#: mod/settings.php:1267 +#: mod/settings.php:1270 msgid "Text-only notification emails" msgstr "Benachrichtigungs E-Mail als Rein-Text." -#: mod/settings.php:1269 +#: mod/settings.php:1272 msgid "Send text only notification emails, without the html part" msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil" -#: mod/settings.php:1271 +#: mod/settings.php:1274 msgid "Advanced Account/Page Type Settings" msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" -#: mod/settings.php:1272 +#: mod/settings.php:1275 msgid "Change the behaviour of this account for special situations" msgstr "Verhalten dieses Kontos in bestimmten Situationen:" -#: mod/settings.php:1275 +#: mod/settings.php:1278 msgid "Relocate" msgstr "Umziehen" -#: mod/settings.php:1276 +#: mod/settings.php:1279 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button." -#: mod/settings.php:1277 +#: mod/settings.php:1280 msgid "Resend relocate message to contacts" msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" @@ -5099,7 +5104,7 @@ msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstab msgid "Choose a nickname: " msgstr "Spitznamen wählen: " -#: mod/register.php:280 boot.php:1256 include/nav.php:108 +#: mod/register.php:280 boot.php:1268 include/nav.php:108 msgid "Register" msgstr "Registrieren" @@ -5119,62 +5124,54 @@ msgstr "System zur Wartung abgeschaltet" msgid "Only logged in users are permitted to perform a search." msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet." -#: mod/search.php:115 +#: mod/search.php:124 msgid "Too Many Requests" msgstr "Zu viele Abfragen" -#: mod/search.php:116 +#: mod/search.php:125 msgid "Only one search per minute is permitted for not logged in users." msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet." -#: mod/search.php:126 include/text.php:1003 include/nav.php:118 +#: mod/search.php:136 include/text.php:1003 include/nav.php:118 msgid "Search" msgstr "Suche" -#: mod/search.php:224 +#: mod/search.php:234 #, php-format msgid "Items tagged with: %s" msgstr "Beiträge markiert mit: %s" -#: mod/search.php:226 +#: mod/search.php:236 #, php-format msgid "Search results for: %s" msgstr "Suchergebnisse für: %s" -#: mod/directory.php:116 mod/profiles.php:760 -msgid "Age: " -msgstr "Alter: " - -#: mod/directory.php:119 -msgid "Gender: " -msgstr "Geschlecht:" - -#: mod/directory.php:143 include/identity.php:283 include/identity.php:573 +#: mod/directory.php:149 include/identity.php:309 include/identity.php:600 msgid "Status:" msgstr "Status:" -#: mod/directory.php:145 include/identity.php:285 include/identity.php:584 +#: mod/directory.php:151 include/identity.php:311 include/identity.php:611 msgid "Homepage:" msgstr "Homepage:" -#: mod/directory.php:195 view/theme/diabook/theme.php:525 +#: mod/directory.php:203 view/theme/diabook/theme.php:525 #: view/theme/vier/theme.php:205 msgid "Global Directory" msgstr "Weltweites Verzeichnis" -#: mod/directory.php:197 +#: mod/directory.php:205 msgid "Find on this site" msgstr "Auf diesem Server suchen" -#: mod/directory.php:199 +#: mod/directory.php:207 msgid "Finding:" msgstr "Funde:" -#: mod/directory.php:201 +#: mod/directory.php:209 msgid "Site Directory" msgstr "Verzeichnis" -#: mod/directory.php:208 +#: mod/directory.php:216 msgid "No entries (some entries may be hidden)." msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." @@ -5213,14 +5210,10 @@ msgstr "Hinzufügen" msgid "No entries." msgstr "Keine Einträge." -#: mod/common.php:85 +#: mod/common.php:87 msgid "No contacts in common." msgstr "Keine gemeinsamen Kontakte." -#: mod/common.php:133 -msgid "Common Friends" -msgstr "Gemeinsame Freunde" - #: mod/uexport.php:77 msgid "Export account" msgstr "Account exportieren" @@ -5302,11 +5295,11 @@ msgstr "Familienstand" msgid "Romantic Partner" msgstr "Romanze" -#: mod/profiles.php:344 mod/photos.php:1639 include/conversation.php:508 +#: mod/profiles.php:344 mod/photos.php:1647 include/conversation.php:508 msgid "Likes" msgstr "Likes" -#: mod/profiles.php:348 mod/photos.php:1639 include/conversation.php:508 +#: mod/profiles.php:348 mod/photos.php:1647 include/conversation.php:508 msgid "Dislikes" msgstr "Dislikes" @@ -5485,7 +5478,7 @@ msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" msgid "Since [date]:" msgstr "Seit [Datum]:" -#: mod/profiles.php:724 include/identity.php:582 +#: mod/profiles.php:724 include/identity.php:609 msgid "Sexual Preference:" msgstr "Sexuelle Vorlieben:" @@ -5493,11 +5486,11 @@ msgstr "Sexuelle Vorlieben:" msgid "Homepage URL:" msgstr "Adresse der Homepage:" -#: mod/profiles.php:726 include/identity.php:586 +#: mod/profiles.php:726 include/identity.php:613 msgid "Hometown:" msgstr "Heimatort:" -#: mod/profiles.php:727 include/identity.php:590 +#: mod/profiles.php:727 include/identity.php:617 msgid "Political Views:" msgstr "Politische Ansichten:" @@ -5513,11 +5506,11 @@ msgstr "Öffentliche Schlüsselwörter:" msgid "Private Keywords:" msgstr "Private Schlüsselwörter:" -#: mod/profiles.php:731 include/identity.php:598 +#: mod/profiles.php:731 include/identity.php:625 msgid "Likes:" msgstr "Likes:" -#: mod/profiles.php:732 include/identity.php:600 +#: mod/profiles.php:732 include/identity.php:627 msgid "Dislikes:" msgstr "Dislikes:" @@ -5579,27 +5572,31 @@ msgid "" "be visible to anybody using the internet." msgstr "Dies ist Dein öffentliches Profil.
    Es könnte für jeden Nutzer des Internets sichtbar sein." +#: mod/profiles.php:760 +msgid "Age: " +msgstr "Alter: " + #: mod/profiles.php:813 msgid "Edit/Manage Profiles" msgstr "Bearbeite/Verwalte Profile" -#: mod/profiles.php:814 include/identity.php:241 include/identity.php:267 +#: mod/profiles.php:814 include/identity.php:257 include/identity.php:283 msgid "Change profile photo" msgstr "Profilbild ändern" -#: mod/profiles.php:815 include/identity.php:242 +#: mod/profiles.php:815 include/identity.php:258 msgid "Create New Profile" msgstr "Neues Profil anlegen" -#: mod/profiles.php:826 include/identity.php:252 +#: mod/profiles.php:826 include/identity.php:268 msgid "Profile Image" msgstr "Profilbild" -#: mod/profiles.php:828 include/identity.php:255 +#: mod/profiles.php:828 include/identity.php:271 msgid "visible to everybody" msgstr "sichtbar für jeden" -#: mod/profiles.php:829 include/identity.php:256 +#: mod/profiles.php:829 include/identity.php:272 msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" @@ -5611,75 +5608,75 @@ msgstr "Beitrag nicht gefunden" msgid "Edit post" msgstr "Beitrag bearbeiten" -#: mod/editpost.php:110 include/conversation.php:1185 +#: mod/editpost.php:111 include/conversation.php:1185 msgid "upload photo" msgstr "Bild hochladen" -#: mod/editpost.php:111 include/conversation.php:1186 +#: mod/editpost.php:112 include/conversation.php:1186 msgid "Attach file" msgstr "Datei anhängen" -#: mod/editpost.php:112 include/conversation.php:1187 +#: mod/editpost.php:113 include/conversation.php:1187 msgid "attach file" msgstr "Datei anhängen" -#: mod/editpost.php:114 include/conversation.php:1189 +#: mod/editpost.php:115 include/conversation.php:1189 msgid "web link" msgstr "Weblink" -#: mod/editpost.php:115 include/conversation.php:1190 +#: mod/editpost.php:116 include/conversation.php:1190 msgid "Insert video link" msgstr "Video-Adresse einfügen" -#: mod/editpost.php:116 include/conversation.php:1191 +#: mod/editpost.php:117 include/conversation.php:1191 msgid "video link" msgstr "Video-Link" -#: mod/editpost.php:117 include/conversation.php:1192 +#: mod/editpost.php:118 include/conversation.php:1192 msgid "Insert audio link" msgstr "Audio-Adresse einfügen" -#: mod/editpost.php:118 include/conversation.php:1193 +#: mod/editpost.php:119 include/conversation.php:1193 msgid "audio link" msgstr "Audio-Link" -#: mod/editpost.php:119 include/conversation.php:1194 +#: mod/editpost.php:120 include/conversation.php:1194 msgid "Set your location" msgstr "Deinen Standort festlegen" -#: mod/editpost.php:120 include/conversation.php:1195 +#: mod/editpost.php:121 include/conversation.php:1195 msgid "set location" msgstr "Ort setzen" -#: mod/editpost.php:121 include/conversation.php:1196 +#: mod/editpost.php:122 include/conversation.php:1196 msgid "Clear browser location" msgstr "Browser-Standort leeren" -#: mod/editpost.php:122 include/conversation.php:1197 +#: mod/editpost.php:123 include/conversation.php:1197 msgid "clear location" msgstr "Ort löschen" -#: mod/editpost.php:124 include/conversation.php:1203 +#: mod/editpost.php:125 include/conversation.php:1203 msgid "Permission settings" msgstr "Berechtigungseinstellungen" -#: mod/editpost.php:132 include/acl_selectors.php:344 +#: mod/editpost.php:133 include/acl_selectors.php:344 msgid "CC: email addresses" msgstr "Cc: E-Mail-Addressen" -#: mod/editpost.php:133 include/conversation.php:1212 +#: mod/editpost.php:134 include/conversation.php:1212 msgid "Public post" msgstr "Öffentlicher Beitrag" -#: mod/editpost.php:136 include/conversation.php:1199 +#: mod/editpost.php:137 include/conversation.php:1199 msgid "Set title" msgstr "Titel setzen" -#: mod/editpost.php:138 include/conversation.php:1201 +#: mod/editpost.php:139 include/conversation.php:1201 msgid "Categories (comma-separated list)" msgstr "Kategorien (kommasepariert)" -#: mod/editpost.php:139 include/acl_selectors.php:345 +#: mod/editpost.php:140 include/acl_selectors.php:345 msgid "Example: bob@example.com, mary@example.com" msgstr "Z.B.: bob@example.com, mary@example.com" @@ -5745,7 +5742,7 @@ msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." msgid "Visible to:" msgstr "Sichtbar für:" -#: mod/notes.php:46 include/identity.php:694 +#: mod/notes.php:46 include/identity.php:721 msgid "Personal Notes" msgstr "Persönliche Notizen" @@ -5902,197 +5899,197 @@ msgid "" "important, please visit http://friendica.com" msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com" -#: mod/photos.php:91 include/identity.php:669 +#: mod/photos.php:99 include/identity.php:696 msgid "Photo Albums" msgstr "Fotoalben" -#: mod/photos.php:92 mod/photos.php:1891 +#: mod/photos.php:100 mod/photos.php:1899 msgid "Recent Photos" msgstr "Neueste Fotos" -#: mod/photos.php:95 mod/photos.php:1312 mod/photos.php:1893 +#: mod/photos.php:103 mod/photos.php:1320 mod/photos.php:1901 msgid "Upload New Photos" msgstr "Neue Fotos hochladen" -#: mod/photos.php:173 +#: mod/photos.php:181 msgid "Contact information unavailable" msgstr "Kontaktinformationen nicht verfügbar" -#: mod/photos.php:194 +#: mod/photos.php:202 msgid "Album not found." msgstr "Album nicht gefunden." -#: mod/photos.php:224 mod/photos.php:236 mod/photos.php:1254 +#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1262 msgid "Delete Album" msgstr "Album löschen" -#: mod/photos.php:234 +#: mod/photos.php:242 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?" -#: mod/photos.php:314 mod/photos.php:325 mod/photos.php:1572 +#: mod/photos.php:322 mod/photos.php:333 mod/photos.php:1580 msgid "Delete Photo" msgstr "Foto löschen" -#: mod/photos.php:323 +#: mod/photos.php:331 msgid "Do you really want to delete this photo?" msgstr "Möchtest Du wirklich dieses Foto löschen?" -#: mod/photos.php:698 +#: mod/photos.php:706 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s wurde von %3$s in %2$s getaggt" -#: mod/photos.php:698 +#: mod/photos.php:706 msgid "a photo" msgstr "einem Foto" -#: mod/photos.php:811 +#: mod/photos.php:819 msgid "Image file is empty." msgstr "Bilddatei ist leer." -#: mod/photos.php:978 +#: mod/photos.php:986 msgid "No photos selected" msgstr "Keine Bilder ausgewählt" -#: mod/photos.php:1139 +#: mod/photos.php:1147 #, php-format msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers." -#: mod/photos.php:1174 +#: mod/photos.php:1182 msgid "Upload Photos" msgstr "Bilder hochladen" -#: mod/photos.php:1178 mod/photos.php:1249 +#: mod/photos.php:1186 mod/photos.php:1257 msgid "New album name: " msgstr "Name des neuen Albums: " -#: mod/photos.php:1179 +#: mod/photos.php:1187 msgid "or existing album name: " msgstr "oder existierender Albumname: " -#: mod/photos.php:1180 +#: mod/photos.php:1188 msgid "Do not show a status post for this upload" msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" -#: mod/photos.php:1182 mod/photos.php:1567 include/acl_selectors.php:347 +#: mod/photos.php:1190 mod/photos.php:1575 include/acl_selectors.php:347 msgid "Permissions" msgstr "Berechtigungen" -#: mod/photos.php:1193 +#: mod/photos.php:1201 msgid "Private Photo" msgstr "Privates Foto" -#: mod/photos.php:1194 +#: mod/photos.php:1202 msgid "Public Photo" msgstr "Öffentliches Foto" -#: mod/photos.php:1262 +#: mod/photos.php:1270 msgid "Edit Album" msgstr "Album bearbeiten" -#: mod/photos.php:1268 +#: mod/photos.php:1276 msgid "Show Newest First" msgstr "Zeige neueste zuerst" -#: mod/photos.php:1270 +#: mod/photos.php:1278 msgid "Show Oldest First" msgstr "Zeige älteste zuerst" -#: mod/photos.php:1298 mod/photos.php:1876 +#: mod/photos.php:1306 mod/photos.php:1884 msgid "View Photo" msgstr "Foto betrachten" -#: mod/photos.php:1345 +#: mod/photos.php:1353 msgid "Permission denied. Access to this item may be restricted." msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." -#: mod/photos.php:1347 +#: mod/photos.php:1355 msgid "Photo not available" msgstr "Foto nicht verfügbar" -#: mod/photos.php:1403 +#: mod/photos.php:1411 msgid "View photo" msgstr "Fotos ansehen" -#: mod/photos.php:1403 +#: mod/photos.php:1411 msgid "Edit photo" msgstr "Foto bearbeiten" -#: mod/photos.php:1404 +#: mod/photos.php:1412 msgid "Use as profile photo" msgstr "Als Profilbild verwenden" -#: mod/photos.php:1429 +#: mod/photos.php:1437 msgid "View Full Size" msgstr "Betrachte Originalgröße" -#: mod/photos.php:1515 +#: mod/photos.php:1523 msgid "Tags: " msgstr "Tags: " -#: mod/photos.php:1518 +#: mod/photos.php:1526 msgid "[Remove any tag]" msgstr "[Tag entfernen]" -#: mod/photos.php:1558 +#: mod/photos.php:1566 msgid "New album name" msgstr "Name des neuen Albums" -#: mod/photos.php:1559 +#: mod/photos.php:1567 msgid "Caption" msgstr "Bildunterschrift" -#: mod/photos.php:1560 +#: mod/photos.php:1568 msgid "Add a Tag" msgstr "Tag hinzufügen" -#: mod/photos.php:1560 +#: mod/photos.php:1568 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1561 +#: mod/photos.php:1569 msgid "Do not rotate" msgstr "Nicht rotieren" -#: mod/photos.php:1562 +#: mod/photos.php:1570 msgid "Rotate CW (right)" msgstr "Drehen US (rechts)" -#: mod/photos.php:1563 +#: mod/photos.php:1571 msgid "Rotate CCW (left)" msgstr "Drehen EUS (links)" -#: mod/photos.php:1578 +#: mod/photos.php:1586 msgid "Private photo" msgstr "Privates Foto" -#: mod/photos.php:1579 +#: mod/photos.php:1587 msgid "Public photo" msgstr "Öffentliches Foto" -#: mod/photos.php:1601 include/conversation.php:1183 +#: mod/photos.php:1609 include/conversation.php:1183 msgid "Share" msgstr "Teilen" -#: mod/photos.php:1640 include/conversation.php:509 +#: mod/photos.php:1648 include/conversation.php:509 #: include/conversation.php:1414 msgid "Attending" msgid_plural "Attending" msgstr[0] "Teilnehmend" msgstr[1] "Teilnehmend" -#: mod/photos.php:1640 include/conversation.php:509 +#: mod/photos.php:1648 include/conversation.php:509 msgid "Not attending" msgstr "Nicht teilnehmend" -#: mod/photos.php:1640 include/conversation.php:509 +#: mod/photos.php:1648 include/conversation.php:509 msgid "Might attend" msgstr "Eventuell teilnehmend" -#: mod/photos.php:1805 +#: mod/photos.php:1813 msgid "Map" msgstr "Karte" @@ -6152,60 +6149,60 @@ msgstr "Beitrag nicht verfügbar." msgid "Item was not found." msgstr "Beitrag konnte nicht gefunden werden." -#: boot.php:771 +#: boot.php:783 msgid "Delete this item?" msgstr "Diesen Beitrag löschen?" -#: boot.php:774 +#: boot.php:786 msgid "show fewer" msgstr "weniger anzeigen" -#: boot.php:1148 +#: boot.php:1160 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen." -#: boot.php:1255 +#: boot.php:1267 msgid "Create a New Account" msgstr "Neues Konto erstellen" -#: boot.php:1280 include/nav.php:72 +#: boot.php:1292 include/nav.php:72 msgid "Logout" msgstr "Abmelden" -#: boot.php:1283 +#: boot.php:1295 msgid "Nickname or Email address: " msgstr "Spitzname oder E-Mail-Adresse: " -#: boot.php:1284 +#: boot.php:1296 msgid "Password: " msgstr "Passwort: " -#: boot.php:1285 +#: boot.php:1297 msgid "Remember me" msgstr "Anmeldedaten merken" -#: boot.php:1288 +#: boot.php:1300 msgid "Or login using OpenID: " msgstr "Oder melde Dich mit Deiner OpenID an: " -#: boot.php:1294 +#: boot.php:1306 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: boot.php:1297 +#: boot.php:1309 msgid "Website Terms of Service" msgstr "Website Nutzungsbedingungen" -#: boot.php:1298 +#: boot.php:1310 msgid "terms of service" msgstr "Nutzungsbedingungen" -#: boot.php:1300 +#: boot.php:1312 msgid "Website Privacy Policy" msgstr "Website Datenschutzerklärung" -#: boot.php:1301 +#: boot.php:1313 msgid "privacy policy" msgstr "Datenschutzerklärung" @@ -6266,11 +6263,11 @@ msgid "" "[pre]%s[/pre]" msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]" -#: include/dbstructure.php:152 +#: include/dbstructure.php:151 msgid "Errors encountered creating database tables." msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen." -#: include/dbstructure.php:210 +#: include/dbstructure.php:209 msgid "Errors encountered performing database changes." msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten." @@ -6353,6 +6350,13 @@ msgstr "Alles" msgid "Categories" msgstr "Kategorien" +#: include/contact_widgets.php:237 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d gemeinsamer Kontakt" +msgstr[1] "%d gemeinsame Kontakte" + #: include/features.php:58 msgid "General Features" msgstr "Allgemeine Features" @@ -6699,12 +6703,12 @@ msgstr "Sekunden" msgid "%1$d %2$s ago" msgstr "%1$d %2$s her" -#: include/datetime.php:474 include/items.php:2444 +#: include/datetime.php:474 include/items.php:2470 #, php-format msgid "%s's birthday" msgstr "%ss Geburtstag" -#: include/datetime.php:475 include/items.php:2445 +#: include/datetime.php:475 include/items.php:2471 #, php-format msgid "Happy Birthday %s" msgstr "Herzlichen Glückwunsch %s" @@ -6713,148 +6717,132 @@ msgstr "Herzlichen Glückwunsch %s" msgid "Requested account is not available." msgstr "Das angefragte Profil ist nicht vorhanden." -#: include/identity.php:126 include/identity.php:265 include/identity.php:625 +#: include/identity.php:96 include/identity.php:281 include/identity.php:652 msgid "Edit profile" msgstr "Profil bearbeiten" -#: include/identity.php:225 +#: include/identity.php:241 msgid "Atom feed" msgstr "Atom-Feed" -#: include/identity.php:230 +#: include/identity.php:246 msgid "Message" msgstr "Nachricht" -#: include/identity.php:236 include/nav.php:185 +#: include/identity.php:252 include/nav.php:185 msgid "Profiles" msgstr "Profile" -#: include/identity.php:236 +#: include/identity.php:252 msgid "Manage/edit profiles" msgstr "Profile verwalten/editieren" -#: include/identity.php:353 -msgid "Network:" -msgstr "Netzwerk" - -#: include/identity.php:385 include/identity.php:471 +#: include/identity.php:412 include/identity.php:498 msgid "g A l F d" msgstr "l, d. F G \\U\\h\\r" -#: include/identity.php:386 include/identity.php:472 +#: include/identity.php:413 include/identity.php:499 msgid "F d" msgstr "d. F" -#: include/identity.php:431 include/identity.php:518 +#: include/identity.php:458 include/identity.php:545 msgid "[today]" msgstr "[heute]" -#: include/identity.php:443 +#: include/identity.php:470 msgid "Birthday Reminders" msgstr "Geburtstagserinnerungen" -#: include/identity.php:444 +#: include/identity.php:471 msgid "Birthdays this week:" msgstr "Geburtstage diese Woche:" -#: include/identity.php:505 +#: include/identity.php:532 msgid "[No description]" msgstr "[keine Beschreibung]" -#: include/identity.php:529 +#: include/identity.php:556 msgid "Event Reminders" msgstr "Veranstaltungserinnerungen" -#: include/identity.php:530 +#: include/identity.php:557 msgid "Events this week:" msgstr "Veranstaltungen diese Woche" -#: include/identity.php:558 +#: include/identity.php:585 msgid "j F, Y" msgstr "j F, Y" -#: include/identity.php:559 +#: include/identity.php:586 msgid "j F" msgstr "j F" -#: include/identity.php:566 +#: include/identity.php:593 msgid "Birthday:" msgstr "Geburtstag:" -#: include/identity.php:570 +#: include/identity.php:597 msgid "Age:" msgstr "Alter:" -#: include/identity.php:579 +#: include/identity.php:606 #, php-format msgid "for %1$d %2$s" msgstr "für %1$d %2$s" -#: include/identity.php:592 +#: include/identity.php:619 msgid "Religion:" msgstr "Religion:" -#: include/identity.php:596 +#: include/identity.php:623 msgid "Hobbies/Interests:" msgstr "Hobbies/Interessen:" -#: include/identity.php:603 +#: include/identity.php:630 msgid "Contact information and Social Networks:" msgstr "Kontaktinformationen und Soziale Netzwerke:" -#: include/identity.php:605 +#: include/identity.php:632 msgid "Musical interests:" msgstr "Musikalische Interessen:" -#: include/identity.php:607 +#: include/identity.php:634 msgid "Books, literature:" msgstr "Literatur/Bücher:" -#: include/identity.php:609 +#: include/identity.php:636 msgid "Television:" msgstr "Fernsehen:" -#: include/identity.php:611 +#: include/identity.php:638 msgid "Film/dance/culture/entertainment:" msgstr "Filme/Tänze/Kultur/Unterhaltung:" -#: include/identity.php:613 +#: include/identity.php:640 msgid "Love/Romance:" msgstr "Liebesleben:" -#: include/identity.php:615 +#: include/identity.php:642 msgid "Work/employment:" msgstr "Arbeit/Beschäftigung:" -#: include/identity.php:617 +#: include/identity.php:644 msgid "School/education:" msgstr "Schule/Ausbildung:" -#: include/identity.php:621 +#: include/identity.php:648 msgid "Forums:" msgstr "Foren:" -#: include/identity.php:650 include/nav.php:75 -msgid "Status" -msgstr "Status" - -#: include/identity.php:653 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" - -#: include/identity.php:661 -msgid "Profile Details" -msgstr "Profildetails" - -#: include/identity.php:674 include/identity.php:677 include/nav.php:78 +#: include/identity.php:701 include/identity.php:704 include/nav.php:78 msgid "Videos" msgstr "Videos" -#: include/identity.php:689 include/nav.php:140 +#: include/identity.php:716 include/nav.php:140 msgid "Events and Calendar" msgstr "Ereignisse und Kalender" -#: include/identity.php:697 +#: include/identity.php:724 msgid "Only You Can See This" msgstr "Nur Du kannst das sehen" @@ -7184,6 +7172,10 @@ msgid_plural "%d Contacts" msgstr[0] "%d Kontakt" msgstr[1] "%d Kontakte" +#: include/text.php:921 +msgid "View Contacts" +msgstr "Kontakte anzeigen" + #: include/text.php:1010 include/nav.php:121 msgid "Full Text" msgstr "Volltext" @@ -7336,15 +7328,15 @@ msgstr "Auf separater Seite ansehen" msgid "view on separate page" msgstr "auf separater Seite ansehen" -#: include/text.php:1997 +#: include/text.php:1995 msgid "activity" msgstr "Aktivität" -#: include/text.php:2000 +#: include/text.php:1998 msgid "post" msgstr "Beitrag" -#: include/text.php:2168 +#: include/text.php:2166 msgid "Item filed" msgstr "Beitrag abgelegt" @@ -7645,43 +7637,43 @@ msgstr "Navigation" msgid "Site map" msgstr "Sitemap" -#: include/api.php:321 include/api.php:332 include/api.php:441 -#: include/api.php:1160 include/api.php:1162 +#: include/api.php:343 include/api.php:354 include/api.php:463 +#: include/api.php:1182 include/api.php:1184 msgid "User not found." msgstr "Nutzer nicht gefunden." -#: include/api.php:808 +#: include/api.php:830 #, php-format msgid "Daily posting limit of %d posts reached. The post was rejected." msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." -#: include/api.php:827 +#: include/api.php:849 #, php-format msgid "Weekly posting limit of %d posts reached. The post was rejected." msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." -#: include/api.php:846 +#: include/api.php:868 #, php-format msgid "Monthly posting limit of %d posts reached. The post was rejected." msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen." -#: include/api.php:1369 +#: include/api.php:1391 msgid "There is no status with this id." msgstr "Es gibt keinen Status mit dieser ID." -#: include/api.php:1443 +#: include/api.php:1465 msgid "There is no conversation with this id." msgstr "Es existiert keine Unterhaltung mit dieser ID." -#: include/api.php:1722 +#: include/api.php:1744 msgid "Invalid item." msgstr "Ungültiges Objekt" -#: include/api.php:1732 +#: include/api.php:1754 msgid "Invalid action. " msgstr "Ungültige Aktion" -#: include/api.php:1740 +#: include/api.php:1762 msgid "DB error" msgstr "DB Error" @@ -7803,15 +7795,15 @@ msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\ msgid "Sharing notification from Diaspora network" msgstr "Freigabe-Benachrichtigung von Diaspora" -#: include/diaspora.php:2574 +#: include/diaspora.php:2606 msgid "Attachments:" msgstr "Anhänge:" -#: include/items.php:4871 +#: include/items.php:4897 msgid "Do you really want to delete this item?" msgstr "Möchtest Du wirklich dieses Item löschen?" -#: include/items.php:5146 +#: include/items.php:5172 msgid "Archives" msgstr "Archiv" diff --git a/view/de/strings.php b/view/de/strings.php index cfb5df6fed..e82b468126 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -5,6 +5,8 @@ function string_plural_select_de($n){ return ($n != 1);; }} ; +$a->strings["Network:"] = "Netzwerk"; +$a->strings["Forum"] = "Forum"; $a->strings["%d contact edited."] = array( 0 => "%d Kontakt bearbeitet.", 1 => "%d Kontakte bearbeitet", @@ -33,28 +35,11 @@ $a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)"; $a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)"; $a->strings["Suggest friends"] = "Kontakte vorschlagen"; $a->strings["Network type: %s"] = "Netzwerktyp: %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d gemeinsamer Kontakt", - 1 => "%d gemeinsame Kontakte", -); -$a->strings["View all contacts"] = "Alle Kontakte anzeigen"; -$a->strings["Unblock"] = "Entsperren"; -$a->strings["Block"] = "Sperren"; -$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten"; -$a->strings["Unignore"] = "Ignorieren aufheben"; -$a->strings["Ignore"] = "Ignorieren"; -$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten"; -$a->strings["Unarchive"] = "Aus Archiv zurückholen"; -$a->strings["Archive"] = "Archivieren"; -$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten"; -$a->strings["Repair"] = "Reparieren"; -$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen"; $a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!"; $a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen"; $a->strings["Disabled"] = "Deaktiviert"; $a->strings["Fetch information"] = "Beziehe Information"; $a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte"; -$a->strings["Contact Editor"] = "Kontakt Editor"; $a->strings["Submit"] = "Senden"; $a->strings["Profile Visibility"] = "Profil-Sichtbarkeit"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."; @@ -70,6 +55,10 @@ $a->strings["Last update:"] = "Letzte Aktualisierung: "; $a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren"; $a->strings["Update now"] = "Jetzt aktualisieren"; $a->strings["Connect/Follow"] = "Verbinden/Folgen"; +$a->strings["Unblock"] = "Entsperren"; +$a->strings["Block"] = "Sperren"; +$a->strings["Unignore"] = "Ignorieren aufheben"; +$a->strings["Ignore"] = "Ignorieren"; $a->strings["Currently blocked"] = "Derzeit geblockt"; $a->strings["Currently ignored"] = "Derzeit ignoriert"; $a->strings["Currently archived"] = "Momentan archiviert"; @@ -80,6 +69,9 @@ $a->strings["Send a notification of every new post of this contact"] = "Sende ei $a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte "; $a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"; $a->strings["Profile URL"] = "Profil URL"; +$a->strings["Location:"] = "Ort:"; +$a->strings["About:"] = "Über:"; +$a->strings["Tags:"] = "Tags"; $a->strings["Suggestions"] = "Kontaktvorschläge"; $a->strings["Suggest potential friends"] = "Freunde vorschlagen"; $a->strings["All Contacts"] = "Alle Kontakte"; @@ -99,7 +91,21 @@ $a->strings["Search your contacts"] = "Suche in deinen Kontakten"; $a->strings["Finding: "] = "Funde: "; $a->strings["Find"] = "Finde"; $a->strings["Update"] = "Aktualisierungen"; +$a->strings["Archive"] = "Archivieren"; +$a->strings["Unarchive"] = "Aus Archiv zurückholen"; $a->strings["Delete"] = "Löschen"; +$a->strings["Status"] = "Status"; +$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; +$a->strings["Profile"] = "Profil"; +$a->strings["Profile Details"] = "Profildetails"; +$a->strings["View all contacts"] = "Alle Kontakte anzeigen"; +$a->strings["Common Friends"] = "Gemeinsame Freunde"; +$a->strings["View all common friends"] = "Alle Kontakte anzeigen"; +$a->strings["Repair"] = "Reparieren"; +$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen"; +$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten"; +$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten"; +$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten"; $a->strings["Mutual Friendship"] = "Beidseitige Freundschaft"; $a->strings["is a fan of yours"] = "ist ein Fan von dir"; $a->strings["you are a fan of"] = "Du bist Fan von"; @@ -112,7 +118,6 @@ $a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht."; $a->strings["Permission denied"] = "Zugriff verweigert"; $a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner."; $a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit"; -$a->strings["Profile"] = "Profil"; $a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"; $a->strings["Visible To"] = "Sichtbar für"; $a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)"; @@ -206,9 +211,6 @@ $a->strings["Does %s know you?"] = "Kennt %s Dich?"; $a->strings["No"] = "Nein"; $a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:"; $a->strings["Your Identity Address:"] = "Adresse Deines Profils:"; -$a->strings["Location:"] = "Ort:"; -$a->strings["About:"] = "Über:"; -$a->strings["Tags:"] = "Tags"; $a->strings["Contact added"] = "Kontakt hinzugefügt"; $a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden."; $a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen."; @@ -229,6 +231,7 @@ $a->strings["Group removed."] = "Gruppe entfernt."; $a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen."; $a->strings["Group Editor"] = "Gruppeneditor"; $a->strings["Members"] = "Mitglieder"; +$a->strings["Group is empty"] = "Gruppe ist leer"; $a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können."; $a->strings["Applications"] = "Anwendungen"; $a->strings["No installed applications."] = "Keine Applikationen installiert."; @@ -297,8 +300,6 @@ $a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt tre $a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht"; $a->strings["{0} requested registration"] = "{0} möchte sich registrieren"; $a->strings["No contacts."] = "Keine Kontakte."; -$a->strings["Forum"] = "Forum"; -$a->strings["View Contacts"] = "Kontakte anzeigen"; $a->strings["Invalid request identifier."] = "Invalid request identifier."; $a->strings["Discard"] = "Verwerfen"; $a->strings["System"] = "System"; @@ -394,7 +395,6 @@ $a->strings["Please use your browser 'Back' button now if you a $a->strings["No mirroring"] = "Kein Spiegeln"; $a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge"; $a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge"; -$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren"; $a->strings["Return to contact editor"] = "Zurück zum Kontakteditor"; $a->strings["Refetch contact data"] = "Kontaktdaten neu laden"; $a->strings["Name"] = "Name"; @@ -721,12 +721,10 @@ $a->strings["Warning: This group contains %s member from an insecure network."] ); $a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."; $a->strings["No such group"] = "Es gibt keine solche Gruppe"; -$a->strings["Group is empty"] = "Gruppe ist leer"; $a->strings["Group: %s"] = "Gruppe: %s"; $a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."; $a->strings["Invalid contact."] = "Ungültiger Kontakt."; $a->strings["No friends to display."] = "Keine Freunde zum Anzeigen."; -$a->strings["Friends of %s"] = "Freunde von %s"; $a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt."; $a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."; $a->strings["Sun"] = "So"; @@ -996,7 +994,7 @@ $a->strings["Display Settings"] = "Anzeige-Einstellungen"; $a->strings["Display Theme:"] = "Theme:"; $a->strings["Mobile Theme:"] = "Mobiles Theme"; $a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimal 10 Sekunden, kein Maximum"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum sind 10 Sekeunden. Gib -1 ein um abzuschalten."; $a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "; $a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge"; $a->strings["Number of items to display per page when viewed from mobile device:"] = "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"; @@ -1154,8 +1152,6 @@ $a->strings["Only one search per minute is permitted for not logged in users."] $a->strings["Search"] = "Suche"; $a->strings["Items tagged with: %s"] = "Beiträge markiert mit: %s"; $a->strings["Search results for: %s"] = "Suchergebnisse für: %s"; -$a->strings["Age: "] = "Alter: "; -$a->strings["Gender: "] = "Geschlecht:"; $a->strings["Status:"] = "Status:"; $a->strings["Homepage:"] = "Homepage:"; $a->strings["Global Directory"] = "Weltweites Verzeichnis"; @@ -1172,7 +1168,6 @@ $a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte"; $a->strings["Add"] = "Hinzufügen"; $a->strings["No entries."] = "Keine Einträge."; $a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte."; -$a->strings["Common Friends"] = "Gemeinsame Freunde"; $a->strings["Export account"] = "Account exportieren"; $a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."; $a->strings["Export all"] = "Alles exportieren"; @@ -1259,6 +1254,7 @@ $a->strings["Love/romance"] = "Liebe/Romantik"; $a->strings["Work/employment"] = "Arbeit/Anstellung"; $a->strings["School/education"] = "Schule/Ausbildung"; $a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Dies ist Dein öffentliches Profil.
    Es könnte für jeden Nutzer des Internets sichtbar sein."; +$a->strings["Age: "] = "Alter: "; $a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile"; $a->strings["Change profile photo"] = "Profilbild ändern"; $a->strings["Create New Profile"] = "Neues Profil anlegen"; @@ -1445,6 +1441,10 @@ $a->strings["All Networks"] = "Alle Netzwerke"; $a->strings["Saved Folders"] = "Gespeicherte Ordner"; $a->strings["Everything"] = "Alles"; $a->strings["Categories"] = "Kategorien"; +$a->strings["%d contact in common"] = array( + 0 => "%d gemeinsamer Kontakt", + 1 => "%d gemeinsame Kontakte", +); $a->strings["General Features"] = "Allgemeine Features"; $a->strings["Multiple Profiles"] = "Mehrere Profile"; $a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen"; @@ -1536,7 +1536,6 @@ $a->strings["Atom feed"] = "Atom-Feed"; $a->strings["Message"] = "Nachricht"; $a->strings["Profiles"] = "Profile"; $a->strings["Manage/edit profiles"] = "Profile verwalten/editieren"; -$a->strings["Network:"] = "Netzwerk"; $a->strings["g A l F d"] = "l, d. F G \\U\\h\\r"; $a->strings["F d"] = "d. F"; $a->strings["[today]"] = "[heute]"; @@ -1561,9 +1560,6 @@ $a->strings["Love/Romance:"] = "Liebesleben:"; $a->strings["Work/employment:"] = "Arbeit/Beschäftigung:"; $a->strings["School/education:"] = "Schule/Ausbildung:"; $a->strings["Forums:"] = "Foren:"; -$a->strings["Status"] = "Status"; -$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; -$a->strings["Profile Details"] = "Profildetails"; $a->strings["Videos"] = "Videos"; $a->strings["Events and Calendar"] = "Ereignisse und Kalender"; $a->strings["Only You Can See This"] = "Nur Du kannst das sehen"; @@ -1654,6 +1650,7 @@ $a->strings["%d Contact"] = array( 0 => "%d Kontakt", 1 => "%d Kontakte", ); +$a->strings["View Contacts"] = "Kontakte anzeigen"; $a->strings["Full Text"] = "Volltext"; $a->strings["Tags"] = "Tags"; $a->strings["poke"] = "anstupsen"; From 053b69eee41d3c832646d8ba391fbf94b9a8ee3f Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 14 Dec 2015 16:30:28 +0100 Subject: [PATCH 428/443] FR update to the strings --- view/fr/messages.po | 1352 +++++++++++++++++++++---------------------- view/fr/strings.php | 111 ++-- 2 files changed, 726 insertions(+), 737 deletions(-) diff --git a/view/fr/messages.po b/view/fr/messages.po index beaa652175..7e38a4be31 100644 --- a/view/fr/messages.po +++ b/view/fr/messages.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-30 13:14+0100\n" -"PO-Revision-Date: 2015-12-11 01:05+0000\n" -"Last-Translator: Perig Gouanvic \n" +"POT-Creation-Date: 2015-12-14 07:48+0100\n" +"PO-Revision-Date: 2015-12-14 09:23+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" @@ -31,233 +31,182 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: mod/contacts.php:118 +#: mod/contacts.php:50 include/identity.php:380 +msgid "Network:" +msgstr "Réseau" + +#: mod/contacts.php:51 mod/contacts.php:986 mod/videos.php:37 +#: mod/viewcontacts.php:105 mod/dirfind.php:208 mod/network.php:596 +#: mod/allfriends.php:72 mod/match.php:82 mod/directory.php:172 +#: mod/common.php:124 mod/suggest.php:95 mod/photos.php:41 +#: include/identity.php:295 +msgid "Forum" +msgstr "Forum" + +#: mod/contacts.php:128 #, php-format msgid "%d contact edited." msgid_plural "%d contacts edited" msgstr[0] "%d contact édité" msgstr[1] "%d contacts édités." -#: mod/contacts.php:149 mod/contacts.php:372 +#: mod/contacts.php:159 mod/contacts.php:382 msgid "Could not access contact record." msgstr "Impossible d'accéder à l'enregistrement du contact." -#: mod/contacts.php:163 +#: mod/contacts.php:173 msgid "Could not locate selected profile." msgstr "Impossible de localiser le profil séléctionné." -#: mod/contacts.php:196 +#: mod/contacts.php:206 msgid "Contact updated." msgstr "Contact mis à jour." -#: mod/contacts.php:198 mod/dfrn_request.php:578 +#: mod/contacts.php:208 mod/dfrn_request.php:578 msgid "Failed to update contact record." msgstr "Échec de mise à jour du contact." -#: mod/contacts.php:354 mod/manage.php:96 mod/display.php:496 +#: mod/contacts.php:364 mod/manage.php:96 mod/display.php:496 #: 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:10 mod/follow.php:72 #: mod/follow.php:137 mod/item.php:169 mod/item.php:185 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:24 mod/notifications.php:69 -#: mod/message.php:45 mod/message.php:181 mod/crepair.php:120 +#: 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:11 mod/events.php:165 mod/wallmessage.php:9 +#: 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:116 mod/settings.php:635 mod/register.php:42 -#: mod/delegate.php:12 mod/common.php:17 mod/mood.php:114 mod/suggest.php:58 +#: mod/settings.php:116 mod/settings.php:637 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:163 mod/photos.php:1097 mod/regmod.php:110 -#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5041 index.php:382 +#: mod/photos.php:171 mod/photos.php:1105 mod/regmod.php:110 +#: mod/uimport.php:23 mod/attach.php:33 include/items.php:5067 index.php:382 msgid "Permission denied." msgstr "Permission refusée." -#: mod/contacts.php:393 +#: mod/contacts.php:403 msgid "Contact has been blocked" msgstr "Le contact a été bloqué" -#: mod/contacts.php:393 +#: mod/contacts.php:403 msgid "Contact has been unblocked" msgstr "Le contact n'est plus bloqué" -#: mod/contacts.php:404 +#: mod/contacts.php:414 msgid "Contact has been ignored" msgstr "Le contact a été ignoré" -#: mod/contacts.php:404 +#: mod/contacts.php:414 msgid "Contact has been unignored" msgstr "Le contact n'est plus ignoré" -#: mod/contacts.php:416 +#: mod/contacts.php:426 msgid "Contact has been archived" msgstr "Contact archivé" -#: mod/contacts.php:416 +#: mod/contacts.php:426 msgid "Contact has been unarchived" msgstr "Contact désarchivé" -#: mod/contacts.php:443 mod/contacts.php:817 +#: mod/contacts.php:453 mod/contacts.php:801 msgid "Do you really want to delete this contact?" msgstr "Voulez-vous vraiment supprimer ce contact?" -#: mod/contacts.php:445 mod/follow.php:105 mod/message.php:216 -#: mod/settings.php:1091 mod/settings.php:1097 mod/settings.php:1105 -#: mod/settings.php:1109 mod/settings.php:1114 mod/settings.php:1120 -#: mod/settings.php:1126 mod/settings.php:1132 mod/settings.php:1158 -#: mod/settings.php:1159 mod/settings.php:1160 mod/settings.php:1161 -#: mod/settings.php:1162 mod/dfrn_request.php:850 mod/register.php:238 +#: mod/contacts.php:455 mod/follow.php:105 mod/message.php:216 +#: mod/settings.php:1094 mod/settings.php:1100 mod/settings.php:1108 +#: mod/settings.php:1112 mod/settings.php:1117 mod/settings.php:1123 +#: mod/settings.php:1129 mod/settings.php:1135 mod/settings.php:1161 +#: mod/settings.php:1162 mod/settings.php:1163 mod/settings.php:1164 +#: mod/settings.php:1165 mod/dfrn_request.php:850 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:4873 +#: mod/profiles.php:687 mod/api.php:105 include/items.php:4899 msgid "Yes" msgstr "Oui" -#: mod/contacts.php:448 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:116 -#: mod/videos.php:123 mod/message.php:219 mod/fbrowser.php:93 -#: mod/fbrowser.php:128 mod/settings.php:649 mod/settings.php:675 -#: mod/dfrn_request.php:864 mod/suggest.php:32 mod/editpost.php:147 -#: mod/photos.php:239 mod/photos.php:328 include/conversation.php:1221 -#: include/items.php:4876 +#: mod/contacts.php:458 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:116 +#: mod/videos.php:131 mod/message.php:219 mod/fbrowser.php:93 +#: mod/fbrowser.php:128 mod/settings.php:651 mod/settings.php:677 +#: mod/dfrn_request.php:864 mod/suggest.php:32 mod/editpost.php:148 +#: mod/photos.php:247 mod/photos.php:336 include/conversation.php:1221 +#: include/items.php:4902 msgid "Cancel" msgstr "Annuler" -#: mod/contacts.php:460 +#: mod/contacts.php:470 msgid "Contact has been removed." msgstr "Ce contact a été retiré." -#: mod/contacts.php:498 +#: mod/contacts.php:511 #, php-format msgid "You are mutual friends with %s" msgstr "Vous êtes ami (et réciproquement) avec %s" -#: mod/contacts.php:502 +#: mod/contacts.php:515 #, php-format msgid "You are sharing with %s" msgstr "Vous partagez avec %s" -#: mod/contacts.php:507 +#: mod/contacts.php:520 #, php-format msgid "%s is sharing with you" msgstr "%s partage avec vous" -#: mod/contacts.php:527 +#: mod/contacts.php:540 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:645 +#: mod/contacts.php:543 mod/admin.php:645 msgid "Never" msgstr "Jamais" -#: mod/contacts.php:534 +#: mod/contacts.php:547 msgid "(Update was successful)" msgstr "(Mise à jour effectuée avec succès)" -#: mod/contacts.php:534 +#: mod/contacts.php:547 msgid "(Update was not successful)" msgstr "(Échec de la mise à jour)" -#: mod/contacts.php:536 +#: mod/contacts.php:549 msgid "Suggest friends" msgstr "Suggérer amitié/contact" -#: mod/contacts.php:540 +#: mod/contacts.php:553 #, php-format msgid "Network type: %s" msgstr "Type de réseau %s" -#: mod/contacts.php:543 include/contact_widgets.php:237 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d contact en commun" -msgstr[1] "%d contacts en commun" - -#: mod/contacts.php:548 -msgid "View all contacts" -msgstr "Voir tous les contacts" - -#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:821 -#: mod/admin.php:1117 -msgid "Unblock" -msgstr "Débloquer" - -#: mod/contacts.php:553 mod/contacts.php:636 mod/contacts.php:821 -#: mod/admin.php:1116 -msgid "Block" -msgstr "Bloquer" - -#: mod/contacts.php:556 -msgid "Toggle Blocked status" -msgstr "(dés)activer l'état \"bloqué\"" - -#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:822 -msgid "Unignore" -msgstr "Ne plus ignorer" - -#: mod/contacts.php:561 mod/contacts.php:637 mod/contacts.php:822 -#: mod/notifications.php:54 mod/notifications.php:179 -#: mod/notifications.php:259 -msgid "Ignore" -msgstr "Ignorer" - -#: mod/contacts.php:564 -msgid "Toggle Ignored status" -msgstr "(dés)activer l'état \"ignoré\"" - -#: mod/contacts.php:570 mod/contacts.php:823 -msgid "Unarchive" -msgstr "Désarchiver" - -#: mod/contacts.php:570 mod/contacts.php:823 -msgid "Archive" -msgstr "Archiver" - -#: mod/contacts.php:573 -msgid "Toggle Archive status" -msgstr "(dés)activer l'état \"archivé\"" - -#: mod/contacts.php:578 -msgid "Repair" -msgstr "Réparer" - -#: mod/contacts.php:581 -msgid "Advanced Contact Settings" -msgstr "Réglages avancés du contact" - -#: mod/contacts.php:589 +#: mod/contacts.php:566 msgid "Communications lost with this contact!" msgstr "Communications perdues avec ce contact !" -#: mod/contacts.php:592 +#: mod/contacts.php:569 msgid "Fetch further information for feeds" msgstr "Chercher plus d'informations pour les flux" -#: mod/contacts.php:593 mod/admin.php:654 +#: mod/contacts.php:570 mod/admin.php:654 msgid "Disabled" msgstr "Désactivé" -#: mod/contacts.php:593 +#: mod/contacts.php:570 msgid "Fetch information" msgstr "Récupérer informations" -#: mod/contacts.php:593 +#: mod/contacts.php:570 msgid "Fetch information and keywords" msgstr "Récupérer informations" -#: mod/contacts.php:606 -msgid "Contact Editor" -msgstr "Éditeur de contact" - -#: mod/contacts.php:608 mod/manage.php:143 mod/fsuggest.php:107 -#: mod/message.php:342 mod/message.php:525 mod/crepair.php:195 +#: mod/contacts.php:586 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:1129 mod/photos.php:1253 mod/photos.php:1571 -#: mod/photos.php:1622 mod/photos.php:1670 mod/photos.php:1758 +#: 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 @@ -266,208 +215,303 @@ msgstr "Éditeur de contact" msgid "Submit" msgstr "Envoyer" -#: mod/contacts.php:609 +#: mod/contacts.php:587 msgid "Profile Visibility" msgstr "Visibilité du profil" -#: mod/contacts.php:610 +#: mod/contacts.php:588 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée." -#: mod/contacts.php:611 +#: mod/contacts.php:589 msgid "Contact Information / Notes" msgstr "Informations de contact / Notes" -#: mod/contacts.php:612 +#: mod/contacts.php:590 msgid "Edit contact notes" msgstr "Éditer les notes des contacts" -#: mod/contacts.php:617 mod/contacts.php:861 mod/viewcontacts.php:77 +#: mod/contacts.php:595 mod/contacts.php:977 mod/viewcontacts.php:97 #: mod/nogroup.php:41 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visiter le profil de %s [%s]" -#: mod/contacts.php:618 +#: mod/contacts.php:596 msgid "Block/Unblock contact" msgstr "Bloquer/débloquer ce contact" -#: mod/contacts.php:619 +#: mod/contacts.php:597 msgid "Ignore contact" msgstr "Ignorer ce contact" -#: mod/contacts.php:620 +#: mod/contacts.php:598 msgid "Repair URL settings" msgstr "Réglages de réparation des URL" -#: mod/contacts.php:621 +#: mod/contacts.php:599 msgid "View conversations" msgstr "Voir les conversations" -#: mod/contacts.php:623 +#: mod/contacts.php:601 msgid "Delete contact" msgstr "Effacer ce contact" -#: mod/contacts.php:627 +#: mod/contacts.php:605 msgid "Last update:" msgstr "Dernière mise-à-jour :" -#: mod/contacts.php:629 +#: mod/contacts.php:607 msgid "Update public posts" msgstr "Mettre à jour les publications publiques:" -#: mod/contacts.php:631 mod/admin.php:1653 +#: mod/contacts.php:609 mod/admin.php:1653 msgid "Update now" msgstr "Mettre à jour" -#: mod/contacts.php:633 mod/dirfind.php:190 mod/allfriends.php:67 +#: mod/contacts.php:611 mod/dirfind.php:190 mod/allfriends.php:60 #: mod/match.php:71 mod/suggest.php:82 include/contact_widgets.php:32 #: include/Contact.php:321 include/conversation.php:924 msgid "Connect/Follow" msgstr "Connecter/Suivre" -#: mod/contacts.php:640 +#: mod/contacts.php:614 mod/contacts.php:805 mod/contacts.php:864 +#: mod/admin.php:1117 +msgid "Unblock" +msgstr "Débloquer" + +#: mod/contacts.php:614 mod/contacts.php:805 mod/contacts.php:864 +#: mod/admin.php:1116 +msgid "Block" +msgstr "Bloquer" + +#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:871 +msgid "Unignore" +msgstr "Ne plus ignorer" + +#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:871 +#: mod/notifications.php:54 mod/notifications.php:179 +#: mod/notifications.php:259 +msgid "Ignore" +msgstr "Ignorer" + +#: mod/contacts.php:618 msgid "Currently blocked" msgstr "Actuellement bloqué" -#: mod/contacts.php:641 +#: mod/contacts.php:619 msgid "Currently ignored" msgstr "Actuellement ignoré" -#: mod/contacts.php:642 +#: mod/contacts.php:620 msgid "Currently archived" msgstr "Actuellement archivé" -#: mod/contacts.php:643 mod/notifications.php:172 mod/notifications.php:251 +#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:251 msgid "Hide this contact from others" msgstr "Cacher ce contact aux autres" -#: mod/contacts.php:643 +#: mod/contacts.php:621 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Les réponses et \"j'aime\" à vos publications publiques peuvent être toujours visibles" -#: mod/contacts.php:644 +#: mod/contacts.php:622 msgid "Notification for new posts" msgstr "Notification des nouvelles publications" -#: mod/contacts.php:644 +#: mod/contacts.php:622 msgid "Send a notification of every new post of this contact" msgstr "Envoyer une notification de chaque nouveau message en provenance de ce contact" -#: mod/contacts.php:647 +#: mod/contacts.php:625 msgid "Blacklisted keywords" msgstr "Mots-clés sur la liste noire" -#: mod/contacts.php:647 +#: mod/contacts.php:625 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "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:654 mod/follow.php:121 mod/notifications.php:255 +#: mod/contacts.php:632 mod/follow.php:121 mod/notifications.php:255 msgid "Profile URL" msgstr "URL du Profil" -#: mod/contacts.php:700 +#: mod/contacts.php:635 mod/follow.php:125 mod/notifications.php:244 +#: mod/events.php:566 mod/directory.php:145 include/identity.php:304 +#: include/bb2diaspora.php:170 include/event.php:36 include/event.php:60 +msgid "Location:" +msgstr "Localisation:" + +#: mod/contacts.php:637 mod/follow.php:127 mod/notifications.php:246 +#: mod/directory.php:153 include/identity.php:313 include/identity.php:621 +msgid "About:" +msgstr "À propos:" + +#: mod/contacts.php:639 mod/follow.php:129 mod/notifications.php:248 +#: include/identity.php:615 +msgid "Tags:" +msgstr "Étiquette:" + +#: mod/contacts.php:684 msgid "Suggestions" msgstr "Suggestions" -#: mod/contacts.php:703 +#: mod/contacts.php:687 msgid "Suggest potential friends" msgstr "Suggérer des amis potentiels" -#: mod/contacts.php:708 mod/group.php:192 +#: mod/contacts.php:692 mod/group.php:192 msgid "All Contacts" msgstr "Tous les contacts" -#: mod/contacts.php:711 +#: mod/contacts.php:695 msgid "Show all contacts" msgstr "Montrer tous les contacts" -#: mod/contacts.php:716 +#: mod/contacts.php:700 msgid "Unblocked" msgstr "Non-bloqués" -#: mod/contacts.php:719 +#: mod/contacts.php:703 msgid "Only show unblocked contacts" msgstr "Ne montrer que les contacts non-bloqués" -#: mod/contacts.php:725 +#: mod/contacts.php:709 msgid "Blocked" msgstr "Bloqués" -#: mod/contacts.php:728 +#: mod/contacts.php:712 msgid "Only show blocked contacts" msgstr "Ne montrer que les contacts bloqués" -#: mod/contacts.php:734 +#: mod/contacts.php:718 msgid "Ignored" msgstr "Ignorés" -#: mod/contacts.php:737 +#: mod/contacts.php:721 msgid "Only show ignored contacts" msgstr "Ne montrer que les contacts ignorés" -#: mod/contacts.php:743 +#: mod/contacts.php:727 msgid "Archived" msgstr "Archivés" -#: mod/contacts.php:746 +#: mod/contacts.php:730 msgid "Only show archived contacts" msgstr "Ne montrer que les contacts archivés" -#: mod/contacts.php:752 +#: mod/contacts.php:736 msgid "Hidden" msgstr "Cachés" -#: mod/contacts.php:755 +#: mod/contacts.php:739 msgid "Only show hidden contacts" msgstr "Ne montrer que les contacts masqués" -#: mod/contacts.php:808 include/text.php:1012 include/nav.php:123 -#: include/nav.php:187 view/theme/diabook/theme.php:125 +#: mod/contacts.php:792 mod/contacts.php:840 mod/viewcontacts.php:116 +#: include/identity.php:732 include/identity.php:735 include/text.php:1012 +#: include/nav.php:123 include/nav.php:187 view/theme/diabook/theme.php:125 msgid "Contacts" msgstr "Contacts" -#: mod/contacts.php:812 +#: mod/contacts.php:796 msgid "Search your contacts" msgstr "Rechercher dans vos contacts" -#: mod/contacts.php:813 +#: mod/contacts.php:797 msgid "Finding: " msgstr "Trouvé: " -#: mod/contacts.php:814 mod/directory.php:202 include/contact_widgets.php:34 +#: mod/contacts.php:798 mod/directory.php:210 include/contact_widgets.php:34 msgid "Find" msgstr "Trouver" -#: mod/contacts.php:820 mod/settings.php:146 mod/settings.php:674 +#: mod/contacts.php:804 mod/settings.php:146 mod/settings.php:676 msgid "Update" msgstr "Mises-à-jour" -#: mod/contacts.php:824 mod/group.php:171 mod/admin.php:1115 -#: mod/content.php:440 mod/content.php:743 mod/settings.php:711 -#: mod/photos.php:1715 object/Item.php:134 include/conversation.php:635 +#: mod/contacts.php:807 mod/contacts.php:878 +msgid "Archive" +msgstr "Archiver" + +#: mod/contacts.php:807 mod/contacts.php:878 +msgid "Unarchive" +msgstr "Désarchiver" + +#: mod/contacts.php:808 mod/group.php:171 mod/admin.php:1115 +#: mod/content.php:440 mod/content.php:743 mod/settings.php:713 +#: mod/photos.php:1723 object/Item.php:134 include/conversation.php:635 msgid "Delete" msgstr "Supprimer" -#: mod/contacts.php:837 +#: mod/contacts.php:821 include/identity.php:677 include/nav.php:75 +msgid "Status" +msgstr "Statut" + +#: mod/contacts.php:824 include/identity.php:680 +msgid "Status Messages and Posts" +msgstr "Messages d'état et publications" + +#: mod/contacts.php:829 mod/profperm.php:104 mod/newmember.php:32 +#: include/identity.php:569 include/identity.php:655 include/identity.php:685 +#: include/nav.php:76 view/theme/diabook/theme.php:124 +msgid "Profile" +msgstr "Profil" + +#: mod/contacts.php:832 include/identity.php:688 +msgid "Profile Details" +msgstr "Détails du profil" + +#: mod/contacts.php:843 +msgid "View all contacts" +msgstr "Voir tous les contacts" + +#: mod/contacts.php:849 mod/common.php:135 +msgid "Common Friends" +msgstr "Amis communs" + +#: mod/contacts.php:852 +msgid "View all common friends" +msgstr "" + +#: mod/contacts.php:856 +msgid "Repair" +msgstr "Réparer" + +#: mod/contacts.php:859 +msgid "Advanced Contact Settings" +msgstr "Réglages avancés du contact" + +#: mod/contacts.php:867 +msgid "Toggle Blocked status" +msgstr "(dés)activer l'état \"bloqué\"" + +#: mod/contacts.php:874 +msgid "Toggle Ignored status" +msgstr "(dés)activer l'état \"ignoré\"" + +#: mod/contacts.php:881 +msgid "Toggle Archive status" +msgstr "(dés)activer l'état \"archivé\"" + +#: mod/contacts.php:949 msgid "Mutual Friendship" msgstr "Relation réciproque" -#: mod/contacts.php:841 +#: mod/contacts.php:953 msgid "is a fan of yours" msgstr "Vous suit" -#: mod/contacts.php:845 +#: mod/contacts.php:957 msgid "you are a fan of" msgstr "Vous le/la suivez" -#: mod/contacts.php:862 mod/nogroup.php:42 +#: mod/contacts.php:978 mod/nogroup.php:42 msgid "Edit contact" msgstr "Éditer le contact" @@ -505,13 +549,7 @@ msgstr "Identifiant de profil invalide." msgid "Profile Visibility Editor" msgstr "Éditer la visibilité du profil" -#: mod/profperm.php:104 mod/newmember.php:32 include/identity.php:542 -#: include/identity.php:628 include/identity.php:658 include/nav.php:76 -#: view/theme/diabook/theme.php:124 -msgid "Profile" -msgstr "Profil" - -#: mod/profperm.php:106 mod/group.php:222 +#: mod/profperm.php:106 mod/group.php:223 msgid "Click on a contact to add or remove." msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer." @@ -525,13 +563,13 @@ msgstr "Tous les contacts (ayant un accès sécurisé)" #: mod/display.php:82 mod/display.php:283 mod/display.php:500 #: mod/viewsrc.php:15 mod/admin.php:196 mod/admin.php:1160 mod/admin.php:1381 -#: mod/notice.php:15 include/items.php:4832 +#: mod/notice.php:15 include/items.php:4858 msgid "Item not found." msgstr "Élément introuvable." -#: mod/display.php:211 mod/videos.php:189 mod/viewcontacts.php:19 +#: mod/display.php:211 mod/videos.php:197 mod/viewcontacts.php:35 #: mod/community.php:18 mod/dfrn_request.php:779 mod/search.php:93 -#: mod/search.php:99 mod/directory.php:37 mod/photos.php:968 +#: mod/search.php:99 mod/directory.php:37 mod/photos.php:976 msgid "Public access denied." msgstr "Accès public refusé." @@ -757,9 +795,9 @@ msgstr "Image envoyée, mais impossible de la retailler." #: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 #: mod/profile_photo.php:210 mod/profile_photo.php:302 -#: mod/profile_photo.php:311 mod/photos.php:70 mod/photos.php:184 -#: mod/photos.php:767 mod/photos.php:1237 mod/photos.php:1260 -#: mod/photos.php:1854 include/user.php:345 include/user.php:352 +#: 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 "Photos du profil" @@ -780,12 +818,12 @@ msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache msgid "Unable to process image" msgstr "Impossible de traiter l'image" -#: mod/profile_photo.php:150 mod/wall_upload.php:151 mod/photos.php:803 +#: mod/profile_photo.php:150 mod/wall_upload.php:151 mod/photos.php:811 #, 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/wall_upload.php:183 mod/photos.php:843 +#: mod/profile_photo.php:159 mod/wall_upload.php:183 mod/photos.php:851 msgid "Unable to process image." msgstr "Impossible de traiter l'image." @@ -829,13 +867,13 @@ msgstr "Édition terminée" msgid "Image uploaded successfully." msgstr "Image téléversée avec succès." -#: mod/profile_photo.php:307 mod/wall_upload.php:216 mod/photos.php:870 +#: mod/profile_photo.php:307 mod/wall_upload.php:216 mod/photos.php:878 msgid "Image upload failed." msgstr "Le téléversement de l'image a échoué." #: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 #: include/conversation.php:130 include/conversation.php:266 -#: include/text.php:1995 include/diaspora.php:2140 +#: include/text.php:1993 include/diaspora.php:2146 #: view/theme/diabook/theme.php:471 msgid "photo" msgstr "photo" @@ -843,7 +881,7 @@ msgstr "photo" #: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 mod/like.php:346 #: include/conversation.php:125 include/conversation.php:134 #: include/conversation.php:261 include/conversation.php:270 -#: include/diaspora.php:2140 view/theme/diabook/theme.php:466 +#: include/diaspora.php:2146 view/theme/diabook/theme.php:466 #: view/theme/diabook/theme.php:475 msgid "status" msgstr "le statut" @@ -875,27 +913,27 @@ msgstr "" #: mod/ostatus_subscribe.php:25 msgid "No contact provided." -msgstr "" +msgstr "Pas de contact fourni." #: mod/ostatus_subscribe.php:30 msgid "Couldn't fetch information for contact." -msgstr "" +msgstr "Impossible de récupérer les informations pour ce contact." #: mod/ostatus_subscribe.php:38 msgid "Couldn't fetch friends for contact." -msgstr "" +msgstr "Impossible de récupérer les amis de ce contact." #: mod/ostatus_subscribe.php:51 mod/repair_ostatus.php:44 msgid "Done" -msgstr "" +msgstr "Terminé" #: mod/ostatus_subscribe.php:65 msgid "success" -msgstr "" +msgstr "réussite" #: mod/ostatus_subscribe.php:67 msgid "failed" -msgstr "" +msgstr "échec" #: mod/ostatus_subscribe.php:69 object/Item.php:235 msgid "ignored" @@ -914,7 +952,7 @@ msgstr "Sauver dans le Dossier:" msgid "- select -" msgstr "- choisir -" -#: mod/filer.php:31 mod/editpost.php:108 mod/notes.php:61 +#: mod/filer.php:31 mod/editpost.php:109 mod/notes.php:61 #: include/text.php:1004 msgid "Save" msgstr "Sauver" @@ -948,11 +986,11 @@ msgstr "Merci de répondre à ce qui suit:" msgid "Does %s know you?" msgstr "Est-ce que %s vous connaît?" -#: mod/follow.php:105 mod/settings.php:1091 mod/settings.php:1097 -#: mod/settings.php:1105 mod/settings.php:1109 mod/settings.php:1114 -#: mod/settings.php:1120 mod/settings.php:1126 mod/settings.php:1132 -#: mod/settings.php:1158 mod/settings.php:1159 mod/settings.php:1160 -#: mod/settings.php:1161 mod/settings.php:1162 mod/dfrn_request.php:850 +#: mod/follow.php:105 mod/settings.php:1094 mod/settings.php:1100 +#: mod/settings.php:1108 mod/settings.php:1112 mod/settings.php:1117 +#: mod/settings.php:1123 mod/settings.php:1129 mod/settings.php:1135 +#: mod/settings.php:1161 mod/settings.php:1162 mod/settings.php:1163 +#: mod/settings.php:1164 mod/settings.php:1165 mod/dfrn_request.php:850 #: mod/register.php:239 mod/profiles.php:658 mod/profiles.php:662 #: mod/profiles.php:687 mod/api.php:106 msgid "No" @@ -966,21 +1004,6 @@ msgstr "Ajouter une note personnelle:" msgid "Your Identity Address:" msgstr "Votre adresse d'identité:" -#: mod/follow.php:125 mod/notifications.php:244 mod/events.php:566 -#: mod/directory.php:139 include/identity.php:278 include/bb2diaspora.php:170 -#: include/event.php:36 include/event.php:60 -msgid "Location:" -msgstr "Localisation:" - -#: mod/follow.php:127 mod/notifications.php:246 mod/directory.php:147 -#: include/identity.php:287 include/identity.php:594 -msgid "About:" -msgstr "À propos:" - -#: mod/follow.php:129 mod/notifications.php:248 include/identity.php:588 -msgid "Tags:" -msgstr "Étiquette:" - #: mod/follow.php:162 msgid "Contact added" msgstr "Contact ajouté" @@ -1070,6 +1093,10 @@ msgstr "Éditeur de groupe" msgid "Members" msgstr "Membres" +#: mod/group.php:193 mod/network.php:563 mod/content.php:130 +msgid "Group is empty" +msgstr "Groupe vide" + #: mod/apps.php:7 index.php:225 msgid "You must be logged in to use addons. " msgstr "Vous devez être connecté pour utiliser les greffons." @@ -1088,7 +1115,7 @@ msgid "Profile not found." msgstr "Profil introuvable." #: mod/dfrn_confirm.php:120 mod/fsuggest.php:20 mod/fsuggest.php:92 -#: mod/crepair.php:134 +#: mod/crepair.php:131 msgid "Contact not found." msgstr "Contact introuvable." @@ -1168,7 +1195,7 @@ msgstr "Impossible de vous définir des permissions sur notre système." 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:753 mod/dfrn_request.php:734 include/items.php:4244 +#: mod/dfrn_confirm.php:753 mod/dfrn_request.php:734 include/items.php:4270 msgid "[Name Withheld]" msgstr "[Nom non-publié]" @@ -1177,7 +1204,7 @@ msgstr "[Nom non-publié]" msgid "%1$s has joined %2$s" msgstr "%1$s a rejoint %2$s" -#: mod/profile.php:21 include/identity.php:82 +#: mod/profile.php:21 include/identity.php:52 msgid "Requested profile is not available." msgstr "Le profil demandé n'est pas disponible." @@ -1185,35 +1212,35 @@ msgstr "Le profil demandé n'est pas disponible." msgid "Tips for New Members" msgstr "Conseils aux nouveaux venus" -#: mod/videos.php:115 +#: mod/videos.php:123 msgid "Do you really want to delete this video?" msgstr "Voulez-vous vraiment supprimer cette vidéo?" -#: mod/videos.php:120 +#: mod/videos.php:128 msgid "Delete Video" msgstr "Supprimer la vidéo" -#: mod/videos.php:199 +#: mod/videos.php:207 msgid "No videos selected" msgstr "Pas de vidéo sélectionné" -#: mod/videos.php:300 mod/photos.php:1079 +#: mod/videos.php:308 mod/photos.php:1087 msgid "Access to this item is restricted." msgstr "Accès restreint à cet élément." -#: mod/videos.php:375 include/text.php:1465 +#: mod/videos.php:383 include/text.php:1465 msgid "View Video" msgstr "Regarder la vidéo" -#: mod/videos.php:382 mod/photos.php:1882 +#: mod/videos.php:390 mod/photos.php:1890 msgid "View Album" msgstr "Voir l'album" -#: mod/videos.php:391 +#: mod/videos.php:399 msgid "Recent Videos" msgstr "Vidéos récente" -#: mod/videos.php:393 +#: mod/videos.php:401 msgid "Upload New Videos" msgstr "Téléversé une nouvelle vidéo" @@ -1237,7 +1264,7 @@ msgstr "Suggérer un ami/contact pour %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:1711 +#: mod/wall_attach.php:25 mod/wall_attach.php:76 include/api.php:1733 msgid "Invalid request." msgstr "Requête invalide." @@ -1293,7 +1320,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:1295 +#: mod/lostpass.php:109 boot.php:1307 msgid "Password Reset" msgstr "Réinitialiser le mot de passe" @@ -1368,11 +1395,11 @@ msgid "Reset" msgstr "Réinitialiser" #: mod/like.php:170 include/conversation.php:122 include/conversation.php:258 -#: include/text.php:1993 view/theme/diabook/theme.php:463 +#: include/text.php:1991 view/theme/diabook/theme.php:463 msgid "event" msgstr "évènement" -#: mod/like.php:187 include/conversation.php:141 include/diaspora.php:2156 +#: mod/like.php:187 include/conversation.php:141 include/diaspora.php:2162 #: view/theme/diabook/theme.php:480 #, php-format msgid "%1$s likes %2$s's %3$s" @@ -1398,32 +1425,22 @@ msgstr "%1$s ne participe pas à %3$s de %2$s" msgid "%1$s may attend %2$s's %3$s" msgstr "%1$s participera peut-être à %3$s de %2$s" -#: mod/ping.php:273 +#: mod/ping.php:265 msgid "{0} wants to be your friend" msgstr "{0} souhaite être votre ami(e)" -#: mod/ping.php:288 +#: mod/ping.php:280 msgid "{0} sent you a message" msgstr "{0} vous a envoyé un message" -#: mod/ping.php:303 +#: mod/ping.php:295 msgid "{0} requested registration" msgstr "{0} a demandé à s'inscrire" -#: mod/viewcontacts.php:52 +#: mod/viewcontacts.php:72 msgid "No contacts." msgstr "Aucun contact." -#: mod/viewcontacts.php:85 mod/dirfind.php:208 mod/network.php:596 -#: mod/allfriends.php:79 mod/match.php:82 mod/common.php:122 -#: mod/suggest.php:95 -msgid "Forum" -msgstr "Forum" - -#: mod/viewcontacts.php:96 include/text.php:921 -msgid "View Contacts" -msgstr "Voir les contacts" - #: mod/notifications.php:29 msgid "Invalid request identifier." msgstr "Identifiant de demande invalide." @@ -1533,8 +1550,8 @@ msgstr "Demande de connexion/relation" msgid "New Follower" msgstr "Nouvel abonné" -#: mod/notifications.php:250 mod/directory.php:141 include/identity.php:280 -#: include/identity.php:553 +#: mod/notifications.php:250 mod/directory.php:147 include/identity.php:306 +#: include/identity.php:580 msgid "Gender:" msgstr "Genre:" @@ -1727,18 +1744,18 @@ msgid "Your message:" msgstr "Votre message:" #: mod/message.php:339 mod/message.php:523 mod/wallmessage.php:154 -#: mod/editpost.php:109 include/conversation.php:1184 +#: mod/editpost.php:110 include/conversation.php:1184 msgid "Upload photo" msgstr "Joindre photo" #: mod/message.php:340 mod/message.php:524 mod/wallmessage.php:155 -#: mod/editpost.php:113 include/conversation.php:1188 +#: mod/editpost.php:114 include/conversation.php:1188 msgid "Insert web link" msgstr "Insérer lien web" #: mod/message.php:341 mod/message.php:526 mod/content.php:501 -#: mod/content.php:885 mod/wallmessage.php:156 mod/editpost.php:123 -#: mod/photos.php:1602 object/Item.php:396 include/conversation.php:713 +#: 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:1202 msgid "Please wait" msgstr "Patientez" @@ -1800,103 +1817,99 @@ msgstr[1] "%d messages" msgid "[Embedded content - reload page to view]" msgstr "[contenu incorporé - rechargez la page pour le voir]" -#: mod/crepair.php:107 +#: mod/crepair.php:104 msgid "Contact settings applied." msgstr "Réglages du contact appliqués." -#: mod/crepair.php:109 +#: mod/crepair.php:106 msgid "Contact update failed." msgstr "Impossible d'appliquer les réglages." -#: mod/crepair.php:140 +#: 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 "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact." -#: mod/crepair.php:141 +#: mod/crepair.php:138 msgid "" "Please use your browser 'Back' button now if you are " "uncertain what to do on this page." msgstr "une photo" -#: mod/crepair.php:154 mod/crepair.php:156 +#: mod/crepair.php:151 mod/crepair.php:153 msgid "No mirroring" msgstr "Pas de miroir" -#: mod/crepair.php:154 +#: mod/crepair.php:151 msgid "Mirror as forwarded posting" msgstr "" -#: mod/crepair.php:154 mod/crepair.php:156 +#: mod/crepair.php:151 mod/crepair.php:153 msgid "Mirror as my own posting" msgstr "" -#: mod/crepair.php:162 -msgid "Repair Contact Settings" -msgstr "Réglages de réparation des contacts" - -#: mod/crepair.php:166 +#: mod/crepair.php:167 msgid "Return to contact editor" msgstr "Retour à l'éditeur de contact" -#: mod/crepair.php:168 +#: mod/crepair.php:169 msgid "Refetch contact data" msgstr "Récupérer à nouveau les données de contact" -#: mod/crepair.php:169 mod/admin.php:1111 mod/admin.php:1123 -#: mod/admin.php:1124 mod/admin.php:1137 mod/settings.php:650 -#: mod/settings.php:676 +#: mod/crepair.php:170 mod/admin.php:1111 mod/admin.php:1123 +#: mod/admin.php:1124 mod/admin.php:1137 mod/settings.php:652 +#: mod/settings.php:678 msgid "Name" msgstr "Nom" -#: mod/crepair.php:170 +#: mod/crepair.php:171 msgid "Account Nickname" msgstr "Pseudo du compte" -#: mod/crepair.php:171 +#: mod/crepair.php:172 msgid "@Tagname - overrides Name/Nickname" msgstr "@NomEtiquette - prend le pas sur Nom/Pseudo" -#: mod/crepair.php:172 +#: mod/crepair.php:173 msgid "Account URL" msgstr "URL du compte" -#: mod/crepair.php:173 +#: mod/crepair.php:174 msgid "Friend Request URL" msgstr "Echec du téléversement de l'image." -#: mod/crepair.php:174 +#: mod/crepair.php:175 msgid "Friend Confirm URL" msgstr "Accès public refusé." -#: mod/crepair.php:175 +#: mod/crepair.php:176 msgid "Notification Endpoint URL" msgstr "Aucune photo sélectionnée" -#: mod/crepair.php:176 +#: mod/crepair.php:177 msgid "Poll/Feed URL" msgstr "Téléverser des photos" -#: mod/crepair.php:177 +#: mod/crepair.php:178 msgid "New photo from this URL" msgstr "Nouvelle photo depuis cette URL" -#: mod/crepair.php:178 +#: mod/crepair.php:179 msgid "Remote Self" msgstr "" -#: mod/crepair.php:181 +#: mod/crepair.php:182 msgid "Mirror postings from this contact" msgstr "" -#: mod/crepair.php:183 +#: mod/crepair.php:184 msgid "" "Mark this contact as remote_self, this will cause friendica to repost new " "entries from this contact." msgstr "Marquer ce contact comme étant remote_self, friendica republiera alors les nouvelles entrées de ce contact." -#: mod/bookmarklet.php:12 boot.php:1281 include/nav.php:91 +#: mod/bookmarklet.php:12 boot.php:1293 include/nav.php:91 msgid "Login" msgstr "Connexion" @@ -1908,13 +1921,13 @@ msgstr "La publication a été créée" msgid "Access denied." msgstr "Accès refusé." -#: mod/dirfind.php:188 mod/allfriends.php:82 mod/match.php:85 -#: mod/suggest.php:98 include/contact_widgets.php:10 include/identity.php:193 +#: mod/dirfind.php:188 mod/allfriends.php:75 mod/match.php:85 +#: mod/suggest.php:98 include/contact_widgets.php:10 include/identity.php:209 msgid "Connect" msgstr "Relier" -#: mod/dirfind.php:189 mod/allfriends.php:66 mod/match.php:70 -#: mod/directory.php:156 mod/suggest.php:81 include/Contact.php:307 +#: mod/dirfind.php:189 mod/allfriends.php:59 mod/match.php:70 +#: mod/directory.php:162 mod/suggest.php:81 include/Contact.php:307 #: include/Contact.php:320 include/Contact.php:362 #: include/conversation.php:912 include/conversation.php:926 msgid "View Profile" @@ -1929,14 +1942,14 @@ msgstr "Recherche de personne - %s" msgid "No matches" msgstr "Aucune correspondance" -#: mod/fbrowser.php:32 include/identity.php:666 include/nav.php:77 +#: mod/fbrowser.php:32 include/identity.php:693 include/nav.php:77 #: view/theme/diabook/theme.php:126 msgid "Photos" msgstr "Photos" -#: mod/fbrowser.php:41 mod/fbrowser.php:62 mod/photos.php:54 -#: mod/photos.php:184 mod/photos.php:1111 mod/photos.php:1237 -#: mod/photos.php:1260 mod/photos.php:1830 mod/photos.php:1842 +#: 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 "Photos du contact" @@ -1983,7 +1996,7 @@ msgstr "Journaux" #: mod/admin.php:148 msgid "probe address" -msgstr "" +msgstr "Tester une adresse" #: mod/admin.php:149 msgid "check webfinger" @@ -2098,7 +2111,7 @@ msgstr "RINO2 a besoin du module php mcrypt pour fonctionner." msgid "Site settings updated." msgstr "Réglages du site mis-à-jour." -#: mod/admin.php:619 mod/settings.php:901 +#: mod/admin.php:619 mod/settings.php:903 msgid "No special theme for mobile devices" msgstr "Pas de thème particulier pour les terminaux mobiles" @@ -2187,8 +2200,8 @@ 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:712 mod/admin.php:1271 mod/admin.php:1507 mod/admin.php:1595 -#: mod/settings.php:648 mod/settings.php:758 mod/settings.php:802 -#: mod/settings.php:871 mod/settings.php:957 mod/settings.php:1192 +#: mod/settings.php:650 mod/settings.php:760 mod/settings.php:804 +#: mod/settings.php:873 mod/settings.php:960 mod/settings.php:1195 msgid "Save Settings" msgstr "Sauvegarder les paramétres" @@ -2252,7 +2265,7 @@ msgstr "Lien vers une icône qui sera utilisée pour les navigateurs." #: mod/admin.php:727 msgid "Touch icon" -msgstr "" +msgstr "Icône pour systèmes tactiles" #: mod/admin.php:727 msgid "Link to an icon that will be used for tablets and mobiles." @@ -2742,7 +2755,7 @@ msgstr "" #: mod/admin.php:785 msgid "Publish server information" -msgstr "" +msgstr "Publier les informations du serveur" #: mod/admin.php:785 msgid "" @@ -2750,7 +2763,7 @@ msgid "" "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 "" +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:787 msgid "Use MySQL full text engine" @@ -2772,11 +2785,11 @@ msgstr "Supprimer les informations de langue dans les métadonnées des publicat #: mod/admin.php:789 msgid "Suppress Tags" -msgstr "" +msgstr "Masquer les tags" #: mod/admin.php:789 msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "" +msgstr "Ne pas afficher la liste des hashtags à la fin d’un message." #: mod/admin.php:790 msgid "Path to item cache" @@ -2875,11 +2888,11 @@ msgstr "" #: mod/admin.php:802 msgid "RINO Encryption" -msgstr "" +msgstr "Chiffrement RINO" #: mod/admin.php:802 msgid "Encryption layer between nodes." -msgstr "" +msgstr "Couche de chiffrement entre les nœuds du réseau." #: mod/admin.php:803 msgid "Embedly API key" @@ -3146,8 +3159,9 @@ msgid "Maintainer: " msgstr "Mainteneur: " #: mod/admin.php:1272 +#: view/smarty3/compiled/f835364006028b1061f37be121c9bd9db5fa50a9.file.admin_plugins.tpl.php:42 msgid "Reload active plugins" -msgstr "" +msgstr "Recharger les extensions actives" #: mod/admin.php:1370 msgid "No themes found." @@ -3159,7 +3173,7 @@ msgstr "Capture d'écran" #: mod/admin.php:1508 msgid "Reload active themes" -msgstr "" +msgstr "Recharger les thèmes actifs" #: mod/admin.php:1512 msgid "[Experimental]" @@ -3292,10 +3306,6 @@ msgstr "Les messages privés envoyés à ce groupe s'exposent à une diffusion i msgid "No such group" msgstr "Groupe inexistant" -#: mod/network.php:563 mod/content.php:130 -msgid "Group is empty" -msgstr "Groupe vide" - #: mod/network.php:574 mod/content.php:135 #, php-format msgid "Group: %s" @@ -3309,15 +3319,10 @@ msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion msgid "Invalid contact." msgstr "Contact invalide." -#: mod/allfriends.php:45 +#: mod/allfriends.php:38 msgid "No friends to display." msgstr "Pas d'amis à afficher." -#: mod/allfriends.php:92 -#, php-format -msgid "Friends of %s" -msgstr "Amis de %s" - #: mod/events.php:71 mod/events.php:73 msgid "Event can not end before it has started." msgstr "" @@ -3354,11 +3359,11 @@ msgstr "Ven" msgid "Sat" msgstr "Sam" -#: mod/events.php:208 mod/settings.php:936 include/text.php:1274 +#: mod/events.php:208 mod/settings.php:939 include/text.php:1274 msgid "Sunday" msgstr "Dimanche" -#: mod/events.php:209 mod/settings.php:936 include/text.php:1274 +#: mod/events.php:209 mod/settings.php:939 include/text.php:1274 msgid "Monday" msgstr "Lundi" @@ -3502,7 +3507,7 @@ msgstr "Editer l'événement" msgid "link to source" msgstr "lien original" -#: mod/events.php:456 include/identity.php:686 include/nav.php:79 +#: mod/events.php:456 include/identity.php:713 include/nav.php:79 #: include/nav.php:140 view/theme/diabook/theme.php:127 msgid "Events" msgstr "Événements" @@ -3559,8 +3564,8 @@ msgstr "Titre :" msgid "Share this event" msgstr "Partager cet événement" -#: mod/events.php:572 mod/content.php:721 mod/editpost.php:144 -#: mod/photos.php:1623 mod/photos.php:1671 mod/photos.php:1759 +#: 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:1217 msgid "Preview" msgstr "Aperçu" @@ -3576,7 +3581,7 @@ msgid "" "code or the translation of Friendica. Thank you all!" msgstr "Friendica est un projet communautaire, qui ne serait pas possible sans l'aide de beaucoup de gens. Voici une liste de ceux qui ont contribué au code ou à la traduction de Friendica. Merci à tous!" -#: mod/content.php:439 mod/content.php:742 mod/photos.php:1714 +#: mod/content.php:439 mod/content.php:742 mod/photos.php:1722 #: object/Item.php:133 include/conversation.php:634 msgid "Select" msgstr "Sélectionner" @@ -3605,23 +3610,23 @@ msgstr[0] "%d commentaire" msgstr[1] "%d commentaires" #: mod/content.php:607 object/Item.php:421 object/Item.php:434 -#: include/text.php:1999 +#: include/text.php:1997 msgid "comment" msgid_plural "comments" msgstr[0] "" msgstr[1] "commentaire" -#: mod/content.php:608 boot.php:773 object/Item.php:422 +#: mod/content.php:608 boot.php:785 object/Item.php:422 #: include/contact_widgets.php:242 include/forums.php:110 -#: include/items.php:5152 view/theme/vier/theme.php:264 +#: include/items.php:5178 view/theme/vier/theme.php:264 msgid "show more" msgstr "montrer plus" -#: mod/content.php:622 mod/photos.php:1410 object/Item.php:117 +#: mod/content.php:622 mod/photos.php:1418 object/Item.php:117 msgid "Private Message" msgstr "Message privé" -#: mod/content.php:686 mod/photos.php:1599 object/Item.php:253 +#: mod/content.php:686 mod/photos.php:1607 object/Item.php:253 msgid "I like this (toggle)" msgstr "J'aime" @@ -3629,7 +3634,7 @@ msgstr "J'aime" msgid "like" msgstr "aime" -#: mod/content.php:687 mod/photos.php:1600 object/Item.php:254 +#: mod/content.php:687 mod/photos.php:1608 object/Item.php:254 msgid "I don't like this (toggle)" msgstr "Je n'aime pas" @@ -3645,13 +3650,13 @@ msgstr "Partager" msgid "share" msgstr "partager" -#: mod/content.php:709 mod/photos.php:1619 mod/photos.php:1667 -#: mod/photos.php:1755 object/Item.php:707 +#: 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 "C'est vous" -#: mod/content.php:711 mod/photos.php:1621 mod/photos.php:1669 -#: mod/photos.php:1757 boot.php:772 object/Item.php:393 object/Item.php:709 +#: mod/content.php:711 mod/photos.php:1629 mod/photos.php:1677 +#: mod/photos.php:1765 boot.php:784 object/Item.php:393 object/Item.php:709 msgid "Comment" msgstr "Commenter" @@ -3687,7 +3692,7 @@ msgstr "Lien" msgid "Video" msgstr "Vidéo" -#: mod/content.php:730 mod/settings.php:710 object/Item.php:122 +#: mod/content.php:730 mod/settings.php:712 object/Item.php:122 #: object/Item.php:124 msgid "Edit" msgstr "Éditer" @@ -4040,11 +4045,11 @@ msgstr "La réécriture d'URL fonctionne." #: mod/install.php:526 msgid "ImageMagick PHP extension is installed" -msgstr "" +msgstr "L’extension PHP ImageMagick est installée" #: mod/install.php:528 msgid "ImageMagick supports GIF" -msgstr "" +msgstr "ImageMagick supporte le format GIF" #: mod/install.php:536 msgid "" @@ -4120,7 +4125,7 @@ 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 "" +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." @@ -4151,11 +4156,11 @@ msgstr "Indisponible." msgid "Community" msgstr "Communauté" -#: mod/community.php:62 mod/community.php:71 mod/search.php:218 +#: mod/community.php:62 mod/community.php:71 mod/search.php:228 msgid "No results." msgstr "Aucun résultat." -#: mod/settings.php:34 mod/photos.php:109 +#: mod/settings.php:34 mod/photos.php:117 msgid "everybody" msgstr "tout le monde" @@ -4167,7 +4172,7 @@ msgstr "Fonctions supplémentaires" msgid "Display" msgstr "Afficher" -#: mod/settings.php:60 mod/settings.php:853 +#: mod/settings.php:60 mod/settings.php:855 msgid "Social Networks" msgstr "Réseaux sociaux" @@ -4203,655 +4208,655 @@ msgstr "Réglages de courriel mis-à-jour." msgid "Features updated" msgstr "Fonctionnalités mises à jour" -#: mod/settings.php:341 +#: mod/settings.php:343 msgid "Relocate message has been send to your contacts" msgstr "Un message de relocalisation a été envoyé à vos contacts." -#: mod/settings.php:355 include/user.php:39 +#: mod/settings.php:357 include/user.php:39 msgid "Passwords do not match. Password unchanged." msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué." -#: mod/settings.php:360 +#: mod/settings.php:362 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué." -#: mod/settings.php:368 +#: mod/settings.php:370 msgid "Wrong password." msgstr "Mauvais mot de passe." -#: mod/settings.php:379 +#: mod/settings.php:381 msgid "Password changed." msgstr "Mots de passe changés." -#: mod/settings.php:381 +#: mod/settings.php:383 msgid "Password update failed. Please try again." msgstr "Le changement de mot de passe a échoué. Merci de recommencer." -#: mod/settings.php:450 +#: mod/settings.php:452 msgid " Please use a shorter name." msgstr " Merci d'utiliser un nom plus court." -#: mod/settings.php:452 +#: mod/settings.php:454 msgid " Name too short." msgstr " Nom trop court." -#: mod/settings.php:461 +#: mod/settings.php:463 msgid "Wrong Password" msgstr "Mauvais mot de passe" -#: mod/settings.php:466 +#: mod/settings.php:468 msgid " Not valid email." msgstr " Email invalide." -#: mod/settings.php:472 +#: mod/settings.php:474 msgid " Cannot change to that email." msgstr " Impossible de changer pour cet email." -#: mod/settings.php:528 +#: mod/settings.php:530 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:532 +#: mod/settings.php:534 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:571 +#: mod/settings.php:573 msgid "Settings updated." msgstr "Réglages mis à jour." -#: mod/settings.php:647 mod/settings.php:673 mod/settings.php:709 +#: mod/settings.php:649 mod/settings.php:675 mod/settings.php:711 msgid "Add application" msgstr "Ajouter une application" -#: mod/settings.php:651 mod/settings.php:677 +#: mod/settings.php:653 mod/settings.php:679 msgid "Consumer Key" msgstr "Clé utilisateur" -#: mod/settings.php:652 mod/settings.php:678 +#: mod/settings.php:654 mod/settings.php:680 msgid "Consumer Secret" msgstr "Secret utilisateur" -#: mod/settings.php:653 mod/settings.php:679 +#: mod/settings.php:655 mod/settings.php:681 msgid "Redirect" msgstr "Rediriger" -#: mod/settings.php:654 mod/settings.php:680 +#: mod/settings.php:656 mod/settings.php:682 msgid "Icon url" msgstr "URL de l'icône" -#: mod/settings.php:665 +#: mod/settings.php:667 msgid "You can't edit this application." msgstr "Vous ne pouvez pas éditer cette application." -#: mod/settings.php:708 +#: mod/settings.php:710 msgid "Connected Apps" msgstr "Applications connectées" -#: mod/settings.php:712 +#: mod/settings.php:714 msgid "Client key starts with" msgstr "La clé cliente commence par" -#: mod/settings.php:713 +#: mod/settings.php:715 msgid "No name" msgstr "Sans nom" -#: mod/settings.php:714 +#: mod/settings.php:716 msgid "Remove authorization" msgstr "Révoquer l'autorisation" -#: mod/settings.php:726 +#: mod/settings.php:728 msgid "No Plugin settings configured" msgstr "Pas de réglages d'extensions configurés" -#: mod/settings.php:734 +#: mod/settings.php:736 msgid "Plugin Settings" msgstr "Extensions" -#: mod/settings.php:748 +#: mod/settings.php:750 msgid "Off" msgstr "Éteint" -#: mod/settings.php:748 +#: mod/settings.php:750 msgid "On" msgstr "Allumé" -#: mod/settings.php:756 +#: mod/settings.php:758 msgid "Additional Features" msgstr "Fonctions supplémentaires" -#: mod/settings.php:766 mod/settings.php:770 +#: mod/settings.php:768 mod/settings.php:772 msgid "General Social Media Settings" msgstr "Paramètres généraux des réseaux sociaux" -#: mod/settings.php:776 +#: mod/settings.php:778 msgid "Disable intelligent shortening" msgstr "Désactiver la réduction d'URL" -#: mod/settings.php:778 +#: mod/settings.php:780 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:784 +#: mod/settings.php:786 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:786 +#: mod/settings.php:788 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:795 +#: mod/settings.php:797 msgid "Your legacy GNU Social account" msgstr "Le compte GNU Social que vous avez déjà" -#: mod/settings.php:797 +#: mod/settings.php:799 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 votre 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:800 +#: mod/settings.php:802 msgid "Repair OStatus subscriptions" msgstr "Réparer les abonnements OStatus" -#: mod/settings.php:809 mod/settings.php:810 +#: mod/settings.php:811 mod/settings.php:812 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Le support natif pour la connectivité %s est %s" -#: mod/settings.php:809 mod/dfrn_request.php:858 +#: mod/settings.php:811 mod/dfrn_request.php:858 #: include/contact_selectors.php:80 msgid "Diaspora" msgstr "Diaspora" -#: mod/settings.php:809 mod/settings.php:810 +#: mod/settings.php:811 mod/settings.php:812 msgid "enabled" msgstr "activé" -#: mod/settings.php:809 mod/settings.php:810 +#: mod/settings.php:811 mod/settings.php:812 msgid "disabled" msgstr "désactivé" -#: mod/settings.php:810 +#: mod/settings.php:812 msgid "GNU Social (OStatus)" msgstr "GNU Social (OStatus)" -#: mod/settings.php:846 +#: mod/settings.php:848 msgid "Email access is disabled on this site." msgstr "L'accès courriel est désactivé sur ce site." -#: mod/settings.php:858 +#: mod/settings.php:860 msgid "Email/Mailbox Setup" msgstr "Réglages de courriel/boîte à lettre" -#: mod/settings.php:859 +#: mod/settings.php:861 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:860 +#: mod/settings.php:862 msgid "Last successful email check:" msgstr "Dernière vérification réussie des courriels:" -#: mod/settings.php:862 +#: mod/settings.php:864 msgid "IMAP server name:" msgstr "Nom du serveur IMAP:" -#: mod/settings.php:863 +#: mod/settings.php:865 msgid "IMAP port:" msgstr "Port IMAP:" -#: mod/settings.php:864 +#: mod/settings.php:866 msgid "Security:" msgstr "Sécurité:" -#: mod/settings.php:864 mod/settings.php:869 +#: mod/settings.php:866 mod/settings.php:871 msgid "None" msgstr "Aucun(e)" -#: mod/settings.php:865 +#: mod/settings.php:867 msgid "Email login name:" msgstr "Nom de connexion:" -#: mod/settings.php:866 +#: mod/settings.php:868 msgid "Email password:" msgstr "Mot de passe:" -#: mod/settings.php:867 +#: mod/settings.php:869 msgid "Reply-to address:" msgstr "Adresse de réponse:" -#: mod/settings.php:868 +#: mod/settings.php:870 msgid "Send public posts to all email contacts:" msgstr "Envoyer les publications publiques à tous les contacts courriels:" -#: mod/settings.php:869 +#: mod/settings.php:871 msgid "Action after import:" msgstr "Action après import:" -#: mod/settings.php:869 +#: mod/settings.php:871 msgid "Mark as seen" msgstr "Marquer comme vu" -#: mod/settings.php:869 +#: mod/settings.php:871 msgid "Move to folder" msgstr "Déplacer vers" -#: mod/settings.php:870 +#: mod/settings.php:872 msgid "Move to folder:" msgstr "Déplacer vers:" -#: mod/settings.php:955 +#: mod/settings.php:958 msgid "Display Settings" msgstr "Affichage" -#: mod/settings.php:961 mod/settings.php:979 +#: mod/settings.php:964 mod/settings.php:982 msgid "Display Theme:" msgstr "Thème d'affichage:" -#: mod/settings.php:962 +#: mod/settings.php:965 msgid "Mobile Theme:" msgstr "Thème mobile:" -#: mod/settings.php:963 +#: mod/settings.php:966 msgid "Update browser every xx seconds" msgstr "Mettre-à-jour l'affichage toutes les xx secondes" -#: mod/settings.php:963 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Délai minimum de 10 secondes, pas de maximum" +#: mod/settings.php:966 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "" -#: mod/settings.php:964 +#: mod/settings.php:967 msgid "Number of items to display per page:" msgstr "Nombre d’éléments par page:" -#: mod/settings.php:964 mod/settings.php:965 +#: mod/settings.php:967 mod/settings.php:968 msgid "Maximum of 100 items" msgstr "Maximum de 100 éléments" -#: mod/settings.php:965 +#: mod/settings.php:968 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:966 +#: mod/settings.php:969 msgid "Don't show emoticons" msgstr "Ne pas afficher les émoticônes (smileys grahiques)" -#: mod/settings.php:967 +#: mod/settings.php:970 msgid "Calendar" msgstr "Calendrier" -#: mod/settings.php:968 +#: mod/settings.php:971 msgid "Beginning of week:" msgstr "Début de la semaine :" -#: mod/settings.php:969 +#: mod/settings.php:972 msgid "Don't show notices" msgstr "Ne plus afficher les avis" -#: mod/settings.php:970 +#: mod/settings.php:973 msgid "Infinite scroll" msgstr "Défilement infini" -#: mod/settings.php:971 +#: mod/settings.php:974 msgid "Automatic updates only at the top of the network page" msgstr "" -#: mod/settings.php:973 view/theme/cleanzero/config.php:82 +#: mod/settings.php:976 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/clean/config.php:85 #: 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:1050 +#: mod/settings.php:1053 msgid "User Types" msgstr "Types d'utilisateurs" -#: mod/settings.php:1051 +#: mod/settings.php:1054 msgid "Community Types" msgstr "Genre de communautés" -#: mod/settings.php:1052 +#: mod/settings.php:1055 msgid "Normal Account Page" msgstr "Compte normal" -#: mod/settings.php:1053 +#: mod/settings.php:1056 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:1056 +#: mod/settings.php:1059 msgid "Soapbox Page" msgstr "Compte \"boîte à savon\"" -#: mod/settings.php:1057 +#: mod/settings.php:1060 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:1060 +#: mod/settings.php:1063 msgid "Community Forum/Celebrity Account" msgstr "Compte de communauté/célébrité" -#: mod/settings.php:1061 +#: mod/settings.php:1064 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:1064 +#: mod/settings.php:1067 msgid "Automatic Friend Page" msgstr "Compte d'\"amitié automatique\"" -#: mod/settings.php:1065 +#: mod/settings.php:1068 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:1068 +#: mod/settings.php:1071 msgid "Private Forum [Experimental]" msgstr "Forum privé [expérimental]" -#: mod/settings.php:1069 +#: mod/settings.php:1072 msgid "Private forum - approved members only" msgstr "Forum privé - modéré en inscription" -#: mod/settings.php:1081 +#: mod/settings.php:1084 msgid "OpenID:" msgstr "OpenID:" -#: mod/settings.php:1081 +#: mod/settings.php:1084 msgid "(Optional) Allow this OpenID to login to this account." msgstr "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte." -#: mod/settings.php:1091 +#: mod/settings.php:1094 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:1097 +#: mod/settings.php:1100 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:1105 +#: mod/settings.php:1108 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:1109 include/acl_selectors.php:331 +#: mod/settings.php:1112 include/acl_selectors.php:331 msgid "Hide your profile details from unknown viewers?" msgstr "Cacher les détails du profil aux visiteurs inconnus?" -#: mod/settings.php:1109 +#: mod/settings.php:1112 msgid "" "If enabled, posting public messages to Diaspora and other networks isn't " "possible." msgstr "" -#: mod/settings.php:1114 +#: mod/settings.php:1117 msgid "Allow friends to post to your profile page?" msgstr "Autoriser vos amis à publier sur votre profil?" -#: mod/settings.php:1120 +#: mod/settings.php:1123 msgid "Allow friends to tag your posts?" msgstr "Autoriser vos amis à étiqueter vos publications?" -#: mod/settings.php:1126 +#: mod/settings.php:1129 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:1132 +#: mod/settings.php:1135 msgid "Permit unknown people to send you private mail?" msgstr "Autoriser les messages privés d'inconnus?" -#: mod/settings.php:1140 +#: mod/settings.php:1143 msgid "Profile is not published." msgstr "Ce profil n'est pas publié." -#: mod/settings.php:1148 +#: mod/settings.php:1151 #, php-format msgid "Your Identity Address is '%s' or '%s'." -msgstr "" +msgstr "L’adresse de votre identité est '%s' or '%s'." -#: mod/settings.php:1155 +#: mod/settings.php:1158 msgid "Automatically expire posts after this many days:" msgstr "Les publications expirent automatiquement après (en jours) :" -#: mod/settings.php:1155 +#: mod/settings.php:1158 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:1156 +#: mod/settings.php:1159 msgid "Advanced expiration settings" msgstr "Réglages avancés de l'expiration" -#: mod/settings.php:1157 +#: mod/settings.php:1160 msgid "Advanced Expiration" msgstr "Expiration (avancé)" -#: mod/settings.php:1158 +#: mod/settings.php:1161 msgid "Expire posts:" msgstr "Faire expirer les publications:" -#: mod/settings.php:1159 +#: mod/settings.php:1162 msgid "Expire personal notes:" msgstr "Faire expirer les notes personnelles:" -#: mod/settings.php:1160 +#: mod/settings.php:1163 msgid "Expire starred posts:" msgstr "Faire expirer les publications marqués:" -#: mod/settings.php:1161 +#: mod/settings.php:1164 msgid "Expire photos:" msgstr "Faire expirer les photos:" -#: mod/settings.php:1162 +#: mod/settings.php:1165 msgid "Only expire posts by others:" msgstr "Faire expirer seulement les publications des autres:" -#: mod/settings.php:1190 +#: mod/settings.php:1193 msgid "Account Settings" msgstr "Compte" -#: mod/settings.php:1198 +#: mod/settings.php:1201 msgid "Password Settings" msgstr "Réglages de mot de passe" -#: mod/settings.php:1199 mod/register.php:274 +#: mod/settings.php:1202 mod/register.php:274 msgid "New Password:" msgstr "Nouveau mot de passe:" -#: mod/settings.php:1200 mod/register.php:275 +#: mod/settings.php:1203 mod/register.php:275 msgid "Confirm:" msgstr "Confirmer:" -#: mod/settings.php:1200 +#: mod/settings.php:1203 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:1201 +#: mod/settings.php:1204 msgid "Current Password:" msgstr "Mot de passe actuel:" -#: mod/settings.php:1201 mod/settings.php:1202 +#: mod/settings.php:1204 mod/settings.php:1205 msgid "Your current password to confirm the changes" msgstr "Votre mot de passe actuel pour confirmer les modifications" -#: mod/settings.php:1202 +#: mod/settings.php:1205 msgid "Password:" msgstr "Mot de passe:" -#: mod/settings.php:1206 +#: mod/settings.php:1209 msgid "Basic Settings" msgstr "Réglages basiques" -#: mod/settings.php:1207 include/identity.php:551 +#: mod/settings.php:1210 include/identity.php:578 msgid "Full Name:" msgstr "Nom complet:" -#: mod/settings.php:1208 +#: mod/settings.php:1211 msgid "Email Address:" msgstr "Adresse courriel:" -#: mod/settings.php:1209 +#: mod/settings.php:1212 msgid "Your Timezone:" msgstr "Votre fuseau horaire:" -#: mod/settings.php:1210 +#: mod/settings.php:1213 msgid "Your Language:" msgstr "Votre langue :" -#: mod/settings.php:1210 +#: mod/settings.php:1213 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:1211 +#: mod/settings.php:1214 msgid "Default Post Location:" msgstr "Emplacement de publication par défaut:" -#: mod/settings.php:1212 +#: mod/settings.php:1215 msgid "Use Browser Location:" msgstr "Utiliser la localisation géographique du navigateur:" -#: mod/settings.php:1215 +#: mod/settings.php:1218 msgid "Security and Privacy Settings" msgstr "Réglages de sécurité et vie privée" -#: mod/settings.php:1217 +#: mod/settings.php:1220 msgid "Maximum Friend Requests/Day:" msgstr "Nombre maximal de requêtes d'amitié/jour:" -#: mod/settings.php:1217 mod/settings.php:1247 +#: mod/settings.php:1220 mod/settings.php:1250 msgid "(to prevent spam abuse)" msgstr "(pour limiter l'impact du spam)" -#: mod/settings.php:1218 +#: mod/settings.php:1221 msgid "Default Post Permissions" msgstr "Permissions de publication par défaut" -#: mod/settings.php:1219 +#: mod/settings.php:1222 msgid "(click to open/close)" msgstr "(cliquer pour ouvrir/fermer)" -#: mod/settings.php:1228 mod/photos.php:1191 mod/photos.php:1576 +#: mod/settings.php:1231 mod/photos.php:1199 mod/photos.php:1584 msgid "Show to Groups" msgstr "Montrer aux groupes" -#: mod/settings.php:1229 mod/photos.php:1192 mod/photos.php:1577 +#: mod/settings.php:1232 mod/photos.php:1200 mod/photos.php:1585 msgid "Show to Contacts" msgstr "Montrer aux Contacts" -#: mod/settings.php:1230 +#: mod/settings.php:1233 msgid "Default Private Post" msgstr "Message privé par défaut" -#: mod/settings.php:1231 +#: mod/settings.php:1234 msgid "Default Public Post" msgstr "Message publique par défaut" -#: mod/settings.php:1235 +#: mod/settings.php:1238 msgid "Default Permissions for New Posts" msgstr "Permissions par défaut pour les nouvelles publications" -#: mod/settings.php:1247 +#: mod/settings.php:1250 msgid "Maximum private messages per day from unknown people:" msgstr "Maximum de messages privés d'inconnus par jour:" -#: mod/settings.php:1250 +#: mod/settings.php:1253 msgid "Notification Settings" msgstr "Réglages de notification" -#: mod/settings.php:1251 +#: mod/settings.php:1254 msgid "By default post a status message when:" msgstr "Par défaut, poster un statut quand:" -#: mod/settings.php:1252 +#: mod/settings.php:1255 msgid "accepting a friend request" msgstr "j'accepte un ami" -#: mod/settings.php:1253 +#: mod/settings.php:1256 msgid "joining a forum/community" msgstr "joignant un forum/une communauté" -#: mod/settings.php:1254 +#: mod/settings.php:1257 msgid "making an interesting profile change" msgstr "je fais une modification intéressante de mon profil" -#: mod/settings.php:1255 +#: mod/settings.php:1258 msgid "Send a notification email when:" msgstr "Envoyer un courriel de notification quand:" -#: mod/settings.php:1256 +#: mod/settings.php:1259 msgid "You receive an introduction" msgstr "Vous recevez une introduction" -#: mod/settings.php:1257 +#: mod/settings.php:1260 msgid "Your introductions are confirmed" msgstr "Vos introductions sont confirmées" -#: mod/settings.php:1258 +#: mod/settings.php:1261 msgid "Someone writes on your profile wall" msgstr "Quelqu'un écrit sur votre mur" -#: mod/settings.php:1259 +#: mod/settings.php:1262 msgid "Someone writes a followup comment" msgstr "Quelqu'un vous commente" -#: mod/settings.php:1260 +#: mod/settings.php:1263 msgid "You receive a private message" msgstr "Vous recevez un message privé" -#: mod/settings.php:1261 +#: mod/settings.php:1264 msgid "You receive a friend suggestion" msgstr "Vous avez reçu une suggestion d'ami" -#: mod/settings.php:1262 +#: mod/settings.php:1265 msgid "You are tagged in a post" msgstr "Vous avez été étiquetté dans une publication" -#: mod/settings.php:1263 +#: mod/settings.php:1266 msgid "You are poked/prodded/etc. in a post" msgstr "Vous avez été sollicité dans une publication" -#: mod/settings.php:1265 +#: mod/settings.php:1268 msgid "Activate desktop notifications" msgstr "Activer les notifications de bureau" -#: mod/settings.php:1265 +#: mod/settings.php:1268 msgid "Show desktop popup on new notifications" msgstr "Afficher dans des pops-ups les nouvelles notifications" -#: mod/settings.php:1267 +#: mod/settings.php:1270 msgid "Text-only notification emails" msgstr "Courriels de notification en format texte" -#: mod/settings.php:1269 +#: mod/settings.php:1272 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:1271 +#: mod/settings.php:1274 msgid "Advanced Account/Page Type Settings" msgstr "Paramètres avancés de compte/page" -#: mod/settings.php:1272 +#: mod/settings.php:1275 msgid "Change the behaviour of this account for special situations" msgstr "Modifier le comportement de ce compte dans certaines situations" -#: mod/settings.php:1275 +#: mod/settings.php:1278 msgid "Relocate" msgstr "Relocaliser" -#: mod/settings.php:1276 +#: mod/settings.php:1279 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:1277 +#: mod/settings.php:1280 msgid "Resend relocate message to contacts" msgstr "Renvoyer un message de relocalisation aux contacts." @@ -4980,7 +4985,7 @@ 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 "" +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:847 msgid "Friend/Connection Request" @@ -5021,7 +5026,7 @@ msgstr "Impossible d’envoyer le courriel de confirmation. Voici vos informatio #: mod/register.php:104 msgid "Registration successful." -msgstr "" +msgstr "Inscription réussie." #: mod/register.php:110 msgid "Your registration can not be processed." @@ -5067,7 +5072,7 @@ msgstr "Votre ID d'invitation: " #: mod/register.php:271 msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "" +msgstr "Votre nom complet (p. ex. Michel Dupont):" #: mod/register.php:272 msgid "Your Email Address: " @@ -5088,7 +5093,7 @@ msgstr "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de msgid "Choose a nickname: " msgstr "Choisir un pseudo: " -#: mod/register.php:280 boot.php:1256 include/nav.php:108 +#: mod/register.php:280 boot.php:1268 include/nav.php:108 msgid "Register" msgstr "S'inscrire" @@ -5108,62 +5113,54 @@ msgstr "Système indisponible pour cause de maintenance" msgid "Only logged in users are permitted to perform a search." msgstr "" -#: mod/search.php:115 +#: mod/search.php:124 msgid "Too Many Requests" msgstr "" -#: mod/search.php:116 +#: mod/search.php:125 msgid "Only one search per minute is permitted for not logged in users." msgstr "" -#: mod/search.php:126 include/text.php:1003 include/nav.php:118 +#: mod/search.php:136 include/text.php:1003 include/nav.php:118 msgid "Search" msgstr "Recherche" -#: mod/search.php:224 +#: mod/search.php:234 #, php-format msgid "Items tagged with: %s" msgstr "" -#: mod/search.php:226 +#: mod/search.php:236 #, php-format msgid "Search results for: %s" msgstr "" -#: mod/directory.php:116 mod/profiles.php:760 -msgid "Age: " -msgstr "Age : " - -#: mod/directory.php:119 -msgid "Gender: " -msgstr "Genre : " - -#: mod/directory.php:143 include/identity.php:283 include/identity.php:573 +#: mod/directory.php:149 include/identity.php:309 include/identity.php:600 msgid "Status:" msgstr "Statut:" -#: mod/directory.php:145 include/identity.php:285 include/identity.php:584 +#: mod/directory.php:151 include/identity.php:311 include/identity.php:611 msgid "Homepage:" msgstr "Page personnelle:" -#: mod/directory.php:195 view/theme/diabook/theme.php:525 +#: mod/directory.php:203 view/theme/diabook/theme.php:525 #: view/theme/vier/theme.php:205 msgid "Global Directory" msgstr "Annuaire global" -#: mod/directory.php:197 +#: mod/directory.php:205 msgid "Find on this site" msgstr "Trouver sur ce site" -#: mod/directory.php:199 +#: mod/directory.php:207 msgid "Finding:" msgstr "" -#: mod/directory.php:201 +#: mod/directory.php:209 msgid "Site Directory" msgstr "Annuaire local" -#: mod/directory.php:208 +#: mod/directory.php:216 msgid "No entries (some entries may be hidden)." msgstr "Aucune entrée (certaines peuvent être cachées)." @@ -5202,14 +5199,10 @@ msgstr "Ajouter" msgid "No entries." msgstr "Aucune entrée." -#: mod/common.php:85 +#: mod/common.php:87 msgid "No contacts in common." msgstr "Pas de contacts en commun." -#: mod/common.php:133 -msgid "Common Friends" -msgstr "Amis communs" - #: mod/uexport.php:77 msgid "Export account" msgstr "Exporter le compte" @@ -5291,11 +5284,11 @@ msgstr "Statut marital" msgid "Romantic Partner" msgstr "Partenaire / conjoint" -#: mod/profiles.php:344 mod/photos.php:1639 include/conversation.php:508 +#: mod/profiles.php:344 mod/photos.php:1647 include/conversation.php:508 msgid "Likes" msgstr "Derniers \"J'aime\"" -#: mod/profiles.php:348 mod/photos.php:1639 include/conversation.php:508 +#: mod/profiles.php:348 mod/photos.php:1647 include/conversation.php:508 msgid "Dislikes" msgstr "Derniers \"Je n'aime pas\"" @@ -5474,7 +5467,7 @@ msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" msgid "Since [date]:" msgstr "Depuis [date] :" -#: mod/profiles.php:724 include/identity.php:582 +#: mod/profiles.php:724 include/identity.php:609 msgid "Sexual Preference:" msgstr "Préférence sexuelle:" @@ -5482,11 +5475,11 @@ msgstr "Préférence sexuelle:" msgid "Homepage URL:" msgstr "Page personnelle :" -#: mod/profiles.php:726 include/identity.php:586 +#: mod/profiles.php:726 include/identity.php:613 msgid "Hometown:" msgstr " Ville d'origine:" -#: mod/profiles.php:727 include/identity.php:590 +#: mod/profiles.php:727 include/identity.php:617 msgid "Political Views:" msgstr "Opinions politiques:" @@ -5502,11 +5495,11 @@ msgstr "Mots-clés publics :" msgid "Private Keywords:" msgstr "Mots-clés privés :" -#: mod/profiles.php:731 include/identity.php:598 +#: mod/profiles.php:731 include/identity.php:625 msgid "Likes:" msgstr "J'aime :" -#: mod/profiles.php:732 include/identity.php:600 +#: mod/profiles.php:732 include/identity.php:627 msgid "Dislikes:" msgstr "Je n'aime pas :" @@ -5568,27 +5561,31 @@ msgid "" "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:760 +msgid "Age: " +msgstr "Age : " + #: mod/profiles.php:813 msgid "Edit/Manage Profiles" msgstr "Editer / gérer les profils" -#: mod/profiles.php:814 include/identity.php:241 include/identity.php:267 +#: mod/profiles.php:814 include/identity.php:257 include/identity.php:283 msgid "Change profile photo" msgstr "Changer de photo de profil" -#: mod/profiles.php:815 include/identity.php:242 +#: mod/profiles.php:815 include/identity.php:258 msgid "Create New Profile" msgstr "Créer un nouveau profil" -#: mod/profiles.php:826 include/identity.php:252 +#: mod/profiles.php:826 include/identity.php:268 msgid "Profile Image" msgstr "Image du profil" -#: mod/profiles.php:828 include/identity.php:255 +#: mod/profiles.php:828 include/identity.php:271 msgid "visible to everybody" msgstr "visible par tous" -#: mod/profiles.php:829 include/identity.php:256 +#: mod/profiles.php:829 include/identity.php:272 msgid "Edit visibility" msgstr "Changer la visibilité" @@ -5600,75 +5597,75 @@ msgstr "Élément introuvable" msgid "Edit post" msgstr "Éditer la publication" -#: mod/editpost.php:110 include/conversation.php:1185 +#: mod/editpost.php:111 include/conversation.php:1185 msgid "upload photo" msgstr "envoi image" -#: mod/editpost.php:111 include/conversation.php:1186 +#: mod/editpost.php:112 include/conversation.php:1186 msgid "Attach file" msgstr "Joindre fichier" -#: mod/editpost.php:112 include/conversation.php:1187 +#: mod/editpost.php:113 include/conversation.php:1187 msgid "attach file" msgstr "ajout fichier" -#: mod/editpost.php:114 include/conversation.php:1189 +#: mod/editpost.php:115 include/conversation.php:1189 msgid "web link" msgstr "lien web" -#: mod/editpost.php:115 include/conversation.php:1190 +#: mod/editpost.php:116 include/conversation.php:1190 msgid "Insert video link" msgstr "Insérer un lien video" -#: mod/editpost.php:116 include/conversation.php:1191 +#: mod/editpost.php:117 include/conversation.php:1191 msgid "video link" msgstr "lien vidéo" -#: mod/editpost.php:117 include/conversation.php:1192 +#: mod/editpost.php:118 include/conversation.php:1192 msgid "Insert audio link" msgstr "Insérer un lien audio" -#: mod/editpost.php:118 include/conversation.php:1193 +#: mod/editpost.php:119 include/conversation.php:1193 msgid "audio link" msgstr "lien audio" -#: mod/editpost.php:119 include/conversation.php:1194 +#: mod/editpost.php:120 include/conversation.php:1194 msgid "Set your location" msgstr "Définir votre localisation" -#: mod/editpost.php:120 include/conversation.php:1195 +#: mod/editpost.php:121 include/conversation.php:1195 msgid "set location" msgstr "spéc. localisation" -#: mod/editpost.php:121 include/conversation.php:1196 +#: mod/editpost.php:122 include/conversation.php:1196 msgid "Clear browser location" msgstr "Effacer la localisation du navigateur" -#: mod/editpost.php:122 include/conversation.php:1197 +#: mod/editpost.php:123 include/conversation.php:1197 msgid "clear location" msgstr "supp. localisation" -#: mod/editpost.php:124 include/conversation.php:1203 +#: mod/editpost.php:125 include/conversation.php:1203 msgid "Permission settings" msgstr "Réglages des permissions" -#: mod/editpost.php:132 include/acl_selectors.php:344 +#: mod/editpost.php:133 include/acl_selectors.php:344 msgid "CC: email addresses" msgstr "CC: adresses de courriel" -#: mod/editpost.php:133 include/conversation.php:1212 +#: mod/editpost.php:134 include/conversation.php:1212 msgid "Public post" msgstr "Publication publique" -#: mod/editpost.php:136 include/conversation.php:1199 +#: mod/editpost.php:137 include/conversation.php:1199 msgid "Set title" msgstr "Définir un titre" -#: mod/editpost.php:138 include/conversation.php:1201 +#: mod/editpost.php:139 include/conversation.php:1201 msgid "Categories (comma-separated list)" msgstr "Catégories (séparées par des virgules)" -#: mod/editpost.php:139 include/acl_selectors.php:345 +#: mod/editpost.php:140 include/acl_selectors.php:345 msgid "Example: bob@example.com, mary@example.com" msgstr "Exemple: bob@exemple.com, mary@exemple.com" @@ -5734,7 +5731,7 @@ msgstr "Informations de confidentialité indisponibles." msgid "Visible to:" msgstr "Visible par:" -#: mod/notes.php:46 include/identity.php:694 +#: mod/notes.php:46 include/identity.php:721 msgid "Personal Notes" msgstr "Notes personnelles" @@ -5891,197 +5888,197 @@ msgid "" "important, please visit http://friendica.com" msgstr "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com" -#: mod/photos.php:91 include/identity.php:669 +#: mod/photos.php:99 include/identity.php:696 msgid "Photo Albums" msgstr "Albums photo" -#: mod/photos.php:92 mod/photos.php:1891 +#: mod/photos.php:100 mod/photos.php:1899 msgid "Recent Photos" msgstr "Photos récentes" -#: mod/photos.php:95 mod/photos.php:1312 mod/photos.php:1893 +#: mod/photos.php:103 mod/photos.php:1320 mod/photos.php:1901 msgid "Upload New Photos" msgstr "Téléverser de nouvelles photos" -#: mod/photos.php:173 +#: mod/photos.php:181 msgid "Contact information unavailable" msgstr "Informations de contact indisponibles" -#: mod/photos.php:194 +#: mod/photos.php:202 msgid "Album not found." msgstr "Album introuvable." -#: mod/photos.php:224 mod/photos.php:236 mod/photos.php:1254 +#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1262 msgid "Delete Album" msgstr "Effacer l'album" -#: mod/photos.php:234 +#: mod/photos.php:242 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:314 mod/photos.php:325 mod/photos.php:1572 +#: mod/photos.php:322 mod/photos.php:333 mod/photos.php:1580 msgid "Delete Photo" msgstr "Effacer la photo" -#: mod/photos.php:323 +#: mod/photos.php:331 msgid "Do you really want to delete this photo?" msgstr "Voulez-vous vraiment supprimer cette photo ?" -#: mod/photos.php:698 +#: mod/photos.php:706 #, 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:698 +#: mod/photos.php:706 msgid "a photo" msgstr "une photo" -#: mod/photos.php:811 +#: mod/photos.php:819 msgid "Image file is empty." msgstr "Fichier image vide." -#: mod/photos.php:978 +#: mod/photos.php:986 msgid "No photos selected" msgstr "Aucune photo sélectionnée" -#: mod/photos.php:1139 +#: mod/photos.php:1147 #, 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:1174 +#: mod/photos.php:1182 msgid "Upload Photos" msgstr "Téléverser des photos" -#: mod/photos.php:1178 mod/photos.php:1249 +#: mod/photos.php:1186 mod/photos.php:1257 msgid "New album name: " msgstr "Nom du nouvel album: " -#: mod/photos.php:1179 +#: mod/photos.php:1187 msgid "or existing album name: " msgstr "ou nom d'un album existant: " -#: mod/photos.php:1180 +#: mod/photos.php:1188 msgid "Do not show a status post for this upload" msgstr "Ne pas publier de notice de statut pour cet envoi" -#: mod/photos.php:1182 mod/photos.php:1567 include/acl_selectors.php:347 +#: mod/photos.php:1190 mod/photos.php:1575 include/acl_selectors.php:347 msgid "Permissions" msgstr "Permissions" -#: mod/photos.php:1193 +#: mod/photos.php:1201 msgid "Private Photo" msgstr "Photo privée" -#: mod/photos.php:1194 +#: mod/photos.php:1202 msgid "Public Photo" msgstr "Photo publique" -#: mod/photos.php:1262 +#: mod/photos.php:1270 msgid "Edit Album" msgstr "Éditer l'album" -#: mod/photos.php:1268 +#: mod/photos.php:1276 msgid "Show Newest First" msgstr "Plus récent d'abord" -#: mod/photos.php:1270 +#: mod/photos.php:1278 msgid "Show Oldest First" msgstr "Plus ancien d'abord" -#: mod/photos.php:1298 mod/photos.php:1876 +#: mod/photos.php:1306 mod/photos.php:1884 msgid "View Photo" msgstr "Voir la photo" -#: mod/photos.php:1345 +#: mod/photos.php:1353 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:1347 +#: mod/photos.php:1355 msgid "Photo not available" msgstr "Photo indisponible" -#: mod/photos.php:1403 +#: mod/photos.php:1411 msgid "View photo" msgstr "Voir photo" -#: mod/photos.php:1403 +#: mod/photos.php:1411 msgid "Edit photo" msgstr "Éditer la photo" -#: mod/photos.php:1404 +#: mod/photos.php:1412 msgid "Use as profile photo" msgstr "Utiliser comme photo de profil" -#: mod/photos.php:1429 +#: mod/photos.php:1437 msgid "View Full Size" msgstr "Voir en taille réelle" -#: mod/photos.php:1515 +#: mod/photos.php:1523 msgid "Tags: " msgstr "Étiquettes:" -#: mod/photos.php:1518 +#: mod/photos.php:1526 msgid "[Remove any tag]" msgstr "[Retirer toutes les étiquettes]" -#: mod/photos.php:1558 +#: mod/photos.php:1566 msgid "New album name" msgstr "Nom du nouvel album" -#: mod/photos.php:1559 +#: mod/photos.php:1567 msgid "Caption" msgstr "Titre" -#: mod/photos.php:1560 +#: mod/photos.php:1568 msgid "Add a Tag" msgstr "Ajouter une étiquette" -#: mod/photos.php:1560 +#: mod/photos.php:1568 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" -#: mod/photos.php:1561 +#: mod/photos.php:1569 msgid "Do not rotate" msgstr "" -#: mod/photos.php:1562 +#: mod/photos.php:1570 msgid "Rotate CW (right)" msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" -#: mod/photos.php:1563 +#: mod/photos.php:1571 msgid "Rotate CCW (left)" msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" -#: mod/photos.php:1578 +#: mod/photos.php:1586 msgid "Private photo" msgstr "Photo privée" -#: mod/photos.php:1579 +#: mod/photos.php:1587 msgid "Public photo" msgstr "Photo publique" -#: mod/photos.php:1601 include/conversation.php:1183 +#: mod/photos.php:1609 include/conversation.php:1183 msgid "Share" msgstr "Partager" -#: mod/photos.php:1640 include/conversation.php:509 +#: mod/photos.php:1648 include/conversation.php:509 #: include/conversation.php:1414 msgid "Attending" msgid_plural "Attending" msgstr[0] "" msgstr[1] "" -#: mod/photos.php:1640 include/conversation.php:509 +#: mod/photos.php:1648 include/conversation.php:509 msgid "Not attending" msgstr "" -#: mod/photos.php:1640 include/conversation.php:509 +#: mod/photos.php:1648 include/conversation.php:509 msgid "Might attend" msgstr "" -#: mod/photos.php:1805 +#: mod/photos.php:1813 msgid "Map" msgstr "" @@ -6141,60 +6138,60 @@ msgstr "Elément non disponible." msgid "Item was not found." msgstr "Element introuvable." -#: boot.php:771 +#: boot.php:783 msgid "Delete this item?" msgstr "Effacer cet élément?" -#: boot.php:774 +#: boot.php:786 msgid "show fewer" msgstr "montrer moins" -#: boot.php:1148 +#: boot.php:1160 #, php-format msgid "Update %s failed. See error logs." msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur." -#: boot.php:1255 +#: boot.php:1267 msgid "Create a New Account" msgstr "Créer un nouveau compte" -#: boot.php:1280 include/nav.php:72 +#: boot.php:1292 include/nav.php:72 msgid "Logout" msgstr "Se déconnecter" -#: boot.php:1283 +#: boot.php:1295 msgid "Nickname or Email address: " msgstr "Pseudo ou courriel: " -#: boot.php:1284 +#: boot.php:1296 msgid "Password: " msgstr "Mot de passe: " -#: boot.php:1285 +#: boot.php:1297 msgid "Remember me" msgstr "Se souvenir de moi" -#: boot.php:1288 +#: boot.php:1300 msgid "Or login using OpenID: " msgstr "Ou connectez-vous via OpenID: " -#: boot.php:1294 +#: boot.php:1306 msgid "Forgot your password?" msgstr "Mot de passe oublié?" -#: boot.php:1297 +#: boot.php:1309 msgid "Website Terms of Service" msgstr "Conditions d'utilisation du site internet" -#: boot.php:1298 +#: boot.php:1310 msgid "terms of service" msgstr "conditions d'utilisation" -#: boot.php:1300 +#: boot.php:1312 msgid "Website Privacy Policy" msgstr "Politique de confidentialité du site internet" -#: boot.php:1301 +#: boot.php:1313 msgid "privacy policy" msgstr "politique de confidentialité" @@ -6255,11 +6252,11 @@ msgid "" "[pre]%s[/pre]" msgstr "Le message d’erreur est\n[pre]%s[/pre]" -#: include/dbstructure.php:152 +#: include/dbstructure.php:151 msgid "Errors encountered creating database tables." msgstr "Des erreurs ont été signalées lors de la création des tables." -#: include/dbstructure.php:210 +#: include/dbstructure.php:209 msgid "Errors encountered performing database changes." msgstr "Des erreurs sont survenues lors de la mise à jour de la base de données." @@ -6342,6 +6339,13 @@ msgstr "Tout" msgid "Categories" msgstr "Catégories" +#: include/contact_widgets.php:237 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contact en commun" +msgstr[1] "%d contacts en commun" + #: include/features.php:58 msgid "General Features" msgstr "Fonctions générales" @@ -6688,12 +6692,12 @@ msgstr "secondes" msgid "%1$d %2$s ago" msgstr "%1$d %2$s auparavant" -#: include/datetime.php:474 include/items.php:2444 +#: include/datetime.php:474 include/items.php:2470 #, php-format msgid "%s's birthday" msgstr "Anniversaire de %s's" -#: include/datetime.php:475 include/items.php:2445 +#: include/datetime.php:475 include/items.php:2471 #, php-format msgid "Happy Birthday %s" msgstr "Joyeux anniversaire, %s !" @@ -6702,148 +6706,132 @@ msgstr "Joyeux anniversaire, %s !" msgid "Requested account is not available." msgstr "Le compte demandé n'est pas disponible." -#: include/identity.php:126 include/identity.php:265 include/identity.php:625 +#: include/identity.php:96 include/identity.php:281 include/identity.php:652 msgid "Edit profile" msgstr "Editer le profil" -#: include/identity.php:225 +#: include/identity.php:241 msgid "Atom feed" msgstr "" -#: include/identity.php:230 +#: include/identity.php:246 msgid "Message" msgstr "Message" -#: include/identity.php:236 include/nav.php:185 +#: include/identity.php:252 include/nav.php:185 msgid "Profiles" msgstr "Profils" -#: include/identity.php:236 +#: include/identity.php:252 msgid "Manage/edit profiles" msgstr "Gérer/éditer les profils" -#: include/identity.php:353 -msgid "Network:" -msgstr "Réseau" - -#: include/identity.php:385 include/identity.php:471 +#: include/identity.php:412 include/identity.php:498 msgid "g A l F d" msgstr "g A | F d" -#: include/identity.php:386 include/identity.php:472 +#: include/identity.php:413 include/identity.php:499 msgid "F d" msgstr "F d" -#: include/identity.php:431 include/identity.php:518 +#: include/identity.php:458 include/identity.php:545 msgid "[today]" msgstr "[aujourd'hui]" -#: include/identity.php:443 +#: include/identity.php:470 msgid "Birthday Reminders" msgstr "Rappels d'anniversaires" -#: include/identity.php:444 +#: include/identity.php:471 msgid "Birthdays this week:" msgstr "Anniversaires cette semaine:" -#: include/identity.php:505 +#: include/identity.php:532 msgid "[No description]" msgstr "[Sans description]" -#: include/identity.php:529 +#: include/identity.php:556 msgid "Event Reminders" msgstr "Rappels d'événements" -#: include/identity.php:530 +#: include/identity.php:557 msgid "Events this week:" msgstr "Evénements cette semaine :" -#: include/identity.php:558 +#: include/identity.php:585 msgid "j F, Y" msgstr "j F, Y" -#: include/identity.php:559 +#: include/identity.php:586 msgid "j F" msgstr "j F" -#: include/identity.php:566 +#: include/identity.php:593 msgid "Birthday:" msgstr "Anniversaire:" -#: include/identity.php:570 +#: include/identity.php:597 msgid "Age:" msgstr "Age:" -#: include/identity.php:579 +#: include/identity.php:606 #, php-format msgid "for %1$d %2$s" msgstr "depuis %1$d %2$s" -#: include/identity.php:592 +#: include/identity.php:619 msgid "Religion:" msgstr "Religion:" -#: include/identity.php:596 +#: include/identity.php:623 msgid "Hobbies/Interests:" msgstr "Passe-temps/Centres d'intérêt:" -#: include/identity.php:603 +#: include/identity.php:630 msgid "Contact information and Social Networks:" msgstr "Coordonnées/Réseaux sociaux:" -#: include/identity.php:605 +#: include/identity.php:632 msgid "Musical interests:" msgstr "Goûts musicaux:" -#: include/identity.php:607 +#: include/identity.php:634 msgid "Books, literature:" msgstr "Lectures:" -#: include/identity.php:609 +#: include/identity.php:636 msgid "Television:" msgstr "Télévision:" -#: include/identity.php:611 +#: include/identity.php:638 msgid "Film/dance/culture/entertainment:" msgstr "Cinéma/Danse/Culture/Divertissement:" -#: include/identity.php:613 +#: include/identity.php:640 msgid "Love/Romance:" msgstr "Amour/Romance:" -#: include/identity.php:615 +#: include/identity.php:642 msgid "Work/employment:" msgstr "Activité professionnelle/Occupation:" -#: include/identity.php:617 +#: include/identity.php:644 msgid "School/education:" msgstr "Études/Formation:" -#: include/identity.php:621 +#: include/identity.php:648 msgid "Forums:" msgstr "" -#: include/identity.php:650 include/nav.php:75 -msgid "Status" -msgstr "Statut" - -#: include/identity.php:653 -msgid "Status Messages and Posts" -msgstr "Messages d'état et publications" - -#: include/identity.php:661 -msgid "Profile Details" -msgstr "Détails du profil" - -#: include/identity.php:674 include/identity.php:677 include/nav.php:78 +#: include/identity.php:701 include/identity.php:704 include/nav.php:78 msgid "Videos" msgstr "Vidéos" -#: include/identity.php:689 include/nav.php:140 +#: include/identity.php:716 include/nav.php:140 msgid "Events and Calendar" msgstr "Événements et agenda" -#: include/identity.php:697 +#: include/identity.php:724 msgid "Only You Can See This" msgstr "Vous seul pouvez voir ça" @@ -7173,6 +7161,10 @@ msgid_plural "%d Contacts" msgstr[0] "%d contact" msgstr[1] "%d contacts" +#: include/text.php:921 +msgid "View Contacts" +msgstr "Voir les contacts" + #: include/text.php:1010 include/nav.php:121 msgid "Full Text" msgstr "" @@ -7325,15 +7317,15 @@ msgstr "" msgid "view on separate page" msgstr "" -#: include/text.php:1997 +#: include/text.php:1995 msgid "activity" msgstr "activité" -#: include/text.php:2000 +#: include/text.php:1998 msgid "post" msgstr "publication" -#: include/text.php:2168 +#: include/text.php:2166 msgid "Item filed" msgstr "Élément classé" @@ -7634,43 +7626,43 @@ msgstr "Navigation" msgid "Site map" msgstr "Carte du site" -#: include/api.php:321 include/api.php:332 include/api.php:441 -#: include/api.php:1160 include/api.php:1162 +#: include/api.php:343 include/api.php:354 include/api.php:463 +#: include/api.php:1182 include/api.php:1184 msgid "User not found." msgstr "Utilisateur non trouvé" -#: include/api.php:808 +#: include/api.php:830 #, 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:827 +#: include/api.php:849 #, 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:846 +#: include/api.php:868 #, php-format msgid "Monthly posting limit of %d posts reached. The post was rejected." msgstr "Le quota mensuel de %d publications a été atteint. La publication a été rejetée." -#: include/api.php:1369 +#: include/api.php:1391 msgid "There is no status with this id." msgstr "Il n'y a pas de statut avec cet id." -#: include/api.php:1443 +#: include/api.php:1465 msgid "There is no conversation with this id." msgstr "Il n'y a pas de conversation avec cet id." -#: include/api.php:1722 +#: include/api.php:1744 msgid "Invalid item." msgstr "Item invalide." -#: include/api.php:1732 +#: include/api.php:1754 msgid "Invalid action. " msgstr "Action invalide." -#: include/api.php:1740 +#: include/api.php:1762 msgid "DB error" msgstr "" @@ -7792,15 +7784,15 @@ msgstr "\n\t\tVoici vos informations de connexion :\n\t\t\tAdresse :\t%3$s\n\t msgid "Sharing notification from Diaspora network" msgstr "Notification de partage du réseau Diaspora" -#: include/diaspora.php:2574 +#: include/diaspora.php:2606 msgid "Attachments:" msgstr "Pièces jointes : " -#: include/items.php:4871 +#: include/items.php:4897 msgid "Do you really want to delete this item?" msgstr "Voulez-vous vraiment supprimer cet élément ?" -#: include/items.php:5146 +#: include/items.php:5172 msgid "Archives" msgstr "Archives" diff --git a/view/fr/strings.php b/view/fr/strings.php index 95642eb3b2..6ebfd5dbba 100644 --- a/view/fr/strings.php +++ b/view/fr/strings.php @@ -5,6 +5,8 @@ function string_plural_select_fr($n){ return ($n > 1);; }} ; +$a->strings["Network:"] = "Réseau"; +$a->strings["Forum"] = "Forum"; $a->strings["%d contact edited."] = array( 0 => "%d contact édité", 1 => "%d contacts édités.", @@ -33,28 +35,11 @@ $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["%d contact in common"] = array( - 0 => "%d contact en commun", - 1 => "%d contacts en commun", -); -$a->strings["View all contacts"] = "Voir tous les contacts"; -$a->strings["Unblock"] = "Débloquer"; -$a->strings["Block"] = "Bloquer"; -$a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\""; -$a->strings["Unignore"] = "Ne plus ignorer"; -$a->strings["Ignore"] = "Ignorer"; -$a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\""; -$a->strings["Unarchive"] = "Désarchiver"; -$a->strings["Archive"] = "Archiver"; -$a->strings["Toggle Archive status"] = "(dés)activer l'état \"archivé\""; -$a->strings["Repair"] = "Réparer"; -$a->strings["Advanced Contact Settings"] = "Réglages avancés du contact"; $a->strings["Communications lost with this contact!"] = "Communications perdues avec ce contact !"; $a->strings["Fetch further information for feeds"] = "Chercher plus d'informations pour les flux"; $a->strings["Disabled"] = "Désactivé"; $a->strings["Fetch information"] = "Récupérer informations"; $a->strings["Fetch information and keywords"] = "Récupérer informations"; -$a->strings["Contact Editor"] = "Éditeur de contact"; $a->strings["Submit"] = "Envoyer"; $a->strings["Profile Visibility"] = "Visibilité du profil"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée."; @@ -70,6 +55,10 @@ $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["Connect/Follow"] = "Connecter/Suivre"; +$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é"; @@ -80,6 +69,9 @@ $a->strings["Send a notification of every new post of this contact"] = "Envoyer $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["Profile URL"] = "URL du Profil"; +$a->strings["Location:"] = "Localisation:"; +$a->strings["About:"] = "À propos:"; +$a->strings["Tags:"] = "Étiquette:"; $a->strings["Suggestions"] = "Suggestions"; $a->strings["Suggest potential friends"] = "Suggérer des amis potentiels"; $a->strings["All Contacts"] = "Tous les contacts"; @@ -99,7 +91,21 @@ $a->strings["Search your contacts"] = "Rechercher dans vos contacts"; $a->strings["Finding: "] = "Trouvé: "; $a->strings["Find"] = "Trouver"; $a->strings["Update"] = "Mises-à-jour"; +$a->strings["Archive"] = "Archiver"; +$a->strings["Unarchive"] = "Désarchiver"; $a->strings["Delete"] = "Supprimer"; +$a->strings["Status"] = "Statut"; +$a->strings["Status Messages and Posts"] = "Messages d'état et publications"; +$a->strings["Profile"] = "Profil"; +$a->strings["Profile Details"] = "Détails du profil"; +$a->strings["View all contacts"] = "Voir tous les contacts"; +$a->strings["Common Friends"] = "Amis communs"; +$a->strings["View all common friends"] = ""; +$a->strings["Repair"] = "Réparer"; +$a->strings["Advanced Contact Settings"] = "Réglages avancés du contact"; +$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["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"; @@ -112,7 +118,6 @@ $a->strings["Post successful."] = "Publication réussie."; $a->strings["Permission denied"] = "Permission refusée"; $a->strings["Invalid profile identifier."] = "Identifiant de profil invalide."; $a->strings["Profile Visibility Editor"] = "Éditer la visibilité du profil"; -$a->strings["Profile"] = "Profil"; $a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le supprimer."; $a->strings["Visible To"] = "Visible par"; $a->strings["All Contacts (with secure profile access)"] = "Tous les contacts (ayant un accès sécurisé)"; @@ -185,12 +190,12 @@ $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["Subsribing 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["No contact provided."] = "Pas de contact fourni."; +$a->strings["Couldn't fetch information for contact."] = "Impossible de récupérer les informations pour ce contact."; +$a->strings["Couldn't fetch friends for contact."] = "Impossible de récupérer les amis de ce contact."; +$a->strings["Done"] = "Terminé"; +$a->strings["success"] = "réussite"; +$a->strings["failed"] = "échec"; $a->strings["ignored"] = "ignoré"; $a->strings["Keep this window open until done."] = "Veuillez garder cette fenêtre ouverte jusqu'à la fin."; $a->strings["Save to Folder:"] = "Sauver dans le Dossier:"; @@ -206,9 +211,6 @@ $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["Location:"] = "Localisation:"; -$a->strings["About:"] = "À propos:"; -$a->strings["Tags:"] = "Étiquette:"; $a->strings["Contact added"] = "Contact ajouté"; $a->strings["Unable to locate original post."] = "Impossible de localiser la publication originale."; $a->strings["Empty post discarded."] = "Publication vide rejetée."; @@ -229,6 +231,7 @@ $a->strings["Group removed."] = "Groupe enlevé."; $a->strings["Unable to remove group."] = "Impossible d'enlever le groupe."; $a->strings["Group Editor"] = "Éditeur de groupe"; $a->strings["Members"] = "Membres"; +$a->strings["Group is empty"] = "Groupe vide"; $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."; @@ -297,8 +300,6 @@ $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["Forum"] = "Forum"; -$a->strings["View Contacts"] = "Voir les contacts"; $a->strings["Invalid request identifier."] = "Identifiant de demande invalide."; $a->strings["Discard"] = "Rejeter"; $a->strings["System"] = "Système"; @@ -394,7 +395,6 @@ $a->strings["Please use your browser 'Back' button now if you a $a->strings["No mirroring"] = "Pas de miroir"; $a->strings["Mirror as forwarded posting"] = ""; $a->strings["Mirror as my own posting"] = ""; -$a->strings["Repair Contact Settings"] = "Réglages de réparation des contacts"; $a->strings["Return to contact editor"] = "Retour à l'éditeur de contact"; $a->strings["Refetch contact data"] = "Récupérer à nouveau les données de contact"; $a->strings["Name"] = "Nom"; @@ -428,7 +428,7 @@ $a->strings["Themes"] = "Thèmes"; $a->strings["DB updates"] = "Mise-à-jour de la base"; $a->strings["Inspect Queue"] = "Inspecter la file d'attente"; $a->strings["Logs"] = "Journaux"; -$a->strings["probe address"] = ""; +$a->strings["probe address"] = "Tester une adresse"; $a->strings["check webfinger"] = "vérification de webfinger"; $a->strings["Admin"] = "Admin"; $a->strings["Plugin Features"] = "Propriétés des extensions"; @@ -493,7 +493,7 @@ $a->strings["The email address your server shall use to send notification emails $a->strings["Banner/Logo"] = "Bannière/Logo"; $a->strings["Shortcut icon"] = "Icône de raccourci"; $a->strings["Link to an icon that will be used for browsers."] = "Lien vers une icône qui sera utilisée pour les navigateurs."; -$a->strings["Touch icon"] = ""; +$a->strings["Touch icon"] = "Icône pour systèmes tactiles"; $a->strings["Link to an icon that will be used for tablets and mobiles."] = "Lien vers une icône qui sera utilisée pour les tablettes et les mobiles."; $a->strings["Additional Info"] = "Informations supplémentaires"; $a->strings["For public servers: you can add additional information here that will be listed at %s/siteinfo."] = "Pour les serveurs publics : vous pouvez ajouter des informations supplémentaires ici, qui figureront dans %s/siteinfo."; @@ -595,14 +595,14 @@ $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["Publish server information"] = "Publier les informations du serveur"; +$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."] = "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."; $a->strings["Use MySQL full text engine"] = "Utiliser le moteur de recherche plein texte de MySQL"; $a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus."; $a->strings["Suppress Language"] = "Supprimer un langage"; $a->strings["Suppress language information in meta information about a posting."] = "Supprimer les informations de langue dans les métadonnées des publications."; -$a->strings["Suppress Tags"] = ""; -$a->strings["Suppress showing a list of hashtags at the end of the posting."] = ""; +$a->strings["Suppress Tags"] = "Masquer les tags"; +$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Ne pas afficher la liste des hashtags à la fin d’un message."; $a->strings["Path to item cache"] = "Chemin vers le cache des objets."; $a->strings["The item caches buffers generated bbcode and external images."] = ""; $a->strings["Cache duration in seconds"] = "Durée du cache en secondes"; @@ -623,8 +623,8 @@ $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"] = "Nouvelle URL de base"; $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["RINO Encryption"] = "Chiffrement RINO"; +$a->strings["Encryption layer between nodes."] = "Couche de chiffrement entre les nœuds du réseau."; $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"] = "Mise-à-jour validée comme 'réussie'"; @@ -683,10 +683,10 @@ $a->strings["Enable"] = "Activer"; $a->strings["Toggle"] = "Activer/Désactiver"; $a->strings["Author: "] = "Auteur: "; $a->strings["Maintainer: "] = "Mainteneur: "; -$a->strings["Reload active plugins"] = ""; +$a->strings["Reload active plugins"] = "Recharger les extensions actives"; $a->strings["No themes found."] = "Aucun thème trouvé."; $a->strings["Screenshot"] = "Capture d'écran"; -$a->strings["Reload active themes"] = ""; +$a->strings["Reload active themes"] = "Recharger les thèmes actifs"; $a->strings["[Experimental]"] = "[Expérimental]"; $a->strings["[Unsupported]"] = "[Non supporté]"; $a->strings["Log settings updated."] = "Réglages des journaux mis-à-jour."; @@ -721,12 +721,10 @@ $a->strings["Warning: This group contains %s member from an insecure network."] ); $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"] = ""; $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["No friends to display."] = "Pas d'amis à afficher."; -$a->strings["Friends of %s"] = "Amis de %s"; $a->strings["Event can not end before it has started."] = ""; $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["Sun"] = "Dim"; @@ -896,8 +894,8 @@ $a->strings["Note: as a security measure, you should give the web server write a $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"] = ""; -$a->strings["ImageMagick supports GIF"] = ""; +$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\"."; @@ -913,7 +911,7 @@ $a->strings["%1\$s welcomes %2\$s"] = "%1\$s accueille %2\$s"; $a->strings["Welcome to %s"] = "Bienvenue sur %s"; $a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise"; $a->strings["Or - did you try to upload an empty file?"] = "Ou — auriez-vous essayé de télécharger un fichier vide ?"; -$a->strings["File exceeds size limit of %s"] = ""; +$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 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 à :"; @@ -996,7 +994,7 @@ $a->strings["Display Settings"] = "Affichage"; $a->strings["Display Theme:"] = "Thème d'affichage:"; $a->strings["Mobile Theme:"] = "Thème mobile:"; $a->strings["Update browser every xx seconds"] = "Mettre-à-jour l'affichage toutes les xx secondes"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Délai minimum de 10 secondes, pas de maximum"; +$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = ""; $a->strings["Number of items to display per page:"] = "Nombre d’éléments par page:"; $a->strings["Maximum of 100 items"] = "Maximum de 100 éléments"; $a->strings["Number of items to display per page when viewed from mobile device:"] = "Nombre d'éléments a afficher par page pour un appareil mobile"; @@ -1031,7 +1029,7 @@ $a->strings["Allow friends to tag your posts?"] = "Autoriser vos amis à étique $a->strings["Allow us to suggest you as a potential friend to new members?"] = "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?"; $a->strings["Permit unknown people to send you private mail?"] = "Autoriser les messages privés d'inconnus?"; $a->strings["Profile is not published."] = "Ce profil n'est pas publié."; -$a->strings["Your Identity Address is '%s' or '%s'."] = ""; +$a->strings["Your Identity Address is '%s' or '%s'."] = "L’adresse de votre identité est '%s' or '%s'."; $a->strings["Automatically expire posts after this many days:"] = "Les publications expirent automatiquement après (en jours) :"; $a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées"; $a->strings["Advanced expiration settings"] = "Réglages avancés de l'expiration"; @@ -1121,7 +1119,7 @@ $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."] = ""; +$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["Friendica"] = "Friendica"; @@ -1129,7 +1127,7 @@ $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["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."] = ""; +$a->strings["Registration successful."] = "Inscription réussie."; $a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée."; $a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site."; $a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain."; @@ -1139,7 +1137,7 @@ $a->strings["Your OpenID (optional): "] = "Votre OpenID (facultatif): "; $a->strings["Include your profile in member directory?"] = "Inclure votre profil dans l'annuaire des membres?"; $a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation."; $a->strings["Your invitation ID: "] = "Votre ID d'invitation: "; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = ""; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Votre nom complet (p. ex. Michel Dupont):"; $a->strings["Your Email Address: "] = "Votre adresse courriel: "; $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'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@\$sitename</strong>'."; @@ -1154,8 +1152,6 @@ $a->strings["Only one search per minute is permitted for not logged in users."] $a->strings["Search"] = "Recherche"; $a->strings["Items tagged with: %s"] = ""; $a->strings["Search results for: %s"] = ""; -$a->strings["Age: "] = "Age : "; -$a->strings["Gender: "] = "Genre : "; $a->strings["Status:"] = "Statut:"; $a->strings["Homepage:"] = "Page personnelle:"; $a->strings["Global Directory"] = "Annuaire global"; @@ -1172,7 +1168,6 @@ $a->strings["Potential Delegates"] = "Délégataires potentiels"; $a->strings["Add"] = "Ajouter"; $a->strings["No entries."] = "Aucune entrée."; $a->strings["No contacts in common."] = "Pas de contacts en commun."; -$a->strings["Common Friends"] = "Amis communs"; $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"; @@ -1259,6 +1254,7 @@ $a->strings["Love/romance"] = "Amour / Romance"; $a->strings["Work/employment"] = "Activité professionnelle / Occupation"; $a->strings["School/education"] = "Études / Formation"; $a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Ceci est votre profil public.
    Il peut être visible par n'importe quel utilisateur d'Internet."; +$a->strings["Age: "] = "Age : "; $a->strings["Edit/Manage Profiles"] = "Editer / gérer les profils"; $a->strings["Change profile photo"] = "Changer de photo de profil"; $a->strings["Create New Profile"] = "Créer un nouveau profil"; @@ -1445,6 +1441,10 @@ $a->strings["All Networks"] = "Tous réseaux"; $a->strings["Saved Folders"] = "Dossiers sauvegardés"; $a->strings["Everything"] = "Tout"; $a->strings["Categories"] = "Catégories"; +$a->strings["%d contact in common"] = array( + 0 => "%d contact en commun", + 1 => "%d contacts en commun", +); $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"; @@ -1536,7 +1536,6 @@ $a->strings["Atom feed"] = ""; $a->strings["Message"] = "Message"; $a->strings["Profiles"] = "Profils"; $a->strings["Manage/edit profiles"] = "Gérer/éditer les profils"; -$a->strings["Network:"] = "Réseau"; $a->strings["g A l F d"] = "g A | F d"; $a->strings["F d"] = "F d"; $a->strings["[today]"] = "[aujourd'hui]"; @@ -1561,9 +1560,6 @@ $a->strings["Love/Romance:"] = "Amour/Romance:"; $a->strings["Work/employment:"] = "Activité professionnelle/Occupation:"; $a->strings["School/education:"] = "Études/Formation:"; $a->strings["Forums:"] = ""; -$a->strings["Status"] = "Statut"; -$a->strings["Status Messages and Posts"] = "Messages d'état et publications"; -$a->strings["Profile Details"] = "Détails du profil"; $a->strings["Videos"] = "Vidéos"; $a->strings["Events and Calendar"] = "Événements et agenda"; $a->strings["Only You Can See This"] = "Vous seul pouvez voir ça"; @@ -1654,6 +1650,7 @@ $a->strings["%d Contact"] = array( 0 => "%d contact", 1 => "%d contacts", ); +$a->strings["View Contacts"] = "Voir les contacts"; $a->strings["Full Text"] = ""; $a->strings["Tags"] = ""; $a->strings["poke"] = "titiller"; From 9640eb7c817530ceb85e0ae67f8a7d8927524c35 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 14 Dec 2015 16:56:40 +0100 Subject: [PATCH 429/443] IT update to the strings --- view/it/messages.po | 14616 +++++++++++++++++++++--------------------- view/it/strings.php | 2228 +++---- 2 files changed, 8639 insertions(+), 8205 deletions(-) diff --git a/view/it/messages.po b/view/it/messages.po index efe44618a7..5f0129fb0a 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-09-22 09:58+0200\n" -"PO-Revision-Date: 2015-10-06 17:43+0000\n" -"Last-Translator: Sandro Santilli \n" +"POT-Creation-Date: 2015-12-14 07:48+0100\n" +"PO-Revision-Date: 2015-12-14 13:05+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,3333 +25,345 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: object/Item.php:95 -msgid "This entry was edited" -msgstr "Questa voce è stata modificata" - -#: object/Item.php:117 mod/photos.php:1379 mod/content.php:622 -msgid "Private Message" -msgstr "Messaggio privato" - -#: object/Item.php:121 mod/settings.php:694 mod/content.php:730 -msgid "Edit" -msgstr "Modifica" - -#: object/Item.php:130 mod/photos.php:1672 mod/content.php:439 -#: mod/content.php:742 include/conversation.php:612 -msgid "Select" -msgstr "Seleziona" - -#: object/Item.php:131 mod/admin.php:1087 mod/photos.php:1673 -#: mod/contacts.php:801 mod/settings.php:695 mod/group.php:171 -#: mod/content.php:440 mod/content.php:743 include/conversation.php:613 -msgid "Delete" -msgstr "Rimuovi" - -#: object/Item.php:134 mod/content.php:765 -msgid "save to folder" -msgstr "salva nella cartella" - -#: object/Item.php:196 mod/content.php:755 -msgid "add star" -msgstr "aggiungi a speciali" - -#: object/Item.php:197 mod/content.php:756 -msgid "remove star" -msgstr "rimuovi da speciali" - -#: object/Item.php:198 mod/content.php:757 -msgid "toggle star status" -msgstr "Inverti stato preferito" - -#: object/Item.php:201 mod/content.php:760 -msgid "starred" -msgstr "preferito" - -#: object/Item.php:209 -msgid "ignore thread" -msgstr "ignora la discussione" - -#: object/Item.php:210 -msgid "unignore thread" -msgstr "non ignorare la discussione" - -#: object/Item.php:211 -msgid "toggle ignore status" -msgstr "inverti stato \"Ignora\"" - -#: object/Item.php:214 mod/ostatus_subscribe.php:69 -msgid "ignored" -msgstr "ignorato" - -#: object/Item.php:221 mod/content.php:761 -msgid "add tag" -msgstr "aggiungi tag" - -#: object/Item.php:232 mod/photos.php:1561 mod/content.php:686 -msgid "I like this (toggle)" -msgstr "Mi piace (clic per cambiare)" - -#: object/Item.php:232 mod/content.php:686 -msgid "like" -msgstr "mi piace" - -#: object/Item.php:233 mod/photos.php:1562 mod/content.php:687 -msgid "I don't like this (toggle)" -msgstr "Non mi piace (clic per cambiare)" - -#: object/Item.php:233 mod/content.php:687 -msgid "dislike" -msgstr "non mi piace" - -#: object/Item.php:235 mod/content.php:689 -msgid "Share this" -msgstr "Condividi questo" - -#: object/Item.php:235 mod/content.php:689 -msgid "share" -msgstr "condividi" - -#: object/Item.php:318 include/conversation.php:665 -msgid "Categories:" -msgstr "Categorie:" - -#: object/Item.php:319 include/conversation.php:666 -msgid "Filed under:" -msgstr "Archiviato in:" - -#: object/Item.php:328 object/Item.php:329 mod/content.php:473 -#: mod/content.php:854 mod/content.php:855 include/conversation.php:653 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" - -#: object/Item.php:330 mod/content.php:856 -msgid "to" -msgstr "a" - -#: object/Item.php:331 -msgid "via" -msgstr "via" - -#: object/Item.php:332 mod/content.php:857 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" - -#: object/Item.php:333 mod/content.php:858 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca" - -#: object/Item.php:342 mod/content.php:483 mod/content.php:866 -#: include/conversation.php:673 -#, php-format -msgid "%s from %s" -msgstr "%s da %s" - -#: object/Item.php:363 object/Item.php:679 mod/photos.php:1583 -#: mod/photos.php:1627 mod/photos.php:1715 mod/content.php:711 boot.php:764 -msgid "Comment" -msgstr "Commento" - -#: object/Item.php:366 mod/message.php:335 mod/message.php:566 -#: mod/editpost.php:124 mod/wallmessage.php:156 mod/photos.php:1564 -#: mod/content.php:501 mod/content.php:885 include/conversation.php:691 -#: include/conversation.php:1074 -msgid "Please wait" -msgstr "Attendi" - -#: object/Item.php:389 mod/content.php:605 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" - -#: object/Item.php:391 object/Item.php:404 mod/content.php:607 -#: include/text.php:2038 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "commento" - -#: object/Item.php:392 mod/content.php:608 boot.php:765 include/items.php:5147 -#: include/contact_widgets.php:205 -msgid "show more" -msgstr "mostra di più" - -#: object/Item.php:677 mod/photos.php:1581 mod/photos.php:1625 -#: mod/photos.php:1713 mod/content.php:709 -msgid "This is you" -msgstr "Questo sei tu" - -#: object/Item.php:680 mod/fsuggest.php:107 mod/message.php:336 -#: mod/message.php:565 mod/events.php:511 mod/photos.php:1104 -#: mod/photos.php:1223 mod/photos.php:1533 mod/photos.php:1584 -#: mod/photos.php:1628 mod/photos.php:1716 mod/contacts.php:596 -#: mod/invite.php:140 mod/profiles.php:683 mod/manage.php:110 mod/poke.php:199 -#: mod/localtime.php:45 mod/install.php:250 mod/install.php:288 -#: mod/content.php:712 mod/mood.php:137 mod/crepair.php:191 -#: view/theme/diabook/theme.php:633 view/theme/diabook/config.php:148 -#: view/theme/vier/config.php:56 view/theme/dispy/config.php:70 -#: view/theme/duepuntozero/config.php:59 view/theme/quattro/config.php:64 -#: view/theme/cleanzero/config.php:80 -msgid "Submit" -msgstr "Invia" - -#: object/Item.php:681 mod/content.php:713 -msgid "Bold" -msgstr "Grassetto" - -#: object/Item.php:682 mod/content.php:714 -msgid "Italic" -msgstr "Corsivo" - -#: object/Item.php:683 mod/content.php:715 -msgid "Underline" -msgstr "Sottolineato" - -#: object/Item.php:684 mod/content.php:716 -msgid "Quote" -msgstr "Citazione" - -#: object/Item.php:685 mod/content.php:717 -msgid "Code" -msgstr "Codice" - -#: object/Item.php:686 mod/content.php:718 -msgid "Image" -msgstr "Immagine" - -#: object/Item.php:687 mod/content.php:719 -msgid "Link" -msgstr "Link" - -#: object/Item.php:688 mod/content.php:720 -msgid "Video" -msgstr "Video" - -#: object/Item.php:689 mod/editpost.php:145 mod/events.php:509 -#: mod/photos.php:1585 mod/photos.php:1629 mod/photos.php:1717 -#: mod/content.php:721 include/conversation.php:1089 -msgid "Preview" -msgstr "Anteprima" - -#: index.php:225 mod/apps.php:7 -msgid "You must be logged in to use addons. " -msgstr "Devi aver effettuato il login per usare gli addons." - -#: index.php:269 mod/help.php:42 mod/p.php:16 mod/p.php:25 -msgid "Not Found" -msgstr "Non trovato" - -#: index.php:272 mod/help.php:45 -msgid "Page not found." -msgstr "Pagina non trovata." - -#: index.php:381 mod/profperm.php:19 mod/group.php:72 -msgid "Permission denied" -msgstr "Permesso negato" - -#: index.php:382 mod/fsuggest.php:78 mod/files.php:170 -#: mod/notifications.php:66 mod/message.php:39 mod/message.php:175 -#: mod/editpost.php:10 mod/dfrn_confirm.php:55 mod/events.php:164 -#: mod/wallmessage.php:9 mod/wallmessage.php:33 mod/wallmessage.php:79 -#: mod/wallmessage.php:103 mod/nogroup.php:25 mod/wall_upload.php:70 -#: mod/wall_upload.php:71 mod/api.php:26 mod/api.php:31 mod/photos.php:156 -#: mod/photos.php:1072 mod/register.php:42 mod/attach.php:33 -#: mod/contacts.php:350 mod/follow.php:9 mod/follow.php:44 mod/follow.php:83 -#: mod/uimport.php:23 mod/allfriends.php:9 mod/invite.php:15 -#: mod/invite.php:101 mod/settings.php:20 mod/settings.php:116 -#: mod/settings.php:619 mod/display.php:508 mod/profiles.php:165 -#: mod/profiles.php:615 mod/wall_attach.php:60 mod/wall_attach.php:61 -#: mod/suggest.php:58 mod/repair_ostatus.php:9 mod/manage.php:96 -#: mod/delegate.php:12 mod/viewcontacts.php:24 mod/notes.php:20 -#: mod/poke.php:135 mod/ostatus_subscribe.php:9 mod/profile_photo.php:19 -#: mod/profile_photo.php:169 mod/profile_photo.php:180 -#: mod/profile_photo.php:193 mod/group.php:19 mod/regmod.php:110 -#: mod/item.php:170 mod/item.php:186 mod/mood.php:114 mod/network.php:4 -#: mod/crepair.php:120 include/items.php:5036 -msgid "Permission denied." -msgstr "Permesso negato." - -#: index.php:441 -msgid "toggle mobile" -msgstr "commuta tema mobile" - -#: mod/update_notes.php:37 mod/update_profile.php:41 -#: mod/update_community.php:18 mod/update_network.php:25 -#: mod/update_display.php:22 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" - -#: mod/fsuggest.php:20 mod/fsuggest.php:92 mod/dfrn_confirm.php:120 -#: mod/crepair.php:134 -msgid "Contact not found." -msgstr "Contatto non trovato." - -#: mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggerimento di amicizia inviato." - -#: mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggerisci amici" - -#: mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggerisci un amico a %s" - -#: mod/dfrn_request.php:95 -msgid "This introduction has already been accepted." -msgstr "Questa presentazione è già stata accettata." - -#: mod/dfrn_request.php:120 mod/dfrn_request.php:518 -msgid "Profile location is not valid or does not contain profile information." -msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." - -#: mod/dfrn_request.php:125 mod/dfrn_request.php:523 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." - -#: mod/dfrn_request.php:127 mod/dfrn_request.php:525 -msgid "Warning: profile location has no profile photo." -msgstr "Attenzione: l'indirizzo del profilo non ha una foto." - -#: mod/dfrn_request.php:130 mod/dfrn_request.php:528 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d parametro richiesto non è stato trovato all'indirizzo dato" -msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato" - -#: mod/dfrn_request.php:172 -msgid "Introduction complete." -msgstr "Presentazione completa." - -#: mod/dfrn_request.php:214 -msgid "Unrecoverable protocol error." -msgstr "Errore di comunicazione." - -#: mod/dfrn_request.php:242 -msgid "Profile unavailable." -msgstr "Profilo non disponibile." - -#: mod/dfrn_request.php:267 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s ha ricevuto troppe richieste di connessione per oggi." - -#: mod/dfrn_request.php:268 -msgid "Spam protection measures have been invoked." -msgstr "Sono state attivate le misure di protezione contro lo spam." - -#: mod/dfrn_request.php:269 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Gli amici sono pregati di riprovare tra 24 ore." - -#: mod/dfrn_request.php:331 -msgid "Invalid locator" -msgstr "Invalid locator" - -#: mod/dfrn_request.php:340 -msgid "Invalid email address." -msgstr "Indirizzo email non valido." - -#: mod/dfrn_request.php:367 -msgid "This account has not been configured for email. Request failed." -msgstr "Questo account non è stato configurato per l'email. Richiesta fallita." - -#: mod/dfrn_request.php:463 -msgid "Unable to resolve your name at the provided location." -msgstr "Impossibile risolvere il tuo nome nella posizione indicata." - -#: mod/dfrn_request.php:476 -msgid "You have already introduced yourself here." -msgstr "Ti sei già presentato qui." - -#: mod/dfrn_request.php:480 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Pare che tu e %s siate già amici." - -#: mod/dfrn_request.php:501 -msgid "Invalid profile URL." -msgstr "Indirizzo profilo non valido." - -#: mod/dfrn_request.php:507 include/follow.php:70 -msgid "Disallowed profile URL." -msgstr "Indirizzo profilo non permesso." - -#: mod/dfrn_request.php:576 mod/contacts.php:194 -msgid "Failed to update contact record." -msgstr "Errore nell'aggiornamento del contatto." - -#: mod/dfrn_request.php:597 -msgid "Your introduction has been sent." -msgstr "La tua presentazione è stata inviata." - -#: mod/dfrn_request.php:650 -msgid "Please login to confirm introduction." -msgstr "Accedi per confermare la presentazione." - -#: mod/dfrn_request.php:660 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." - -#: mod/dfrn_request.php:674 mod/dfrn_request.php:691 -msgid "Confirm" -msgstr "Conferma" - -#: mod/dfrn_request.php:686 -msgid "Hide this contact" -msgstr "Nascondi questo contatto" - -#: mod/dfrn_request.php:689 -#, php-format -msgid "Welcome home %s." -msgstr "Bentornato a casa %s." - -#: mod/dfrn_request.php:690 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Conferma la tua richiesta di connessione con %s." - -#: mod/dfrn_request.php:732 mod/dfrn_confirm.php:753 include/items.php:4250 -msgid "[Name Withheld]" -msgstr "[Nome Nascosto]" - -#: mod/dfrn_request.php:777 mod/photos.php:942 mod/videos.php:187 -#: mod/search.php:93 mod/search.php:98 mod/display.php:223 -#: mod/community.php:18 mod/viewcontacts.php:19 mod/directory.php:35 -msgid "Public access denied." -msgstr "Accesso negato." - -#: mod/dfrn_request.php:819 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:" - -#: mod/dfrn_request.php: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 "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:845 -msgid "Friend/Connection Request" -msgstr "Richieste di amicizia/connessione" - -#: mod/dfrn_request.php:846 -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:847 mod/follow.php:58 -msgid "Please answer the following:" -msgstr "Rispondi:" - -#: mod/dfrn_request.php:848 mod/follow.php:59 -#, php-format -msgid "Does %s know you?" -msgstr "%s ti conosce?" - -#: mod/dfrn_request.php:848 mod/api.php:106 mod/register.php:236 -#: mod/follow.php:59 mod/settings.php:1068 mod/settings.php:1074 -#: mod/settings.php:1082 mod/settings.php:1086 mod/settings.php:1091 -#: mod/settings.php:1097 mod/settings.php:1103 mod/settings.php:1109 -#: mod/settings.php:1135 mod/settings.php:1136 mod/settings.php:1137 -#: mod/settings.php:1138 mod/settings.php:1139 mod/profiles.php:658 -#: mod/profiles.php:662 -msgid "No" -msgstr "No" - -#: mod/dfrn_request.php:848 mod/message.php:210 mod/api.php:105 -#: mod/register.php:235 mod/contacts.php:441 mod/follow.php:59 -#: mod/settings.php:1068 mod/settings.php:1074 mod/settings.php:1082 -#: mod/settings.php:1086 mod/settings.php:1091 mod/settings.php:1097 -#: mod/settings.php:1103 mod/settings.php:1109 mod/settings.php:1135 -#: mod/settings.php:1136 mod/settings.php:1137 mod/settings.php:1138 -#: mod/settings.php:1139 mod/profiles.php:658 mod/profiles.php:661 -#: mod/suggest.php:29 include/items.php:4868 -msgid "Yes" -msgstr "Si" - -#: mod/dfrn_request.php:852 mod/follow.php:60 -msgid "Add a personal note:" -msgstr "Aggiungi una nota personale:" - -#: 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 Social Web" - -#: mod/dfrn_request.php:856 mod/settings.php:793 -#: include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: mod/dfrn_request.php:857 -#, 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:858 mod/follow.php:66 -msgid "Your Identity Address:" -msgstr "L'indirizzo della tua identità:" - -#: mod/dfrn_request.php:861 mod/follow.php:69 -msgid "Submit Request" -msgstr "Invia richiesta" - -#: mod/dfrn_request.php:862 mod/message.php:213 mod/editpost.php:148 -#: mod/fbrowser.php:89 mod/fbrowser.php:125 mod/photos.php:225 -#: mod/photos.php:314 mod/contacts.php:444 mod/videos.php:121 -#: mod/follow.php:70 mod/tagrm.php:11 mod/tagrm.php:94 mod/settings.php:633 -#: mod/settings.php:659 mod/suggest.php:32 include/items.php:4871 -#: include/conversation.php:1093 -msgid "Cancel" -msgstr "Annulla" - -#: mod/files.php:156 mod/videos.php:373 include/text.php:1460 -msgid "View Video" -msgstr "Guarda Video" - -#: mod/profile.php:21 include/identity.php:77 -msgid "Requested profile is not available." -msgstr "Profilo richiesto non disponibile." - -#: mod/profile.php:155 mod/display.php:343 -msgid "Access to this profile has been restricted." -msgstr "L'accesso a questo profilo è stato limitato." - -#: mod/profile.php:179 -msgid "Tips for New Members" -msgstr "Consigli per i Nuovi Utenti" - -#: mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." - -#: mod/notifications.php:35 mod/notifications.php:175 -#: mod/notifications.php:234 -msgid "Discard" -msgstr "Scarta" - -#: mod/notifications.php:51 mod/notifications.php:174 -#: mod/notifications.php:233 mod/contacts.php:556 mod/contacts.php:623 -#: mod/contacts.php:799 -msgid "Ignore" -msgstr "Ignora" - -#: mod/notifications.php:78 -msgid "System" -msgstr "Sistema" - -#: mod/notifications.php:84 mod/admin.php:205 include/nav.php:153 -msgid "Network" -msgstr "Rete" - -#: mod/notifications.php:90 mod/network.php:375 -msgid "Personal" -msgstr "Personale" - -#: mod/notifications.php:96 view/theme/diabook/theme.php:123 -#: include/nav.php:105 include/nav.php:156 -msgid "Home" -msgstr "Home" - -#: mod/notifications.php:102 include/nav.php:161 -msgid "Introductions" -msgstr "Presentazioni" - -#: mod/notifications.php:127 -msgid "Show Ignored Requests" -msgstr "Mostra richieste ignorate" - -#: mod/notifications.php:127 -msgid "Hide Ignored Requests" -msgstr "Nascondi richieste ignorate" - -#: mod/notifications.php:159 mod/notifications.php:209 -msgid "Notification type: " -msgstr "Tipo di notifica: " - -#: mod/notifications.php:160 -msgid "Friend Suggestion" -msgstr "Amico suggerito" - -#: mod/notifications.php:162 -#, php-format -msgid "suggested by %s" -msgstr "sugerito da %s" - -#: mod/notifications.php:167 mod/notifications.php:227 mod/contacts.php:629 -msgid "Hide this contact from others" -msgstr "Nascondi questo contatto agli altri" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "Post a new friend activity" -msgstr "Invia una attività \"è ora amico con\"" - -#: mod/notifications.php:168 mod/notifications.php:228 -msgid "if applicable" -msgstr "se applicabile" - -#: mod/notifications.php:171 mod/notifications.php:231 mod/admin.php:1085 -msgid "Approve" -msgstr "Approva" - -#: mod/notifications.php:191 -msgid "Claims to be known to you: " -msgstr "Dice di conoscerti: " - -#: mod/notifications.php:191 -msgid "yes" -msgstr "si" - -#: mod/notifications.php:191 -msgid "no" -msgstr "no" - -#: 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 "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: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 "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:203 -msgid "Friend" -msgstr "Amico" - -#: mod/notifications.php:204 -msgid "Sharer" -msgstr "Condivisore" - -#: mod/notifications.php:204 -msgid "Fan/Admirer" -msgstr "Fan/Ammiratore" - -#: mod/notifications.php:210 -msgid "Friend/Connect Request" -msgstr "Richiesta amicizia/connessione" - -#: mod/notifications.php:210 -msgid "New Follower" -msgstr "Qualcuno inizia a seguirti" - -#: mod/notifications.php:218 mod/notifications.php:220 mod/events.php:503 -#: mod/directory.php:152 include/event.php:42 include/identity.php:268 -#: include/bb2diaspora.php:170 -msgid "Location:" -msgstr "Posizione:" - -#: mod/notifications.php:222 mod/directory.php:160 include/identity.php:277 -#: include/identity.php:582 -msgid "About:" -msgstr "Informazioni:" - -#: mod/notifications.php:224 include/identity.php:576 -msgid "Tags:" -msgstr "Tag:" - -#: mod/notifications.php:226 mod/directory.php:154 include/identity.php:270 -#: include/identity.php:541 -msgid "Gender:" -msgstr "Genere:" - -#: mod/notifications.php:240 -msgid "No introductions." -msgstr "Nessuna presentazione." - -#: mod/notifications.php:243 include/nav.php:164 -msgid "Notifications" -msgstr "Notifiche" - -#: mod/notifications.php:281 mod/notifications.php:410 -#: mod/notifications.php:501 -#, php-format -msgid "%s liked %s's post" -msgstr "a %s è piaciuto il messaggio di %s" - -#: mod/notifications.php:291 mod/notifications.php:420 -#: mod/notifications.php:511 -#, php-format -msgid "%s disliked %s's post" -msgstr "a %s non è piaciuto il messaggio di %s" - -#: mod/notifications.php:306 mod/notifications.php:435 -#: mod/notifications.php:526 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s è ora amico di %s" - -#: mod/notifications.php:313 mod/notifications.php:442 -#, php-format -msgid "%s created a new post" -msgstr "%s a creato un nuovo messaggio" - -#: mod/notifications.php:314 mod/notifications.php:443 -#: mod/notifications.php:536 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s ha commentato il messaggio di %s" - -#: mod/notifications.php:329 -msgid "No more network notifications." -msgstr "Nessuna nuova." - -#: mod/notifications.php:333 -msgid "Network Notifications" -msgstr "Notifiche dalla rete" - -#: mod/notifications.php:359 mod/notify.php:72 -msgid "No more system notifications." -msgstr "Nessuna nuova notifica di sistema." - -#: mod/notifications.php:363 mod/notify.php:76 -msgid "System Notifications" -msgstr "Notifiche di sistema" - -#: mod/notifications.php:458 -msgid "No more personal notifications." -msgstr "Nessuna nuova." - -#: mod/notifications.php:462 -msgid "Personal Notifications" -msgstr "Notifiche personali" - -#: mod/notifications.php:543 -msgid "No more home notifications." -msgstr "Nessuna nuova." - -#: mod/notifications.php:547 -msgid "Home Notifications" -msgstr "Notifiche bacheca" - -#: mod/like.php:149 mod/tagger.php:62 mod/subthread.php:87 -#: view/theme/diabook/theme.php:471 include/text.php:2034 -#: include/diaspora.php:2134 include/conversation.php:126 -#: include/conversation.php:253 -msgid "photo" -msgstr "foto" - -#: mod/like.php:149 mod/like.php:319 mod/tagger.php:62 mod/subthread.php:87 -#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475 -#: include/diaspora.php:2134 include/conversation.php:121 -#: include/conversation.php:130 include/conversation.php:248 -#: include/conversation.php:257 -msgid "status" -msgstr "stato" - -#: mod/like.php:166 view/theme/diabook/theme.php:480 include/diaspora.php:2150 -#: include/conversation.php:137 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" - -#: mod/like.php:168 include/conversation.php:140 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" - -#: mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "Errore protocollo OpenID. Nessun ID ricevuto." - -#: mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito." - -#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 -msgid "Login failed." -msgstr "Accesso fallito." - -#: mod/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/admin.php:57 -msgid "Theme settings updated." -msgstr "Impostazioni del tema aggiornate." - -#: mod/admin.php:104 mod/admin.php:687 -msgid "Site" -msgstr "Sito" - -#: mod/admin.php:105 mod/admin.php:633 mod/admin.php:1078 mod/admin.php:1093 -msgid "Users" -msgstr "Utenti" - -#: mod/admin.php:106 mod/admin.php:1182 mod/admin.php:1242 mod/settings.php:66 -msgid "Plugins" -msgstr "Plugin" - -#: mod/admin.php:107 mod/admin.php:1410 mod/admin.php:1444 -msgid "Themes" -msgstr "Temi" - -#: mod/admin.php:108 -msgid "DB updates" -msgstr "Aggiornamenti Database" - -#: mod/admin.php:109 mod/admin.php:200 -msgid "Inspect Queue" -msgstr "Ispeziona Coda di invio" - -#: mod/admin.php:124 mod/admin.php:133 mod/admin.php:1531 -msgid "Logs" -msgstr "Log" - -#: mod/admin.php:125 -msgid "probe address" -msgstr "controlla indirizzo" - -#: mod/admin.php:126 -msgid "check webfinger" -msgstr "verifica webfinger" - -#: mod/admin.php:131 include/nav.php:193 -msgid "Admin" -msgstr "Amministrazione" - -#: mod/admin.php:132 -msgid "Plugin Features" -msgstr "Impostazioni Plugins" - -#: mod/admin.php:134 -msgid "diagnostics" -msgstr "diagnostiche" - -#: mod/admin.php:135 -msgid "User registrations waiting for confirmation" -msgstr "Utenti registrati in attesa di conferma" - -#: mod/admin.php:173 mod/admin.php:1132 mod/admin.php:1352 mod/notice.php:15 -#: mod/display.php:82 mod/display.php:295 mod/display.php:512 -#: mod/viewsrc.php:15 include/items.php:4827 -msgid "Item not found." -msgstr "Elemento non trovato." - -#: mod/admin.php:199 mod/admin.php:249 mod/admin.php:686 mod/admin.php:1077 -#: mod/admin.php:1181 mod/admin.php:1241 mod/admin.php:1409 mod/admin.php:1443 -#: mod/admin.php:1530 -msgid "Administration" -msgstr "Amministrazione" - -#: mod/admin.php:202 -msgid "ID" -msgstr "ID" - -#: mod/admin.php:203 -msgid "Recipient Name" -msgstr "Nome Destinatario" - -#: mod/admin.php:204 -msgid "Recipient Profile" -msgstr "Profilo Destinatario" - -#: mod/admin.php:206 -msgid "Created" -msgstr "Creato" - -#: mod/admin.php:207 -msgid "Last Tried" -msgstr "Ultimo Tentativo" - -#: 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 "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:220 mod/admin.php:1031 -msgid "Normal Account" -msgstr "Account normale" - -#: mod/admin.php:221 mod/admin.php:1032 -msgid "Soapbox Account" -msgstr "Account per comunicati e annunci" - -#: mod/admin.php:222 mod/admin.php:1033 -msgid "Community/Celebrity Account" -msgstr "Account per celebrità o per comunità" - -#: mod/admin.php:223 mod/admin.php:1034 -msgid "Automatic Friend Account" -msgstr "Account per amicizia automatizzato" - -#: mod/admin.php:224 -msgid "Blog Account" -msgstr "Account Blog" - -#: mod/admin.php:225 -msgid "Private Forum" -msgstr "Forum Privato" - -#: mod/admin.php:244 -msgid "Message queues" -msgstr "Code messaggi" - -#: mod/admin.php:250 -msgid "Summary" -msgstr "Sommario" - -#: mod/admin.php:252 -msgid "Registered users" -msgstr "Utenti registrati" - -#: mod/admin.php:254 -msgid "Pending registrations" -msgstr "Registrazioni in attesa" - -#: mod/admin.php:255 -msgid "Version" -msgstr "Versione" - -#: mod/admin.php:260 -msgid "Active plugins" -msgstr "Plugin attivi" - -#: mod/admin.php:283 -msgid "Can not parse base url. Must have at least ://" -msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]" - -#: mod/admin.php:556 -msgid "RINO2 needs mcrypt php extension to work." -msgstr "" - -#: mod/admin.php:564 -msgid "Site settings updated." -msgstr "Impostazioni del sito aggiornate." - -#: mod/admin.php:599 mod/settings.php:885 -msgid "No special theme for mobile devices" -msgstr "Nessun tema speciale per i dispositivi mobili" - -#: mod/admin.php:616 -msgid "No community page" -msgstr "Nessuna pagina Comunità" - -#: mod/admin.php:617 -msgid "Public postings from users of this site" -msgstr "Messaggi pubblici dagli utenti di questo sito" - -#: mod/admin.php:618 -msgid "Global community page" -msgstr "Pagina Comunità globale" - -#: mod/admin.php:623 mod/contacts.php:526 -msgid "Never" -msgstr "Mai" - -#: mod/admin.php:624 -msgid "At post arrival" -msgstr "All'arrivo di un messaggio" - -#: mod/admin.php:625 include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frequentemente" - -#: mod/admin.php:626 include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Ogni ora" - -#: mod/admin.php:627 include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Due volte al dì" - -#: mod/admin.php:628 include/contact_selectors.php:59 -msgid "Daily" -msgstr "Giornalmente" - -#: mod/admin.php:632 mod/contacts.php:585 -msgid "Disabled" -msgstr "Disabilitato" - -#: mod/admin.php:634 -msgid "Users, Global Contacts" -msgstr "Utenti, Contatti Globali" - -#: mod/admin.php:635 -msgid "Users, Global Contacts/fallback" -msgstr "Utenti, Contatti Globali/fallback" - -#: mod/admin.php:639 -msgid "One month" -msgstr "Un mese" - -#: mod/admin.php:640 -msgid "Three months" -msgstr "Tre mesi" - -#: mod/admin.php:641 -msgid "Half a year" -msgstr "Sei mesi" - -#: mod/admin.php:642 -msgid "One year" -msgstr "Un anno" - -#: mod/admin.php:647 -msgid "Multi user instance" -msgstr "Istanza multi utente" - -#: mod/admin.php:670 -msgid "Closed" -msgstr "Chiusa" - -#: mod/admin.php:671 -msgid "Requires approval" -msgstr "Richiede l'approvazione" - -#: mod/admin.php:672 -msgid "Open" -msgstr "Aperta" - -#: mod/admin.php:676 -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:677 -msgid "Force all links to use SSL" -msgstr "Forza tutti i linki ad usare SSL" - -#: mod/admin.php:678 -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:688 mod/admin.php:1243 mod/admin.php:1445 mod/admin.php:1532 -#: mod/settings.php:632 mod/settings.php:742 mod/settings.php:786 -#: mod/settings.php:855 mod/settings.php:937 mod/settings.php:1167 -msgid "Save Settings" -msgstr "Salva Impostazioni" - -#: mod/admin.php:689 mod/register.php:260 -msgid "Registration" -msgstr "Registrazione" - -#: mod/admin.php:690 -msgid "File upload" -msgstr "Caricamento file" - -#: mod/admin.php:691 -msgid "Policies" -msgstr "Politiche" - -#: mod/admin.php:692 -msgid "Advanced" -msgstr "Avanzate" - -#: mod/admin.php:693 -msgid "Auto Discovered Contact Directory" -msgstr "Elenco Contatti Scoperto Automaticamente" - -#: mod/admin.php:694 -msgid "Performance" -msgstr "Performance" - -#: mod/admin.php:695 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile." - -#: mod/admin.php:698 -msgid "Site name" -msgstr "Nome del sito" - -#: mod/admin.php:699 -msgid "Host name" -msgstr "Nome host" - -#: mod/admin.php:700 -msgid "Sender Email" -msgstr "Mittente email" - -#: mod/admin.php:700 -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:701 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: mod/admin.php:702 -msgid "Shortcut icon" -msgstr "Icona shortcut" - -#: mod/admin.php:702 -msgid "Link to an icon that will be used for browsers." -msgstr "Link verso un'icona che verrà usata dai browsers." - -#: mod/admin.php:703 -msgid "Touch icon" -msgstr "Icona touch" - -#: mod/admin.php:703 -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:704 -msgid "Additional Info" -msgstr "Informazioni aggiuntive" - -#: mod/admin.php:704 -#, 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:705 -msgid "System language" -msgstr "Lingua di sistema" - -#: mod/admin.php:706 -msgid "System theme" -msgstr "Tema di sistema" - -#: mod/admin.php:706 -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:707 -msgid "Mobile system theme" -msgstr "Tema mobile di sistema" - -#: mod/admin.php:707 -msgid "Theme for mobile devices" -msgstr "Tema per dispositivi mobili" - -#: mod/admin.php:708 -msgid "SSL link policy" -msgstr "Gestione link SSL" - -#: mod/admin.php:708 -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:709 -msgid "Force SSL" -msgstr "Forza SSL" - -#: mod/admin.php:709 -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:710 -msgid "Old style 'Share'" -msgstr "Ricondivisione vecchio stile" - -#: mod/admin.php:710 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "Disattiva l'elemento bbcode 'share' con elementi ripetuti" - -#: mod/admin.php:711 -msgid "Hide help entry from navigation menu" -msgstr "Nascondi la voce 'Guida' dal menu di navigazione" - -#: mod/admin.php:711 -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:712 -msgid "Single user instance" -msgstr "Instanza a singolo utente" - -#: mod/admin.php:712 -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:713 -msgid "Maximum image size" -msgstr "Massima dimensione immagini" - -#: mod/admin.php:713 -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:714 -msgid "Maximum image length" -msgstr "Massima lunghezza immagine" - -#: mod/admin.php:714 -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:715 -msgid "JPEG image quality" -msgstr "Qualità immagini JPEG" - -#: mod/admin.php:715 -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:717 -msgid "Register policy" -msgstr "Politica di registrazione" - -#: mod/admin.php:718 -msgid "Maximum Daily Registrations" -msgstr "Massime registrazioni giornaliere" - -#: mod/admin.php:718 -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:719 -msgid "Register text" -msgstr "Testo registrazione" - -#: mod/admin.php:719 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." - -#: mod/admin.php:720 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo x giorni" - -#: mod/admin.php:720 -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:721 -msgid "Allowed friend domains" -msgstr "Domini amici consentiti" - -#: mod/admin.php:721 -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:722 -msgid "Allowed email domains" -msgstr "Domini email consentiti" - -#: mod/admin.php:722 -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:723 -msgid "Block public" -msgstr "Blocca pagine pubbliche" - -#: mod/admin.php:723 -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:724 -msgid "Force publish" -msgstr "Forza publicazione" - -#: mod/admin.php:724 -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:725 -msgid "Global directory URL" -msgstr "URL della directory globale" - -#: mod/admin.php:725 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "" - -#: mod/admin.php:726 -msgid "Allow threaded items" -msgstr "Permetti commenti nidificati" - -#: mod/admin.php:726 -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:727 -msgid "Private posts by default for new users" -msgstr "Post privati di default per i nuovi utenti" - -#: mod/admin.php:727 -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:728 -msgid "Don't include post content in email notifications" -msgstr "Non includere il contenuto dei post nelle notifiche via email" - -#: mod/admin.php:728 -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:729 -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:729 -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:730 -msgid "Don't embed private images in posts" -msgstr "Non inglobare immagini private nei post" - -#: mod/admin.php:730 -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:731 -msgid "Allow Users to set remote_self" -msgstr "Permetti agli utenti di impostare 'io remoto'" - -#: mod/admin.php:731 -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:732 -msgid "Block multiple registrations" -msgstr "Blocca registrazioni multiple" - -#: mod/admin.php:732 -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:733 -msgid "OpenID support" -msgstr "Supporto OpenID" - -#: mod/admin.php:733 -msgid "OpenID support for registration and logins." -msgstr "Supporta OpenID per la registrazione e il login" - -#: mod/admin.php:734 -msgid "Fullname check" -msgstr "Controllo nome completo" - -#: mod/admin.php:734 -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:735 -msgid "UTF-8 Regular expressions" -msgstr "Espressioni regolari UTF-8" - -#: mod/admin.php:735 -msgid "Use PHP UTF8 regular expressions" -msgstr "Usa le espressioni regolari PHP in UTF8" - -#: mod/admin.php:736 -msgid "Community Page Style" -msgstr "Stile pagina Comunità" - -#: mod/admin.php:736 -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:737 -msgid "Posts per user on community page" -msgstr "Messaggi per utente nella pagina Comunità" - -#: mod/admin.php:737 -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:738 -msgid "Enable OStatus support" -msgstr "Abilita supporto OStatus" - -#: mod/admin.php:738 -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:739 -msgid "OStatus conversation completion interval" -msgstr "Intervallo completamento conversazioni OStatus" - -#: mod/admin.php:739 -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:740 -msgid "Enable Diaspora support" -msgstr "Abilita il supporto a Diaspora" - -#: mod/admin.php:740 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Fornisce compatibilità con il network Diaspora." - -#: mod/admin.php:741 -msgid "Only allow Friendica contacts" -msgstr "Permetti solo contatti Friendica" - -#: mod/admin.php:741 -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:742 -msgid "Verify SSL" -msgstr "Verifica SSL" - -#: mod/admin.php:742 -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:743 -msgid "Proxy user" -msgstr "Utente Proxy" - -#: mod/admin.php:744 -msgid "Proxy URL" -msgstr "URL Proxy" - -#: mod/admin.php:745 -msgid "Network timeout" -msgstr "Timeout rete" - -#: mod/admin.php:745 -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:746 -msgid "Delivery interval" -msgstr "Intervallo di invio" - -#: mod/admin.php:746 -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:747 -msgid "Poll interval" -msgstr "Intervallo di poll" - -#: mod/admin.php:747 -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:748 -msgid "Maximum Load Average" -msgstr "Massimo carico medio" - -#: mod/admin.php:748 -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:749 -msgid "Maximum Load Average (Frontend)" -msgstr "Media Massimo Carico (Frontend)" - -#: mod/admin.php:749 -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:751 -msgid "Periodical check of global contacts" -msgstr "Check periodico dei contatti globali" - -#: mod/admin.php:751 -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:752 -msgid "Days between requery" -msgstr "" - -#: mod/admin.php:752 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "" - -#: mod/admin.php:753 -msgid "Discover contacts from other servers" -msgstr "Trova contatti dagli altri server" - -#: mod/admin.php:753 -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:754 -msgid "Timeframe for fetching global contacts" -msgstr "Termine per il recupero contatti globali" - -#: mod/admin.php:754 -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:755 -msgid "Search the local directory" -msgstr "Cerca la directory locale" - -#: mod/admin.php:755 -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:757 -msgid "Publish server information" -msgstr "Pubblica informazioni server" - -#: mod/admin.php:757 -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:759 -msgid "Use MySQL full text engine" -msgstr "Usa il motore MySQL full text" - -#: mod/admin.php:759 -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:760 -msgid "Suppress Language" -msgstr "Disattiva lingua" - -#: mod/admin.php:760 -msgid "Suppress language information in meta information about a posting." -msgstr "Disattiva le informazioni sulla lingua nei meta di un post." - -#: mod/admin.php:761 -msgid "Suppress Tags" -msgstr "Sopprimi Tags" - -#: mod/admin.php:761 -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:762 -msgid "Path to item cache" -msgstr "Percorso cache elementi" - -#: mod/admin.php:762 -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:763 -msgid "Cache duration in seconds" -msgstr "Durata della cache in secondi" - -#: mod/admin.php:763 -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:764 -msgid "Maximum numbers of comments per post" -msgstr "Numero massimo di commenti per post" - -#: mod/admin.php:764 -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:765 -msgid "Path for lock file" -msgstr "Percorso al file di lock" - -#: mod/admin.php:765 -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:766 -msgid "Temp path" -msgstr "Percorso file temporanei" - -#: mod/admin.php:766 -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:767 -msgid "Base path to installation" -msgstr "Percorso base all'installazione" - -#: mod/admin.php:767 -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:768 -msgid "Disable picture proxy" -msgstr "Disabilita il proxy immagini" - -#: mod/admin.php:768 -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:769 -msgid "Enable old style pager" -msgstr "Abilita la paginazione vecchio stile" - -#: mod/admin.php:769 -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:770 -msgid "Only search in tags" -msgstr "Cerca solo nei tag" - -#: mod/admin.php:770 -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:772 -msgid "New base url" -msgstr "Nuovo url base" - -#: mod/admin.php:772 -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:774 -msgid "RINO Encryption" -msgstr "Crittografia RINO" - -#: mod/admin.php:774 -msgid "Encryption layer between nodes." -msgstr "Crittografia delle comunicazioni tra nodi." - -#: mod/admin.php:775 -msgid "Embedly API key" -msgstr "Embedly API key" - -#: mod/admin.php:775 -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:793 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato segnato come di successo" - -#: mod/admin.php:801 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "Aggiornamento struttura database %s applicata con successo." - -#: mod/admin.php:804 -#, 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:816 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "Esecuzione di %s fallita con errore: %s" - -#: mod/admin.php:819 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è stato applicato con successo" - -#: mod/admin.php:823 -#, 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:825 -#, 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:844 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." - -#: mod/admin.php:845 -msgid "Check database structure" -msgstr "Controlla struttura database" - -#: mod/admin.php:850 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti" - -#: mod/admin.php:851 -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:852 -msgid "Mark success (if update was manually applied)" -msgstr "Segna completato (se l'update è stato applicato manualmente)" - -#: mod/admin.php:853 -msgid "Attempt to execute this update step automatically" -msgstr "Cerco di eseguire questo aggiornamento in automatico" - -#: mod/admin.php:885 -#, 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:888 -#, 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:920 include/user.php:421 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" - -#: mod/admin.php:932 -#, 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:939 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s utente cancellato" -msgstr[1] "%s utenti cancellati" - -#: mod/admin.php:978 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' cancellato" - -#: mod/admin.php:986 -#, php-format -msgid "User '%s' unblocked" -msgstr "Utente '%s' sbloccato" - -#: mod/admin.php:986 -#, php-format -msgid "User '%s' blocked" -msgstr "Utente '%s' bloccato" - -#: mod/admin.php:1079 -msgid "Add User" -msgstr "Aggiungi utente" - -#: mod/admin.php:1080 -msgid "select all" -msgstr "seleziona tutti" - -#: mod/admin.php:1081 -msgid "User registrations waiting for confirm" -msgstr "Richieste di registrazione in attesa di conferma" - -#: mod/admin.php:1082 -msgid "User waiting for permanent deletion" -msgstr "Utente in attesa di cancellazione definitiva" - -#: mod/admin.php:1083 -msgid "Request date" -msgstr "Data richiesta" - -#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1109 -#: mod/settings.php:634 mod/settings.php:660 mod/crepair.php:170 -msgid "Name" -msgstr "Nome" - -#: mod/admin.php:1083 mod/admin.php:1095 mod/admin.php:1096 mod/admin.php:1111 -#: include/contact_selectors.php:79 include/contact_selectors.php:86 -msgid "Email" -msgstr "Email" - -#: mod/admin.php:1084 -msgid "No registrations." -msgstr "Nessuna registrazione." - -#: mod/admin.php:1086 -msgid "Deny" -msgstr "Nega" - -#: mod/admin.php:1088 mod/contacts.php:549 mod/contacts.php:622 -#: mod/contacts.php:798 -msgid "Block" -msgstr "Blocca" - -#: mod/admin.php:1089 mod/contacts.php:549 mod/contacts.php:622 -#: mod/contacts.php:798 -msgid "Unblock" -msgstr "Sblocca" - -#: mod/admin.php:1090 -msgid "Site admin" -msgstr "Amministrazione sito" - -#: mod/admin.php:1091 -msgid "Account expired" -msgstr "Account scaduto" - -#: mod/admin.php:1094 -msgid "New User" -msgstr "Nuovo Utente" - -#: mod/admin.php:1095 mod/admin.php:1096 -msgid "Register date" -msgstr "Data registrazione" - -#: mod/admin.php:1095 mod/admin.php:1096 -msgid "Last login" -msgstr "Ultimo accesso" - -#: mod/admin.php:1095 mod/admin.php:1096 -msgid "Last item" -msgstr "Ultimo elemento" - -#: mod/admin.php:1095 -msgid "Deleted since" -msgstr "Rimosso da" - -#: mod/admin.php:1096 mod/settings.php:41 -msgid "Account" -msgstr "Account" - -#: mod/admin.php:1098 -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:1099 -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:1109 -msgid "Name of the new user." -msgstr "Nome del nuovo utente." - -#: mod/admin.php:1110 -msgid "Nickname" -msgstr "Nome utente" - -#: mod/admin.php:1110 -msgid "Nickname of the new user." -msgstr "Nome utente del nuovo utente." - -#: mod/admin.php:1111 -msgid "Email address of the new user." -msgstr "Indirizzo Email del nuovo utente." - -#: mod/admin.php:1144 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s disabilitato." - -#: mod/admin.php:1148 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s abilitato." - -#: mod/admin.php:1158 mod/admin.php:1381 -msgid "Disable" -msgstr "Disabilita" - -#: mod/admin.php:1160 mod/admin.php:1383 -msgid "Enable" -msgstr "Abilita" - -#: mod/admin.php:1183 mod/admin.php:1411 -msgid "Toggle" -msgstr "Inverti" - -#: mod/admin.php:1184 mod/admin.php:1412 mod/newmember.php:22 -#: mod/settings.php:99 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:648 include/nav.php:181 -msgid "Settings" -msgstr "Impostazioni" - -#: mod/admin.php:1191 mod/admin.php:1421 -msgid "Author: " -msgstr "Autore: " - -#: mod/admin.php:1192 mod/admin.php:1422 -msgid "Maintainer: " -msgstr "Manutentore: " - -#: mod/admin.php:1341 -msgid "No themes found." -msgstr "Nessun tema trovato." - -#: mod/admin.php:1403 -msgid "Screenshot" -msgstr "Anteprima" - -#: mod/admin.php:1449 -msgid "[Experimental]" -msgstr "[Sperimentale]" - -#: mod/admin.php:1450 -msgid "[Unsupported]" -msgstr "[Non supportato]" - -#: mod/admin.php:1477 -msgid "Log settings updated." -msgstr "Impostazioni Log aggiornate." - -#: mod/admin.php:1533 -msgid "Clear" -msgstr "Pulisci" - -#: mod/admin.php:1539 -msgid "Enable Debugging" -msgstr "Abilita Debugging" - -#: mod/admin.php:1540 -msgid "Log file" -msgstr "File di Log" - -#: mod/admin.php:1540 -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:1541 -msgid "Log level" -msgstr "Livello di Log" - -#: mod/admin.php:1590 mod/contacts.php:619 -msgid "Update now" -msgstr "Aggiorna adesso" - -#: mod/admin.php:1591 include/acl_selectors.php:347 -msgid "Close" -msgstr "Chiudi" - -#: mod/admin.php:1597 -msgid "FTP Host" -msgstr "Indirizzo FTP" - -#: mod/admin.php:1598 -msgid "FTP Path" -msgstr "Percorso FTP" - -#: mod/admin.php:1599 -msgid "FTP User" -msgstr "Utente FTP" - -#: mod/admin.php:1600 -msgid "FTP Password" -msgstr "Pasword FTP" - -#: mod/message.php:9 include/nav.php:173 -msgid "New Message" -msgstr "Nuovo messaggio" - -#: mod/message.php:64 mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "Nessun destinatario selezionato." - -#: mod/message.php:68 -msgid "Unable to locate contact information." -msgstr "Impossibile trovare le informazioni del contatto." - -#: mod/message.php:71 mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "Il messaggio non puo' essere inviato." - -#: mod/message.php:74 mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "Errore recuperando il messaggio." - -#: mod/message.php:77 mod/wallmessage.php:68 -msgid "Message sent." -msgstr "Messaggio inviato." - -#: mod/message.php:183 include/nav.php:170 -msgid "Messages" -msgstr "Messaggi" - -#: mod/message.php:208 -msgid "Do you really want to delete this message?" -msgstr "Vuoi veramente cancellare questo messaggio?" - -#: mod/message.php:228 -msgid "Message deleted." -msgstr "Messaggio eliminato." - -#: mod/message.php:259 -msgid "Conversation removed." -msgstr "Conversazione rimossa." - -#: 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 "Inserisci l'indirizzo del link:" - -#: mod/message.php:320 mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" - -#: mod/message.php:321 mod/message.php:554 mod/wallmessage.php:144 -msgid "To:" -msgstr "A:" - -#: mod/message.php:326 mod/message.php:556 mod/wallmessage.php:145 -msgid "Subject:" -msgstr "Oggetto:" - -#: mod/message.php:330 mod/message.php:559 mod/wallmessage.php:151 -#: mod/invite.php:134 -msgid "Your message:" -msgstr "Il tuo messaggio:" - -#: mod/message.php:333 mod/message.php:563 mod/editpost.php:110 -#: mod/wallmessage.php:154 include/conversation.php:1056 -msgid "Upload photo" -msgstr "Carica foto" - -#: mod/message.php:334 mod/message.php:564 mod/editpost.php:114 -#: mod/wallmessage.php:155 include/conversation.php:1060 -msgid "Insert web link" -msgstr "Inserisci link" - -#: mod/message.php:372 -msgid "No messages." -msgstr "Nessun messaggio." - -#: mod/message.php:379 -#, php-format -msgid "Unknown sender - %s" -msgstr "Mittente sconosciuto - %s" - -#: mod/message.php:382 -#, php-format -msgid "You and %s" -msgstr "Tu e %s" - -#: mod/message.php:385 -#, php-format -msgid "%s and You" -msgstr "%s e Tu" - -#: mod/message.php:406 mod/message.php:547 -msgid "Delete conversation" -msgstr "Elimina la conversazione" - -#: mod/message.php:409 -msgid "D, d M Y - g:i A" -msgstr "D d M Y - G:i" - -#: mod/message.php:412 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d messaggio" -msgstr[1] "%d messaggi" - -#: mod/message.php:451 -msgid "Message not available." -msgstr "Messaggio non disponibile." - -#: mod/message.php:521 -msgid "Delete message" -msgstr "Elimina il messaggio" - -#: mod/message.php:549 -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:553 -msgid "Send Reply" -msgstr "Invia la risposta" - -#: 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:109 mod/filer.php:31 mod/notes.php:59 include/text.php:997 -msgid "Save" -msgstr "Salva" - -#: mod/editpost.php:111 include/conversation.php:1057 -msgid "upload photo" -msgstr "carica foto" - -#: mod/editpost.php:112 include/conversation.php:1058 -msgid "Attach file" -msgstr "Allega file" - -#: mod/editpost.php:113 include/conversation.php:1059 -msgid "attach file" -msgstr "allega file" - -#: mod/editpost.php:115 include/conversation.php:1061 -msgid "web link" -msgstr "link web" - -#: mod/editpost.php:116 include/conversation.php:1062 -msgid "Insert video link" -msgstr "Inserire collegamento video" - -#: mod/editpost.php:117 include/conversation.php:1063 -msgid "video link" -msgstr "link video" - -#: mod/editpost.php:118 include/conversation.php:1064 -msgid "Insert audio link" -msgstr "Inserisci collegamento 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 "La tua posizione" - -#: mod/editpost.php:121 include/conversation.php:1067 -msgid "set location" -msgstr "posizione" - -#: mod/editpost.php:122 include/conversation.php:1068 -msgid "Clear browser location" -msgstr "Rimuovi la localizzazione data dal browser" - -#: mod/editpost.php:123 include/conversation.php:1069 -msgid "clear location" -msgstr "canc. pos." - -#: mod/editpost.php:125 include/conversation.php:1075 -msgid "Permission settings" -msgstr "Impostazioni permessi" - -#: mod/editpost.php:133 include/acl_selectors.php:343 -msgid "CC: email addresses" -msgstr "CC: indirizzi email" - -#: mod/editpost.php:134 include/conversation.php:1084 -msgid "Public post" -msgstr "Messaggio pubblico" - -#: mod/editpost.php:137 include/conversation.php:1071 -msgid "Set title" -msgstr "Scegli un titolo" - -#: mod/editpost.php:139 include/conversation.php:1073 -msgid "Categories (comma-separated list)" -msgstr "Categorie (lista separata da virgola)" - -#: mod/editpost.php:140 include/acl_selectors.php:344 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Esempio: bob@example.com, mary@example.com" - -#: 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: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/diaspora.php:633 -#: include/conversation.php:172 -#, 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:798 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s si è unito a %2$s" - -#: 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:317 -msgid "l, F j" -msgstr "l j F" - -#: mod/events.php:339 -msgid "Edit event" -msgstr "Modifca l'evento" - -#: mod/events.php:361 include/text.php:1716 include/text.php:1723 -msgid "link to source" -msgstr "Collegamento all'originale" - -#: mod/events.php:396 view/theme/diabook/theme.php:127 -#: include/identity.php:668 include/nav.php:80 -msgid "Events" -msgstr "Eventi" - -#: mod/events.php:397 -msgid "Create New Event" -msgstr "Crea un nuovo evento" - -#: mod/events.php:398 -msgid "Previous" -msgstr "Precendente" - -#: mod/events.php:399 mod/install.php:209 -msgid "Next" -msgstr "Successivo" - -#: mod/events.php:491 -msgid "Event details" -msgstr "Dettagli dell'evento" - -#: mod/events.php:492 -msgid "Starting date and Title are required." -msgstr "La data di inizio e il titolo sono richiesti." - -#: mod/events.php:493 -msgid "Event Starts:" -msgstr "L'evento inizia:" - -#: mod/events.php:493 mod/events.php:505 -msgid "Required" -msgstr "Richiesto" - -#: mod/events.php:495 -msgid "Finish date/time is not known or not relevant" -msgstr "La data/ora di fine non è definita" - -#: mod/events.php:497 -msgid "Event Finishes:" -msgstr "L'evento finisce:" - -#: mod/events.php:499 -msgid "Adjust for viewer timezone" -msgstr "Visualizza con il fuso orario di chi legge" - -#: mod/events.php:501 -msgid "Description:" -msgstr "Descrizione:" - -#: mod/events.php:505 -msgid "Title:" -msgstr "Titolo:" - -#: mod/events.php:507 -msgid "Share this event" -msgstr "Condividi questo evento" - -#: mod/fbrowser.php:32 view/theme/diabook/theme.php:126 -#: include/identity.php:649 include/nav.php:78 -msgid "Photos" -msgstr "Foto" - -#: mod/fbrowser.php:122 -msgid "Files" -msgstr "File" - -#: mod/home.php:35 -#, php-format -msgid "Welcome to %s" -msgstr "Benvenuto su %s" - -#: 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/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/nogroup.php:40 mod/contacts.php:605 mod/contacts.php:838 -#: mod/viewcontacts.php:64 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" - -#: mod/nogroup.php:41 mod/contacts.php:839 -msgid "Edit contact" -msgstr "Modifca contatto" - -#: mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Contatti che non sono membri di un gruppo" - -#: mod/friendica.php:59 -msgid "This is Friendica, version" -msgstr "Questo è Friendica, versione" - -#: mod/friendica.php:60 -msgid "running at web location" -msgstr "in esecuzione all'indirizzo web" - -#: mod/friendica.php:62 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." - -#: mod/friendica.php:64 -msgid "Bug reports and issues: please visit" -msgstr "Segnalazioni di bug e problemi: visita" - -#: mod/friendica.php:64 -msgid "the bugtracker at github" -msgstr "il bugtracker su github" - -#: mod/friendica.php:65 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com" - -#: mod/friendica.php:79 -msgid "Installed plugins/addons/apps:" -msgstr "Plugin/addon/applicazioni instalate" - -#: mod/friendica.php:92 -msgid "No installed plugins/addons/apps" -msgstr "Nessun plugin/addons/applicazione installata" - -#: mod/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/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 "Richiesta non valida." - -#: mod/wall_upload.php:137 mod/photos.php:789 mod/profile_photo.php:144 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "La dimensione dell'immagine supera il limite di %s" - -#: mod/wall_upload.php:169 mod/photos.php:829 mod/profile_photo.php:153 -msgid "Unable to process image." -msgstr "Impossibile caricare l'immagine." - -#: mod/wall_upload.php:199 mod/wall_upload.php:213 mod/wall_upload.php:220 -#: mod/item.php:486 include/message.php:145 include/Photo.php:951 -#: include/Photo.php:966 include/Photo.php:973 include/Photo.php:995 -msgid "Wall Photos" -msgstr "Foto della bacheca" - -#: mod/wall_upload.php:202 mod/photos.php:856 mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Caricamento immagine fallito." - -#: 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/tagger.php:95 include/conversation.php:265 -#, 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/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 "Foto dei contatti" - -#: mod/photos.php:84 include/identity.php:652 -msgid "Photo Albums" -msgstr "Album foto" - -#: mod/photos.php:85 mod/photos.php:1836 -msgid "Recent Photos" -msgstr "Foto recenti" - -#: mod/photos.php:88 mod/photos.php:1282 mod/photos.php:1838 -msgid "Upload New Photos" -msgstr "Carica nuove foto" - -#: mod/photos.php:102 mod/settings.php:34 -msgid "everybody" -msgstr "tutti" - -#: mod/photos.php:166 -msgid "Contact information unavailable" -msgstr "I dati di questo contatto non sono disponibili" - -#: mod/photos.php:177 mod/photos.php:753 mod/photos.php:1207 -#: mod/photos.php:1230 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 -#: view/theme/diabook/theme.php:500 include/user.php:343 include/user.php:350 -#: include/user.php:357 -msgid "Profile Photos" -msgstr "Foto del profilo" - -#: mod/photos.php:187 -msgid "Album not found." -msgstr "Album non trovato." - -#: mod/photos.php:210 mod/photos.php:222 mod/photos.php:1224 -msgid "Delete Album" -msgstr "Rimuovi album" - -#: mod/photos.php:220 -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:300 mod/photos.php:311 mod/photos.php:1534 -msgid "Delete Photo" -msgstr "Rimuovi foto" - -#: mod/photos.php:309 -msgid "Do you really want to delete this photo?" -msgstr "Vuoi veramente cancellare questa foto?" - -#: mod/photos.php:684 -#, 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:684 -msgid "a photo" -msgstr "una foto" - -#: mod/photos.php:797 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." - -#: mod/photos.php:952 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" - -#: mod/photos.php:1053 mod/videos.php:298 -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:1149 -msgid "Upload Photos" -msgstr "Carica foto" - -#: mod/photos.php:1153 mod/photos.php:1219 -msgid "New album name: " -msgstr "Nome nuovo album: " - -#: mod/photos.php:1154 -msgid "or existing album name: " -msgstr "o nome di un album esistente: " - -#: mod/photos.php:1155 -msgid "Do not show a status post for this upload" -msgstr "Non creare un post per questo upload" - -#: mod/photos.php:1157 mod/photos.php:1529 include/acl_selectors.php:346 -msgid "Permissions" -msgstr "Permessi" - -#: mod/photos.php:1166 mod/photos.php:1538 mod/settings.php:1202 -msgid "Show to Groups" -msgstr "Mostra ai gruppi" - -#: mod/photos.php:1167 mod/photos.php:1539 mod/settings.php:1203 -msgid "Show to Contacts" -msgstr "Mostra ai contatti" - -#: mod/photos.php:1168 -msgid "Private Photo" -msgstr "Foto privata" - -#: mod/photos.php:1169 -msgid "Public Photo" -msgstr "Foto pubblica" - -#: mod/photos.php:1232 -msgid "Edit Album" -msgstr "Modifica album" - -#: mod/photos.php:1238 -msgid "Show Newest First" -msgstr "Mostra nuove foto per prime" - -#: mod/photos.php:1240 -msgid "Show Oldest First" -msgstr "Mostra vecchie foto per prime" - -#: mod/photos.php:1268 mod/photos.php:1821 -msgid "View Photo" -msgstr "Vedi foto" - -#: mod/photos.php:1314 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." - -#: mod/photos.php:1316 -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:1477 -msgid "Tags: " -msgstr "Tag: " - -#: mod/photos.php:1480 -msgid "[Remove any tag]" -msgstr "[Rimuovi tutti i tag]" - -#: mod/photos.php:1520 -msgid "New album name" -msgstr "Nuovo nome dell'album" - -#: mod/photos.php:1521 -msgid "Caption" -msgstr "Titolo" - -#: mod/photos.php:1522 -msgid "Add a Tag" -msgstr "Aggiungi tag" - -#: mod/photos.php:1522 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: mod/photos.php:1523 -msgid "Do not rotate" -msgstr "Non ruotare" - -#: mod/photos.php:1524 -msgid "Rotate CW (right)" -msgstr "Ruota a destra" - -#: mod/photos.php:1525 -msgid "Rotate CCW (left)" -msgstr "Ruota a sinistra" - -#: mod/photos.php:1540 -msgid "Private photo" -msgstr "Foto privata" - -#: mod/photos.php:1541 -msgid "Public photo" -msgstr "Foto pubblica" - -#: mod/photos.php:1563 include/conversation.php:1055 -msgid "Share" -msgstr "Condividi" - -#: mod/photos.php:1827 mod/videos.php:380 -msgid "View Album" -msgstr "Sfoglia l'album" - -#: mod/hcard.php:10 -msgid "No profile" -msgstr "Nessun profilo" - -#: 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:107 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere elaborata." - -#: mod/register.php:150 -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:188 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:216 -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:217 -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:218 -msgid "Your OpenID (optional): " -msgstr "Il tuo OpenID (opzionale): " - -#: mod/register.php:232 -msgid "Include your profile in member directory?" -msgstr "Includi il tuo profilo nell'elenco pubblico?" - -#: mod/register.php:256 -msgid "Membership on this site is by invitation only." -msgstr "La registrazione su questo sito è solo su invito." - -#: mod/register.php:257 -msgid "Your invitation ID: " -msgstr "L'ID del tuo invito:" - -#: mod/register.php:268 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Il tuo nome completo (es. Mario Rossi): " - -#: mod/register.php:269 -msgid "Your Email Address: " -msgstr "Il tuo indirizzo email: " - -#: mod/register.php:271 mod/settings.php:1174 -msgid "New Password:" -msgstr "Nuova password:" - -#: mod/register.php:271 -msgid "Leave empty for an auto generated password." -msgstr "Lascia vuoto per generare automaticamente una password." - -#: mod/register.php:272 mod/settings.php:1175 -msgid "Confirm:" -msgstr "Conferma:" - -#: 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 "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@$sitename'." - -#: mod/register.php:274 -msgid "Choose a nickname: " -msgstr "Scegli un nome utente: " - -#: mod/register.php:277 boot.php:1248 include/nav.php:109 -msgid "Register" -msgstr "Registrati" - -#: mod/register.php:283 mod/uimport.php:64 -msgid "Import" -msgstr "Importa" - -#: mod/register.php:284 -msgid "Import your profile to this friendica instance" -msgstr "Importa il tuo profilo in questo server friendica" - -#: 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:1287 -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/maintenance.php:5 -msgid "System down for maintenance" -msgstr "Sistema in manutenzione" - -#: 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:11 -msgid "Applications" -msgstr "Applicazioni" - -#: mod/apps.php:14 -msgid "No installed applications." -msgstr "Nessuna applicazione installata." - -#: mod/help.php:31 -msgid "Help:" -msgstr "Guida:" - -#: mod/help.php:36 include/nav.php:114 -msgid "Help" -msgstr "Guida" - -#: mod/contacts.php:114 +#: mod/contacts.php:50 include/identity.php:380 +msgid "Network:" +msgstr "Rete:" + +#: mod/contacts.php:51 mod/contacts.php:986 mod/videos.php:37 +#: mod/viewcontacts.php:105 mod/dirfind.php:208 mod/network.php:596 +#: mod/allfriends.php:72 mod/match.php:82 mod/directory.php:172 +#: mod/common.php:124 mod/suggest.php:95 mod/photos.php:41 +#: include/identity.php:295 +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:145 mod/contacts.php:368 +#: mod/contacts.php:159 mod/contacts.php:382 msgid "Could not access contact record." msgstr "Non è possibile accedere al contatto." -#: mod/contacts.php:159 +#: mod/contacts.php:173 msgid "Could not locate selected profile." msgstr "Non riesco a trovare il profilo selezionato." -#: mod/contacts.php:192 +#: mod/contacts.php:206 msgid "Contact updated." msgstr "Contatto aggiornato." -#: mod/contacts.php:389 +#: mod/contacts.php:208 mod/dfrn_request.php:578 +msgid "Failed to update contact record." +msgstr "Errore nell'aggiornamento del contatto." + +#: mod/contacts.php:364 mod/manage.php:96 mod/display.php:496 +#: 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:10 mod/follow.php:72 +#: mod/follow.php:137 mod/item.php:169 mod/item.php:185 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:116 mod/settings.php:637 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:5067 index.php:382 +msgid "Permission denied." +msgstr "Permesso negato." + +#: mod/contacts.php:403 msgid "Contact has been blocked" msgstr "Il contatto è stato bloccato" -#: mod/contacts.php:389 +#: mod/contacts.php:403 msgid "Contact has been unblocked" msgstr "Il contatto è stato sbloccato" -#: mod/contacts.php:400 +#: mod/contacts.php:414 msgid "Contact has been ignored" msgstr "Il contatto è ignorato" -#: mod/contacts.php:400 +#: mod/contacts.php:414 msgid "Contact has been unignored" msgstr "Il contatto non è più ignorato" -#: mod/contacts.php:412 +#: mod/contacts.php:426 msgid "Contact has been archived" msgstr "Il contatto è stato archiviato" -#: mod/contacts.php:412 +#: mod/contacts.php:426 msgid "Contact has been unarchived" msgstr "Il contatto è stato dearchiviato" -#: mod/contacts.php:439 mod/contacts.php:795 +#: mod/contacts.php:453 mod/contacts.php:801 msgid "Do you really want to delete this contact?" msgstr "Vuoi veramente cancellare questo contatto?" -#: mod/contacts.php:456 +#: mod/contacts.php:455 mod/follow.php:105 mod/message.php:216 +#: mod/settings.php:1094 mod/settings.php:1100 mod/settings.php:1108 +#: mod/settings.php:1112 mod/settings.php:1117 mod/settings.php:1123 +#: mod/settings.php:1129 mod/settings.php:1135 mod/settings.php:1161 +#: mod/settings.php:1162 mod/settings.php:1163 mod/settings.php:1164 +#: mod/settings.php:1165 mod/dfrn_request.php:850 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:4899 +msgid "Yes" +msgstr "Si" + +#: mod/contacts.php:458 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:116 +#: mod/videos.php:131 mod/message.php:219 mod/fbrowser.php:93 +#: mod/fbrowser.php:128 mod/settings.php:651 mod/settings.php:677 +#: mod/dfrn_request.php:864 mod/suggest.php:32 mod/editpost.php:148 +#: mod/photos.php:247 mod/photos.php:336 include/conversation.php:1221 +#: include/items.php:4902 +msgid "Cancel" +msgstr "Annulla" + +#: mod/contacts.php:470 msgid "Contact has been removed." msgstr "Il contatto è stato rimosso." -#: mod/contacts.php:494 +#: mod/contacts.php:511 #, php-format msgid "You are mutual friends with %s" msgstr "Sei amico reciproco con %s" -#: mod/contacts.php:498 +#: mod/contacts.php:515 #, php-format msgid "You are sharing with %s" msgstr "Stai condividendo con %s" -#: mod/contacts.php:503 +#: mod/contacts.php:520 #, php-format msgid "%s is sharing with you" msgstr "%s sta condividendo con te" -#: mod/contacts.php:523 +#: mod/contacts.php:540 msgid "Private communications are not available for this contact." msgstr "Le comunicazioni private non sono disponibili per questo contatto." -#: mod/contacts.php:530 +#: mod/contacts.php:543 mod/admin.php:645 +msgid "Never" +msgstr "Mai" + +#: mod/contacts.php:547 msgid "(Update was successful)" msgstr "(L'aggiornamento è stato completato)" -#: mod/contacts.php:530 +#: mod/contacts.php:547 msgid "(Update was not successful)" msgstr "(L'aggiornamento non è stato completato)" -#: mod/contacts.php:532 +#: mod/contacts.php:549 msgid "Suggest friends" msgstr "Suggerisci amici" -#: mod/contacts.php:536 +#: mod/contacts.php:553 #, php-format msgid "Network type: %s" msgstr "Tipo di rete: %s" -#: mod/contacts.php:539 include/contact_widgets.php:200 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d contatto in comune" -msgstr[1] "%d contatti in comune" - -#: mod/contacts.php:544 -msgid "View all contacts" -msgstr "Vedi tutti i contatti" - -#: mod/contacts.php:552 -msgid "Toggle Blocked status" -msgstr "Inverti stato \"Blocca\"" - -#: mod/contacts.php:556 mod/contacts.php:623 mod/contacts.php:799 -msgid "Unignore" -msgstr "Non ignorare" - -#: mod/contacts.php:559 -msgid "Toggle Ignored status" -msgstr "Inverti stato \"Ignora\"" - -#: mod/contacts.php:564 mod/contacts.php:800 -msgid "Unarchive" -msgstr "Dearchivia" - -#: mod/contacts.php:564 mod/contacts.php:800 -msgid "Archive" -msgstr "Archivia" - -#: mod/contacts.php:567 -msgid "Toggle Archive status" -msgstr "Inverti stato \"Archiviato\"" - -#: mod/contacts.php:571 -msgid "Repair" -msgstr "Ripara" - -#: mod/contacts.php:574 -msgid "Advanced Contact Settings" -msgstr "Impostazioni avanzate Contatto" - -#: mod/contacts.php:581 +#: mod/contacts.php:566 msgid "Communications lost with this contact!" msgstr "Comunicazione con questo contatto persa!" -#: mod/contacts.php:584 +#: mod/contacts.php:569 msgid "Fetch further information for feeds" msgstr "Recupera maggiori infomazioni per i feed" -#: mod/contacts.php:585 +#: mod/contacts.php:570 mod/admin.php:654 +msgid "Disabled" +msgstr "Disabilitato" + +#: mod/contacts.php:570 msgid "Fetch information" msgstr "Recupera informazioni" -#: mod/contacts.php:585 +#: mod/contacts.php:570 msgid "Fetch information and keywords" msgstr "Recupera informazioni e parole chiave" -#: mod/contacts.php:594 -msgid "Contact Editor" -msgstr "Editor dei Contatti" +#: mod/contacts.php:586 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/clean/config.php:83 view/theme/vier/config.php:107 +#: view/theme/duepuntozero/config.php:59 +msgid "Submit" +msgstr "Invia" -#: mod/contacts.php:597 +#: mod/contacts.php:587 msgid "Profile Visibility" msgstr "Visibilità del profilo" -#: mod/contacts.php:598 +#: mod/contacts.php:588 #, 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:599 +#: mod/contacts.php:589 msgid "Contact Information / Notes" msgstr "Informazioni / Note sul contatto" -#: mod/contacts.php:600 +#: mod/contacts.php:590 msgid "Edit contact notes" msgstr "Modifica note contatto" -#: mod/contacts.php:606 +#: mod/contacts.php:595 mod/contacts.php:977 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:596 msgid "Block/Unblock contact" msgstr "Blocca/Sblocca contatto" -#: mod/contacts.php:607 +#: mod/contacts.php:597 msgid "Ignore contact" msgstr "Ignora il contatto" -#: mod/contacts.php:608 +#: mod/contacts.php:598 msgid "Repair URL settings" msgstr "Impostazioni riparazione URL" -#: mod/contacts.php:609 +#: mod/contacts.php:599 msgid "View conversations" msgstr "Vedi conversazioni" -#: mod/contacts.php:611 +#: mod/contacts.php:601 msgid "Delete contact" msgstr "Rimuovi contatto" -#: mod/contacts.php:615 +#: mod/contacts.php:605 msgid "Last update:" msgstr "Ultimo aggiornamento:" -#: mod/contacts.php:617 +#: mod/contacts.php:607 msgid "Update public posts" msgstr "Aggiorna messaggi pubblici" -#: mod/contacts.php:626 +#: mod/contacts.php:609 mod/admin.php:1653 +msgid "Update now" +msgstr "Aggiorna adesso" + +#: mod/contacts.php:611 mod/dirfind.php:190 mod/allfriends.php:60 +#: mod/match.php:71 mod/suggest.php:82 include/contact_widgets.php:32 +#: include/Contact.php:321 include/conversation.php:924 +msgid "Connect/Follow" +msgstr "Connetti/segui" + +#: mod/contacts.php:614 mod/contacts.php:805 mod/contacts.php:864 +#: mod/admin.php:1117 +msgid "Unblock" +msgstr "Sblocca" + +#: mod/contacts.php:614 mod/contacts.php:805 mod/contacts.php:864 +#: mod/admin.php:1116 +msgid "Block" +msgstr "Blocca" + +#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:871 +msgid "Unignore" +msgstr "Non ignorare" + +#: mod/contacts.php:615 mod/contacts.php:806 mod/contacts.php:871 +#: mod/notifications.php:54 mod/notifications.php:179 +#: mod/notifications.php:259 +msgid "Ignore" +msgstr "Ignora" + +#: mod/contacts.php:618 msgid "Currently blocked" msgstr "Bloccato" -#: mod/contacts.php:627 +#: mod/contacts.php:619 msgid "Currently ignored" msgstr "Ignorato" -#: mod/contacts.php:628 +#: mod/contacts.php:620 msgid "Currently archived" msgstr "Al momento archiviato" -#: mod/contacts.php:629 +#: mod/contacts.php:621 mod/notifications.php:172 mod/notifications.php:251 +msgid "Hide this contact from others" +msgstr "Nascondi questo contatto agli altri" + +#: mod/contacts.php:621 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Risposte ai tuoi post pubblici possono essere comunque visibili" -#: mod/contacts.php:630 +#: mod/contacts.php:622 msgid "Notification for new posts" msgstr "Notifica per i nuovi messaggi" -#: mod/contacts.php:630 +#: mod/contacts.php:622 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:633 +#: mod/contacts.php:625 msgid "Blacklisted keywords" msgstr "Parole chiave in blacklist" -#: mod/contacts.php:633 +#: mod/contacts.php:625 msgid "" "Comma separated list of keywords that should not be converted to hashtags, " "when \"Fetch information and keywords\" is selected" msgstr "Lista separata da virgola di parole chiave che non dovranno essere convertite in hastag, quando \"Recupera informazioni e parole chiave\" è selezionato" -#: mod/contacts.php:640 +#: mod/contacts.php:632 mod/follow.php:121 mod/notifications.php:255 msgid "Profile URL" msgstr "URL Profilo" -#: mod/contacts.php:686 +#: mod/contacts.php:635 mod/follow.php:125 mod/notifications.php:244 +#: mod/events.php:566 mod/directory.php:145 include/identity.php:304 +#: include/bb2diaspora.php:170 include/event.php:36 include/event.php:60 +msgid "Location:" +msgstr "Posizione:" + +#: mod/contacts.php:637 mod/follow.php:127 mod/notifications.php:246 +#: mod/directory.php:153 include/identity.php:313 include/identity.php:621 +msgid "About:" +msgstr "Informazioni:" + +#: mod/contacts.php:639 mod/follow.php:129 mod/notifications.php:248 +#: include/identity.php:615 +msgid "Tags:" +msgstr "Tag:" + +#: mod/contacts.php:684 msgid "Suggestions" msgstr "Suggerimenti" -#: mod/contacts.php:689 +#: mod/contacts.php:687 msgid "Suggest potential friends" msgstr "Suggerisci potenziali amici" -#: mod/contacts.php:693 mod/group.php:192 +#: mod/contacts.php:692 mod/group.php:192 msgid "All Contacts" msgstr "Tutti i contatti" -#: mod/contacts.php:696 +#: mod/contacts.php:695 msgid "Show all contacts" msgstr "Mostra tutti i contatti" @@ -3363,175 +375,205 @@ msgstr "Sbloccato" msgid "Only show unblocked contacts" msgstr "Mostra solo contatti non bloccati" -#: mod/contacts.php:708 +#: mod/contacts.php:709 msgid "Blocked" msgstr "Bloccato" -#: mod/contacts.php:711 +#: mod/contacts.php:712 msgid "Only show blocked contacts" msgstr "Mostra solo contatti bloccati" -#: mod/contacts.php:716 +#: mod/contacts.php:718 msgid "Ignored" msgstr "Ignorato" -#: mod/contacts.php:719 +#: mod/contacts.php:721 msgid "Only show ignored contacts" msgstr "Mostra solo contatti ignorati" -#: mod/contacts.php:724 +#: mod/contacts.php:727 msgid "Archived" msgstr "Achiviato" -#: mod/contacts.php:727 +#: mod/contacts.php:730 msgid "Only show archived contacts" msgstr "Mostra solo contatti archiviati" -#: mod/contacts.php:732 +#: mod/contacts.php:736 msgid "Hidden" msgstr "Nascosto" -#: mod/contacts.php:735 +#: mod/contacts.php:739 msgid "Only show hidden contacts" msgstr "Mostra solo contatti nascosti" -#: mod/contacts.php:786 view/theme/diabook/theme.php:125 include/text.php:1005 -#: include/nav.php:124 include/nav.php:186 +#: mod/contacts.php:792 mod/contacts.php:840 mod/viewcontacts.php:116 +#: include/identity.php:732 include/identity.php:735 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:790 +#: mod/contacts.php:796 msgid "Search your contacts" msgstr "Cerca nei tuoi contatti" -#: mod/contacts.php:791 mod/directory.php:63 +#: mod/contacts.php:797 msgid "Finding: " msgstr "Ricerca: " -#: mod/contacts.php:792 mod/directory.php:65 include/contact_widgets.php:34 +#: mod/contacts.php:798 mod/directory.php:210 include/contact_widgets.php:34 msgid "Find" msgstr "Trova" -#: mod/contacts.php:797 mod/settings.php:146 mod/settings.php:658 +#: mod/contacts.php:804 mod/settings.php:146 mod/settings.php:676 msgid "Update" msgstr "Aggiorna" -#: mod/contacts.php:814 -msgid "Mutual Friendship" -msgstr "Amicizia reciproca" +#: mod/contacts.php:807 mod/contacts.php:878 +msgid "Archive" +msgstr "Archivia" -#: mod/contacts.php:818 -msgid "is a fan of yours" -msgstr "è un tuo fan" +#: mod/contacts.php:807 mod/contacts.php:878 +msgid "Unarchive" +msgstr "Dearchivia" -#: mod/contacts.php:822 -msgid "you are a fan of" -msgstr "sei un fan di" +#: mod/contacts.php:808 mod/group.php:171 mod/admin.php:1115 +#: mod/content.php:440 mod/content.php:743 mod/settings.php:713 +#: mod/photos.php:1723 object/Item.php:134 include/conversation.php:635 +msgid "Delete" +msgstr "Rimuovi" -#: mod/videos.php:113 -msgid "Do you really want to delete this video?" -msgstr "Vuoi veramente cancellare questo video?" +#: mod/contacts.php:821 include/identity.php:677 include/nav.php:75 +msgid "Status" +msgstr "Stato" -#: mod/videos.php:118 -msgid "Delete Video" -msgstr "Rimuovi video" +#: mod/contacts.php:824 include/identity.php:680 +msgid "Status Messages and Posts" +msgstr "Messaggi di stato e post" -#: mod/videos.php:197 -msgid "No videos selected" -msgstr "Nessun video selezionato" +#: mod/contacts.php:829 mod/profperm.php:104 mod/newmember.php:32 +#: include/identity.php:569 include/identity.php:655 include/identity.php:685 +#: include/nav.php:76 view/theme/diabook/theme.php:124 +msgid "Profile" +msgstr "Profilo" -#: mod/videos.php:389 -msgid "Recent Videos" -msgstr "Video Recenti" +#: mod/contacts.php:832 include/identity.php:688 +msgid "Profile Details" +msgstr "Dettagli del profilo" -#: mod/videos.php:391 -msgid "Upload New Videos" -msgstr "Carica Nuovo Video" +#: mod/contacts.php:843 +msgid "View all contacts" +msgstr "Vedi tutti i contatti" -#: mod/common.php:45 +#: mod/contacts.php:849 mod/common.php:135 msgid "Common Friends" msgstr "Amici in comune" -#: mod/common.php:82 -msgid "No contacts in common." -msgstr "Nessun contatto in comune." +#: mod/contacts.php:852 +msgid "View all common friends" +msgstr "Vedi tutti gli amici in comune" -#: mod/follow.php:26 -msgid "You already added this contact." -msgstr "Hai già aggiunto questo contatto." +#: mod/contacts.php:856 +msgid "Repair" +msgstr "Ripara" -#: mod/follow.php:108 -msgid "Contact added" -msgstr "Contatto aggiunto" +#: mod/contacts.php:859 +msgid "Advanced Contact Settings" +msgstr "Impostazioni avanzate Contatto" -#: mod/bookmarklet.php:12 boot.php:1273 include/nav.php:92 -msgid "Login" -msgstr "Accedi" +#: mod/contacts.php:867 +msgid "Toggle Blocked status" +msgstr "Inverti stato \"Blocca\"" -#: mod/bookmarklet.php:41 -msgid "The post was created" -msgstr "Il messaggio è stato creato" +#: mod/contacts.php:874 +msgid "Toggle Ignored status" +msgstr "Inverti stato \"Ignora\"" -#: mod/uimport.php:66 -msgid "Move account" -msgstr "Muovi account" +#: mod/contacts.php:881 +msgid "Toggle Archive status" +msgstr "Inverti stato \"Archiviato\"" -#: 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/contacts.php:949 +msgid "Mutual Friendship" +msgstr "Amicizia reciproca" -#: mod/uimport.php:68 +#: mod/contacts.php:953 +msgid "is a fan of yours" +msgstr "è un tuo fan" + +#: mod/contacts.php:957 +msgid "you are a fan of" +msgstr "sei un fan di" + +#: mod/contacts.php:978 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 "" -"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." +"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/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora" +#: mod/manage.php:141 +msgid "Select an identity to manage: " +msgstr "Seleziona un'identità da gestire:" -#: mod/uimport.php:70 -msgid "Account file" -msgstr "File account" +#: mod/oexchange.php:25 +msgid "Post successful." +msgstr "Inviato!" -#: 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/profperm.php:19 mod/group.php:72 index.php:381 +msgid "Permission denied" +msgstr "Permesso negato" -#: 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/profperm.php:25 mod/profperm.php:56 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." -#: mod/allfriends.php:37 -#, php-format -msgid "Friends of %s" -msgstr "Amici di %s" +#: mod/profperm.php:102 +msgid "Profile Visibility Editor" +msgstr "Modifica visibilità del profilo" -#: mod/allfriends.php:44 -msgid "No friends to display." -msgstr "Nessun amico da visualizzare." +#: 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/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag rimosso" +#: mod/profperm.php:115 +msgid "Visible To" +msgstr "Visibile a" -#: mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" +#: mod/profperm.php:131 +msgid "All Contacts (with secure profile access)" +msgstr "Tutti i contatti (con profilo ad accesso sicuro)" -#: mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " +#: mod/display.php:82 mod/display.php:283 mod/display.php:500 +#: mod/viewsrc.php:15 mod/admin.php:196 mod/admin.php:1160 mod/admin.php:1381 +#: mod/notice.php:15 include/items.php:4858 +msgid "Item not found." +msgstr "Elemento non trovato." -#: mod/tagrm.php:93 mod/delegate.php:139 -msgid "Remove" -msgstr "Rimuovi" +#: mod/display.php:211 mod/videos.php:197 mod/viewcontacts.php:35 +#: mod/community.php:18 mod/dfrn_request.php:779 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:331 mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "L'accesso a questo profilo è stato limitato." + +#: mod/display.php:493 +msgid "Item has been removed." +msgstr "L'oggetto è stato rimosso." #: mod/newmember.php:6 msgid "Welcome to Friendica" @@ -3564,6 +606,12 @@ msgid "" " 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:1212 mod/admin.php:1457 +#: mod/settings.php:99 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" @@ -3583,13 +631,7 @@ msgid "" "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:32 mod/profperm.php:104 view/theme/diabook/theme.php:124 -#: include/identity.php:530 include/identity.php:611 include/identity.php:641 -#: include/nav.php:77 -msgid "Profile" -msgstr "Profilo" - -#: mod/newmember.php:36 mod/profiles.php:696 mod/profile_photo.php:244 +#: mod/newmember.php:36 mod/profile_photo.php:250 mod/profiles.php:709 msgid "Upload Profile Photo" msgstr "Carica la foto del profilo" @@ -3688,7 +730,7 @@ msgid "" "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:66 include/group.php:270 +#: mod/newmember.php:66 include/group.php:283 msgid "Groups" msgstr "Gruppi" @@ -3728,32 +770,5026 @@ msgid "" " features and resources." msgstr "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse." -#: mod/search.php:25 mod/network.php:187 +#: mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Errore protocollo OpenID. Nessun ID ricevuto." + +#: mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito." + +#: mod/openid.php:93 include/auth.php:112 include/auth.php:175 +msgid "Login failed." +msgstr "Accesso fallito." + +#: mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." + +#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88 +#: mod/profile_photo.php: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 mod/like.php:168 +#: include/conversation.php:130 include/conversation.php:266 +#: include/text.php:1993 include/diaspora.php:2146 +#: view/theme/diabook/theme.php:471 +msgid "photo" +msgstr "foto" + +#: mod/subthread.php:87 mod/tagger.php:62 mod/like.php:168 mod/like.php:346 +#: include/conversation.php:125 include/conversation.php:134 +#: include/conversation.php:261 include/conversation.php:270 +#: include/diaspora.php:2146 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 "Subsribing 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:1133 +#: include/conversation.php:1151 +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:18 mod/dfrn_request.php:863 +msgid "Submit Request" +msgstr "Invia richiesta" + +#: mod/follow.php:29 +msgid "You already added this contact." +msgstr "Hai già aggiunto questo contatto." + +#: mod/follow.php:38 +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:45 +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:52 +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:104 mod/dfrn_request.php:849 +msgid "Please answer the following:" +msgstr "Rispondi:" + +#: mod/follow.php:105 mod/dfrn_request.php:850 +#, php-format +msgid "Does %s know you?" +msgstr "%s ti conosce?" + +#: mod/follow.php:105 mod/settings.php:1094 mod/settings.php:1100 +#: mod/settings.php:1108 mod/settings.php:1112 mod/settings.php:1117 +#: mod/settings.php:1123 mod/settings.php:1129 mod/settings.php:1135 +#: mod/settings.php:1161 mod/settings.php:1162 mod/settings.php:1163 +#: mod/settings.php:1164 mod/settings.php:1165 mod/dfrn_request.php:850 +#: 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:106 mod/dfrn_request.php:854 +msgid "Add a personal note:" +msgstr "Aggiungi una nota personale:" + +#: mod/follow.php:112 mod/dfrn_request.php:860 +msgid "Your Identity Address:" +msgstr "L'indirizzo della tua identità:" + +#: mod/follow.php:162 +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:322 +msgid "Empty post discarded." +msgstr "Messaggio vuoto scartato." + +#: mod/item.php:460 mod/wall_upload.php:213 mod/wall_upload.php:227 +#: mod/wall_upload.php:234 include/Photo.php:954 include/Photo.php:969 +#: include/Photo.php:976 include/Photo.php:998 include/message.php:145 +msgid "Wall Photos" +msgstr "Foto della bacheca" + +#: mod/item.php:834 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Messaggio non salvato." + +#: mod/item.php:963 +#, 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:965 +#, php-format +msgid "You may visit them online at %s" +msgstr "Puoi visitarli online su %s" + +#: mod/item.php:966 +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:970 +#, 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:563 mod/content.php:130 +msgid "Group is empty" +msgstr "Il gruppo è vuoto" + +#: mod/apps.php:7 index.php:225 +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:636 +#, 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:734 include/items.php:4270 +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:52 +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:1465 +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:1733 +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:1307 +msgid "Password Reset" +msgstr "Reimpostazione password" + +#: mod/lostpass.php:110 +msgid "Your password has been reset as requested." +msgstr "La tua password è stata reimpostata come richiesto." + +#: mod/lostpass.php:111 +msgid "Your new password is" +msgstr "La tua nuova password è" + +#: mod/lostpass.php:112 +msgid "Save or copy your new password - and then" +msgstr "Salva o copia la tua nuova password, quindi" + +#: mod/lostpass.php:113 +msgid "click here to login" +msgstr "clicca qui per entrare" + +#: mod/lostpass.php:114 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso." + +#: mod/lostpass.php:125 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\t\tsomething that you will remember).\n" +"\t\t\t" +msgstr "\nGentile %1$s,\n La tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare." + +#: mod/lostpass.php:131 +#, php-format +msgid "" +"\n" +"\t\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\t\tSite Location:\t%1$s\n" +"\t\t\t\tLogin Name:\t%2$s\n" +"\t\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t\t" +msgstr "\nI dettagli del tuo account sono:\n\n Indirizzo del sito: %1$s\n Nome utente: %2$s\n Password: %3$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato." + +#: mod/lostpass.php:147 +#, php-format +msgid "Your password has been changed at %s" +msgstr "La tua password presso %s è stata cambiata" + +#: mod/lostpass.php:159 +msgid "Forgot your Password?" +msgstr "Hai dimenticato la password?" + +#: mod/lostpass.php:160 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Inserisci il tuo indirizzo email per reimpostare la password." + +#: mod/lostpass.php:161 +msgid "Nickname or Email: " +msgstr "Nome utente o email: " + +#: mod/lostpass.php:162 +msgid "Reset" +msgstr "Reimposta" + +#: mod/like.php:170 include/conversation.php:122 include/conversation.php:258 +#: include/text.php:1991 view/theme/diabook/theme.php:463 +msgid "event" +msgstr "l'evento" + +#: mod/like.php:187 include/conversation.php:141 include/diaspora.php:2162 +#: view/theme/diabook/theme.php:480 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" + +#: mod/like.php:189 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" + +#: mod/like.php:191 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s parteciperà a %3$s di %2$s" + +#: mod/like.php:193 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s non parteciperà a %3$s di %2$s" + +#: mod/like.php:195 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s forse parteciperà a %3$s di %2$s" + +#: 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:228 include/nav.php:154 +msgid "Network" +msgstr "Rete" + +#: mod/notifications.php:93 mod/network.php:381 +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:1113 +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:306 +#: include/identity.php:580 +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:1129 include/conversation.php:1147 +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:1184 +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:1188 +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:1202 +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:582 +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:555 +#, php-format +msgid "Unknown sender - %s" +msgstr "Mittente sconosciuto - %s" + +#: mod/message.php:558 +#, php-format +msgid "You and %s" +msgstr "Tu e %s" + +#: mod/message.php:561 +#, php-format +msgid "%s and You" +msgstr "%s e Tu" + +#: mod/message.php:585 +msgid "D, d M Y - g:i A" +msgstr "D d M Y - G:i" + +#: mod/message.php:588 +#, 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:1111 mod/admin.php:1123 +#: mod/admin.php:1124 mod/admin.php:1137 mod/settings.php:652 +#: mod/settings.php:678 +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:1293 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:188 mod/allfriends.php:75 mod/match.php:85 +#: mod/suggest.php:98 include/contact_widgets.php:10 include/identity.php:209 +msgid "Connect" +msgstr "Connetti" + +#: mod/dirfind.php:189 mod/allfriends.php:59 mod/match.php:70 +#: mod/directory.php:162 mod/suggest.php:81 include/Contact.php:307 +#: include/Contact.php:320 include/Contact.php:362 +#: include/conversation.php:912 include/conversation.php:926 +msgid "View Profile" +msgstr "Visualizza profilo" + +#: mod/dirfind.php:218 +#, php-format +msgid "People Search - %s" +msgstr "Cerca persone - %s" + +#: mod/dirfind.php:225 mod/match.php:105 +msgid "No matches" +msgstr "Nessun risultato" + +#: mod/fbrowser.php:32 include/identity.php:693 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:80 +msgid "Theme settings updated." +msgstr "Impostazioni del tema aggiornate." + +#: mod/admin.php:127 mod/admin.php:711 +msgid "Site" +msgstr "Sito" + +#: mod/admin.php:128 mod/admin.php:655 mod/admin.php:1106 mod/admin.php:1121 +msgid "Users" +msgstr "Utenti" + +#: mod/admin.php:129 mod/admin.php:1210 mod/admin.php:1270 mod/settings.php:66 +msgid "Plugins" +msgstr "Plugin" + +#: mod/admin.php:130 mod/admin.php:1455 mod/admin.php:1506 +msgid "Themes" +msgstr "Temi" + +#: mod/admin.php:131 +msgid "DB updates" +msgstr "Aggiornamenti Database" + +#: mod/admin.php:132 mod/admin.php:223 +msgid "Inspect Queue" +msgstr "Ispeziona Coda di invio" + +#: mod/admin.php:147 mod/admin.php:156 mod/admin.php:1594 +msgid "Logs" +msgstr "Log" + +#: mod/admin.php:148 +msgid "probe address" +msgstr "controlla indirizzo" + +#: mod/admin.php:149 +msgid "check webfinger" +msgstr "verifica webfinger" + +#: mod/admin.php:154 include/nav.php:194 +msgid "Admin" +msgstr "Amministrazione" + +#: mod/admin.php:155 +msgid "Plugin Features" +msgstr "Impostazioni Plugins" + +#: mod/admin.php:157 +msgid "diagnostics" +msgstr "diagnostiche" + +#: mod/admin.php:158 +msgid "User registrations waiting for confirmation" +msgstr "Utenti registrati in attesa di conferma" + +#: mod/admin.php:222 mod/admin.php:272 mod/admin.php:710 mod/admin.php:1105 +#: mod/admin.php:1209 mod/admin.php:1269 mod/admin.php:1454 mod/admin.php:1505 +#: mod/admin.php:1593 +msgid "Administration" +msgstr "Amministrazione" + +#: mod/admin.php:225 +msgid "ID" +msgstr "ID" + +#: mod/admin.php:226 +msgid "Recipient Name" +msgstr "Nome Destinatario" + +#: mod/admin.php:227 +msgid "Recipient Profile" +msgstr "Profilo Destinatario" + +#: mod/admin.php:229 +msgid "Created" +msgstr "Creato" + +#: mod/admin.php:230 +msgid "Last Tried" +msgstr "Ultimo Tentativo" + +#: mod/admin.php:231 +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:243 mod/admin.php:1059 +msgid "Normal Account" +msgstr "Account normale" + +#: mod/admin.php:244 mod/admin.php:1060 +msgid "Soapbox Account" +msgstr "Account per comunicati e annunci" + +#: mod/admin.php:245 mod/admin.php:1061 +msgid "Community/Celebrity Account" +msgstr "Account per celebrità o per comunità" + +#: mod/admin.php:246 mod/admin.php:1062 +msgid "Automatic Friend Account" +msgstr "Account per amicizia automatizzato" + +#: mod/admin.php:247 +msgid "Blog Account" +msgstr "Account Blog" + +#: mod/admin.php:248 +msgid "Private Forum" +msgstr "Forum Privato" + +#: mod/admin.php:267 +msgid "Message queues" +msgstr "Code messaggi" + +#: mod/admin.php:273 +msgid "Summary" +msgstr "Sommario" + +#: mod/admin.php:275 +msgid "Registered users" +msgstr "Utenti registrati" + +#: mod/admin.php:277 +msgid "Pending registrations" +msgstr "Registrazioni in attesa" + +#: mod/admin.php:278 +msgid "Version" +msgstr "Versione" + +#: mod/admin.php:283 +msgid "Active plugins" +msgstr "Plugin attivi" + +#: mod/admin.php:306 +msgid "Can not parse base url. Must have at least ://" +msgstr "Impossibile analizzare l'url base. Deve avere almeno [schema]://[dominio]" + +#: mod/admin.php:587 +msgid "RINO2 needs mcrypt php extension to work." +msgstr "RINO2 necessita dell'estensione php mcrypt per funzionare." + +#: mod/admin.php:595 +msgid "Site settings updated." +msgstr "Impostazioni del sito aggiornate." + +#: mod/admin.php:619 mod/settings.php:903 +msgid "No special theme for mobile devices" +msgstr "Nessun tema speciale per i dispositivi mobili" + +#: mod/admin.php:638 +msgid "No community page" +msgstr "Nessuna pagina Comunità" + +#: mod/admin.php:639 +msgid "Public postings from users of this site" +msgstr "Messaggi pubblici dagli utenti di questo sito" + +#: mod/admin.php:640 +msgid "Global community page" +msgstr "Pagina Comunità globale" + +#: mod/admin.php:646 +msgid "At post arrival" +msgstr "All'arrivo di un messaggio" + +#: mod/admin.php:647 include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Frequentemente" + +#: mod/admin.php:648 include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Ogni ora" + +#: mod/admin.php:649 include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Due volte al dì" + +#: mod/admin.php:650 include/contact_selectors.php:59 +msgid "Daily" +msgstr "Giornalmente" + +#: mod/admin.php:656 +msgid "Users, Global Contacts" +msgstr "Utenti, Contatti Globali" + +#: mod/admin.php:657 +msgid "Users, Global Contacts/fallback" +msgstr "Utenti, Contatti Globali/fallback" + +#: mod/admin.php:661 +msgid "One month" +msgstr "Un mese" + +#: mod/admin.php:662 +msgid "Three months" +msgstr "Tre mesi" + +#: mod/admin.php:663 +msgid "Half a year" +msgstr "Sei mesi" + +#: mod/admin.php:664 +msgid "One year" +msgstr "Un anno" + +#: mod/admin.php:669 +msgid "Multi user instance" +msgstr "Istanza multi utente" + +#: mod/admin.php:692 +msgid "Closed" +msgstr "Chiusa" + +#: mod/admin.php:693 +msgid "Requires approval" +msgstr "Richiede l'approvazione" + +#: mod/admin.php:694 +msgid "Open" +msgstr "Aperta" + +#: mod/admin.php:698 +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:699 +msgid "Force all links to use SSL" +msgstr "Forza tutti i linki ad usare SSL" + +#: mod/admin.php:700 +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:712 mod/admin.php:1271 mod/admin.php:1507 mod/admin.php:1595 +#: mod/settings.php:650 mod/settings.php:760 mod/settings.php:804 +#: mod/settings.php:873 mod/settings.php:960 mod/settings.php:1195 +msgid "Save Settings" +msgstr "Salva Impostazioni" + +#: mod/admin.php:713 mod/register.php:263 +msgid "Registration" +msgstr "Registrazione" + +#: mod/admin.php:714 +msgid "File upload" +msgstr "Caricamento file" + +#: mod/admin.php:715 +msgid "Policies" +msgstr "Politiche" + +#: mod/admin.php:716 +msgid "Advanced" +msgstr "Avanzate" + +#: mod/admin.php:717 +msgid "Auto Discovered Contact Directory" +msgstr "Elenco Contatti Scoperto Automaticamente" + +#: mod/admin.php:718 +msgid "Performance" +msgstr "Performance" + +#: mod/admin.php:719 +msgid "" +"Relocate - WARNING: advanced function. Could make this server unreachable." +msgstr "Trasloca - ATTENZIONE: funzione avanzata! Puo' rendere questo server irraggiungibile." + +#: mod/admin.php:722 +msgid "Site name" +msgstr "Nome del sito" + +#: mod/admin.php:723 +msgid "Host name" +msgstr "Nome host" + +#: mod/admin.php:724 +msgid "Sender Email" +msgstr "Mittente email" + +#: mod/admin.php:724 +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:725 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: mod/admin.php:726 +msgid "Shortcut icon" +msgstr "Icona shortcut" + +#: mod/admin.php:726 +msgid "Link to an icon that will be used for browsers." +msgstr "Link verso un'icona che verrà usata dai browsers." + +#: mod/admin.php:727 +msgid "Touch icon" +msgstr "Icona touch" + +#: mod/admin.php:727 +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:728 +msgid "Additional Info" +msgstr "Informazioni aggiuntive" + +#: mod/admin.php:728 +#, 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:729 +msgid "System language" +msgstr "Lingua di sistema" + +#: mod/admin.php:730 +msgid "System theme" +msgstr "Tema di sistema" + +#: mod/admin.php:730 +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:731 +msgid "Mobile system theme" +msgstr "Tema mobile di sistema" + +#: mod/admin.php:731 +msgid "Theme for mobile devices" +msgstr "Tema per dispositivi mobili" + +#: mod/admin.php:732 +msgid "SSL link policy" +msgstr "Gestione link SSL" + +#: mod/admin.php:732 +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:733 +msgid "Force SSL" +msgstr "Forza SSL" + +#: mod/admin.php:733 +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:734 +msgid "Old style 'Share'" +msgstr "Ricondivisione vecchio stile" + +#: mod/admin.php:734 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "Disattiva l'elemento bbcode 'share' con elementi ripetuti" + +#: mod/admin.php:735 +msgid "Hide help entry from navigation menu" +msgstr "Nascondi la voce 'Guida' dal menu di navigazione" + +#: mod/admin.php:735 +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:736 +msgid "Single user instance" +msgstr "Instanza a singolo utente" + +#: mod/admin.php:736 +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:737 +msgid "Maximum image size" +msgstr "Massima dimensione immagini" + +#: mod/admin.php:737 +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:738 +msgid "Maximum image length" +msgstr "Massima lunghezza immagine" + +#: mod/admin.php:738 +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:739 +msgid "JPEG image quality" +msgstr "Qualità immagini JPEG" + +#: mod/admin.php:739 +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:741 +msgid "Register policy" +msgstr "Politica di registrazione" + +#: mod/admin.php:742 +msgid "Maximum Daily Registrations" +msgstr "Massime registrazioni giornaliere" + +#: mod/admin.php:742 +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:743 +msgid "Register text" +msgstr "Testo registrazione" + +#: mod/admin.php:743 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." + +#: mod/admin.php:744 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo x giorni" + +#: mod/admin.php:744 +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:745 +msgid "Allowed friend domains" +msgstr "Domini amici consentiti" + +#: mod/admin.php:745 +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:746 +msgid "Allowed email domains" +msgstr "Domini email consentiti" + +#: mod/admin.php:746 +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:747 +msgid "Block public" +msgstr "Blocca pagine pubbliche" + +#: mod/admin.php:747 +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:748 +msgid "Force publish" +msgstr "Forza publicazione" + +#: mod/admin.php:748 +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:749 +msgid "Global directory URL" +msgstr "URL della directory globale" + +#: mod/admin.php:749 +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:750 +msgid "Allow threaded items" +msgstr "Permetti commenti nidificati" + +#: mod/admin.php:750 +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:751 +msgid "Private posts by default for new users" +msgstr "Post privati di default per i nuovi utenti" + +#: mod/admin.php:751 +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:752 +msgid "Don't include post content in email notifications" +msgstr "Non includere il contenuto dei post nelle notifiche via email" + +#: mod/admin.php:752 +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:753 +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:753 +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:754 +msgid "Don't embed private images in posts" +msgstr "Non inglobare immagini private nei post" + +#: mod/admin.php:754 +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:755 +msgid "Allow Users to set remote_self" +msgstr "Permetti agli utenti di impostare 'io remoto'" + +#: mod/admin.php:755 +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:756 +msgid "Block multiple registrations" +msgstr "Blocca registrazioni multiple" + +#: mod/admin.php:756 +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:757 +msgid "OpenID support" +msgstr "Supporto OpenID" + +#: mod/admin.php:757 +msgid "OpenID support for registration and logins." +msgstr "Supporta OpenID per la registrazione e il login" + +#: mod/admin.php:758 +msgid "Fullname check" +msgstr "Controllo nome completo" + +#: mod/admin.php:758 +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:759 +msgid "UTF-8 Regular expressions" +msgstr "Espressioni regolari UTF-8" + +#: mod/admin.php:759 +msgid "Use PHP UTF8 regular expressions" +msgstr "Usa le espressioni regolari PHP in UTF8" + +#: mod/admin.php:760 +msgid "Community Page Style" +msgstr "Stile pagina Comunità" + +#: mod/admin.php:760 +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:761 +msgid "Posts per user on community page" +msgstr "Messaggi per utente nella pagina Comunità" + +#: mod/admin.php:761 +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:762 +msgid "Enable OStatus support" +msgstr "Abilita supporto OStatus" + +#: mod/admin.php:762 +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:763 +msgid "OStatus conversation completion interval" +msgstr "Intervallo completamento conversazioni OStatus" + +#: mod/admin.php:763 +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:764 +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:766 +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:767 +msgid "Enable Diaspora support" +msgstr "Abilita il supporto a Diaspora" + +#: mod/admin.php:767 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Fornisce compatibilità con il network Diaspora." + +#: mod/admin.php:768 +msgid "Only allow Friendica contacts" +msgstr "Permetti solo contatti Friendica" + +#: mod/admin.php:768 +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:769 +msgid "Verify SSL" +msgstr "Verifica SSL" + +#: mod/admin.php:769 +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:770 +msgid "Proxy user" +msgstr "Utente Proxy" + +#: mod/admin.php:771 +msgid "Proxy URL" +msgstr "URL Proxy" + +#: mod/admin.php:772 +msgid "Network timeout" +msgstr "Timeout rete" + +#: mod/admin.php:772 +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:773 +msgid "Delivery interval" +msgstr "Intervallo di invio" + +#: mod/admin.php:773 +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:774 +msgid "Poll interval" +msgstr "Intervallo di poll" + +#: mod/admin.php:774 +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:775 +msgid "Maximum Load Average" +msgstr "Massimo carico medio" + +#: mod/admin.php:775 +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:776 +msgid "Maximum Load Average (Frontend)" +msgstr "Media Massimo Carico (Frontend)" + +#: mod/admin.php:776 +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:777 +msgid "Maximum table size for optimization" +msgstr "Dimensione massima della tabella per l'ottimizzazione" + +#: mod/admin.php:777 +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:779 +msgid "Periodical check of global contacts" +msgstr "Check periodico dei contatti globali" + +#: mod/admin.php:779 +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:780 +msgid "Days between requery" +msgstr "Giorni tra le richieste" + +#: mod/admin.php:780 +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:781 +msgid "Discover contacts from other servers" +msgstr "Trova contatti dagli altri server" + +#: mod/admin.php:781 +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:782 +msgid "Timeframe for fetching global contacts" +msgstr "Termine per il recupero contatti globali" + +#: mod/admin.php:782 +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:783 +msgid "Search the local directory" +msgstr "Cerca la directory locale" + +#: mod/admin.php:783 +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:785 +msgid "Publish server information" +msgstr "Pubblica informazioni server" + +#: mod/admin.php:785 +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:787 +msgid "Use MySQL full text engine" +msgstr "Usa il motore MySQL full text" + +#: mod/admin.php:787 +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:788 +msgid "Suppress Language" +msgstr "Disattiva lingua" + +#: mod/admin.php:788 +msgid "Suppress language information in meta information about a posting." +msgstr "Disattiva le informazioni sulla lingua nei meta di un post." + +#: mod/admin.php:789 +msgid "Suppress Tags" +msgstr "Sopprimi Tags" + +#: mod/admin.php:789 +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:790 +msgid "Path to item cache" +msgstr "Percorso cache elementi" + +#: mod/admin.php:790 +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:791 +msgid "Cache duration in seconds" +msgstr "Durata della cache in secondi" + +#: mod/admin.php:791 +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:792 +msgid "Maximum numbers of comments per post" +msgstr "Numero massimo di commenti per post" + +#: mod/admin.php:792 +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:793 +msgid "Path for lock file" +msgstr "Percorso al file di lock" + +#: mod/admin.php:793 +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:794 +msgid "Temp path" +msgstr "Percorso file temporanei" + +#: mod/admin.php:794 +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:795 +msgid "Base path to installation" +msgstr "Percorso base all'installazione" + +#: mod/admin.php:795 +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:796 +msgid "Disable picture proxy" +msgstr "Disabilita il proxy immagini" + +#: mod/admin.php:796 +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:797 +msgid "Enable old style pager" +msgstr "Abilita la paginazione vecchio stile" + +#: mod/admin.php:797 +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:798 +msgid "Only search in tags" +msgstr "Cerca solo nei tag" + +#: mod/admin.php:798 +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:800 +msgid "New base url" +msgstr "Nuovo url base" + +#: mod/admin.php:800 +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:802 +msgid "RINO Encryption" +msgstr "Crittografia RINO" + +#: mod/admin.php:802 +msgid "Encryption layer between nodes." +msgstr "Crittografia delle comunicazioni tra nodi." + +#: mod/admin.php:803 +msgid "Embedly API key" +msgstr "Embedly API key" + +#: mod/admin.php:803 +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:821 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato segnato come di successo" + +#: mod/admin.php:829 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "Aggiornamento struttura database %s applicata con successo." + +#: mod/admin.php:832 +#, 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:844 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "Esecuzione di %s fallita con errore: %s" + +#: mod/admin.php:847 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è stato applicato con successo" + +#: mod/admin.php:851 +#, 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:853 +#, 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:872 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." + +#: mod/admin.php:873 +msgid "Check database structure" +msgstr "Controlla struttura database" + +#: mod/admin.php:878 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti" + +#: mod/admin.php:879 +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:880 +msgid "Mark success (if update was manually applied)" +msgstr "Segna completato (se l'update è stato applicato manualmente)" + +#: mod/admin.php:881 +msgid "Attempt to execute this update step automatically" +msgstr "Cerco di eseguire questo aggiornamento in automatico" + +#: mod/admin.php:913 +#, 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:916 +#, 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:948 include/user.php:423 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" + +#: mod/admin.php:960 +#, 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:967 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utente cancellato" +msgstr[1] "%s utenti cancellati" + +#: mod/admin.php:1006 +#, php-format +msgid "User '%s' deleted" +msgstr "Utente '%s' cancellato" + +#: mod/admin.php:1014 +#, php-format +msgid "User '%s' unblocked" +msgstr "Utente '%s' sbloccato" + +#: mod/admin.php:1014 +#, php-format +msgid "User '%s' blocked" +msgstr "Utente '%s' bloccato" + +#: mod/admin.php:1107 +msgid "Add User" +msgstr "Aggiungi utente" + +#: mod/admin.php:1108 +msgid "select all" +msgstr "seleziona tutti" + +#: mod/admin.php:1109 +msgid "User registrations waiting for confirm" +msgstr "Richieste di registrazione in attesa di conferma" + +#: mod/admin.php:1110 +msgid "User waiting for permanent deletion" +msgstr "Utente in attesa di cancellazione definitiva" + +#: mod/admin.php:1111 +msgid "Request date" +msgstr "Data richiesta" + +#: mod/admin.php:1111 mod/admin.php:1123 mod/admin.php:1124 mod/admin.php:1139 +#: include/contact_selectors.php:79 include/contact_selectors.php:86 +msgid "Email" +msgstr "Email" + +#: mod/admin.php:1112 +msgid "No registrations." +msgstr "Nessuna registrazione." + +#: mod/admin.php:1114 +msgid "Deny" +msgstr "Nega" + +#: mod/admin.php:1118 +msgid "Site admin" +msgstr "Amministrazione sito" + +#: mod/admin.php:1119 +msgid "Account expired" +msgstr "Account scaduto" + +#: mod/admin.php:1122 +msgid "New User" +msgstr "Nuovo Utente" + +#: mod/admin.php:1123 mod/admin.php:1124 +msgid "Register date" +msgstr "Data registrazione" + +#: mod/admin.php:1123 mod/admin.php:1124 +msgid "Last login" +msgstr "Ultimo accesso" + +#: mod/admin.php:1123 mod/admin.php:1124 +msgid "Last item" +msgstr "Ultimo elemento" + +#: mod/admin.php:1123 +msgid "Deleted since" +msgstr "Rimosso da" + +#: mod/admin.php:1124 mod/settings.php:41 +msgid "Account" +msgstr "Account" + +#: mod/admin.php:1126 +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:1127 +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:1137 +msgid "Name of the new user." +msgstr "Nome del nuovo utente." + +#: mod/admin.php:1138 +msgid "Nickname" +msgstr "Nome utente" + +#: mod/admin.php:1138 +msgid "Nickname of the new user." +msgstr "Nome utente del nuovo utente." + +#: mod/admin.php:1139 +msgid "Email address of the new user." +msgstr "Indirizzo Email del nuovo utente." + +#: mod/admin.php:1172 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s disabilitato." + +#: mod/admin.php:1176 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s abilitato." + +#: mod/admin.php:1186 mod/admin.php:1410 +msgid "Disable" +msgstr "Disabilita" + +#: mod/admin.php:1188 mod/admin.php:1412 +msgid "Enable" +msgstr "Abilita" + +#: mod/admin.php:1211 mod/admin.php:1456 +msgid "Toggle" +msgstr "Inverti" + +#: mod/admin.php:1219 mod/admin.php:1466 +msgid "Author: " +msgstr "Autore: " + +#: mod/admin.php:1220 mod/admin.php:1467 +msgid "Maintainer: " +msgstr "Manutentore: " + +#: mod/admin.php:1272 +#: view/smarty3/compiled/f835364006028b1061f37be121c9bd9db5fa50a9.file.admin_plugins.tpl.php:42 +msgid "Reload active plugins" +msgstr "Ricarica i plugin attivi" + +#: mod/admin.php:1370 +msgid "No themes found." +msgstr "Nessun tema trovato." + +#: mod/admin.php:1448 +msgid "Screenshot" +msgstr "Anteprima" + +#: mod/admin.php:1508 +msgid "Reload active themes" +msgstr "Ricarica i temi attivi" + +#: mod/admin.php:1512 +msgid "[Experimental]" +msgstr "[Sperimentale]" + +#: mod/admin.php:1513 +msgid "[Unsupported]" +msgstr "[Non supportato]" + +#: mod/admin.php:1540 +msgid "Log settings updated." +msgstr "Impostazioni Log aggiornate." + +#: mod/admin.php:1596 +msgid "Clear" +msgstr "Pulisci" + +#: mod/admin.php:1602 +msgid "Enable Debugging" +msgstr "Abilita Debugging" + +#: mod/admin.php:1603 +msgid "Log file" +msgstr "File di Log" + +#: mod/admin.php:1603 +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:1604 +msgid "Log level" +msgstr "Livello di Log" + +#: mod/admin.php:1654 include/acl_selectors.php:348 +msgid "Close" +msgstr "Chiudi" + +#: mod/admin.php:1660 +msgid "FTP Host" +msgstr "Indirizzo FTP" + +#: mod/admin.php:1661 +msgid "FTP Path" +msgstr "Percorso FTP" + +#: mod/admin.php:1662 +msgid "FTP User" +msgstr "Utente FTP" + +#: mod/admin.php:1663 +msgid "FTP Password" +msgstr "Pasword FTP" + +#: 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/search.php:34 mod/network.php:196 include/features.php:42 +#: mod/network.php:200 mod/search.php:34 include/features.php:79 msgid "Saved Searches" msgstr "Ricerche salvate" -#: mod/search.php:107 include/text.php:996 include/nav.php:119 -msgid "Search" -msgstr "Cerca" +#: mod/network.php:201 include/group.php:293 +msgid "add" +msgstr "aggiungi" -#: mod/search.php:199 mod/community.php:62 mod/community.php:71 +#: mod/network.php:362 +msgid "Commented Order" +msgstr "Ordina per commento" + +#: mod/network.php:365 +msgid "Sort by Comment Date" +msgstr "Ordina per data commento" + +#: mod/network.php:370 +msgid "Posted Order" +msgstr "Ordina per invio" + +#: mod/network.php:373 +msgid "Sort by Post Date" +msgstr "Ordina per data messaggio" + +#: mod/network.php:384 +msgid "Posts that mention or involve you" +msgstr "Messaggi che ti citano o coinvolgono" + +#: mod/network.php:392 +msgid "New" +msgstr "Nuovo" + +#: mod/network.php:395 +msgid "Activity Stream - by date" +msgstr "Activity Stream - per data" + +#: mod/network.php:403 +msgid "Shared Links" +msgstr "Links condivisi" + +#: mod/network.php:406 +msgid "Interesting Links" +msgstr "Link Interessanti" + +#: mod/network.php:414 +msgid "Starred" +msgstr "Preferiti" + +#: mod/network.php:417 +msgid "Favourite Posts" +msgstr "Messaggi preferiti" + +#: mod/network.php:476 +#, 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:479 +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:546 mod/content.php:119 +msgid "No such group" +msgstr "Nessun gruppo" + +#: mod/network.php:574 mod/content.php:135 +#, php-format +msgid "Group: %s" +msgstr "Gruppo: %s" + +#: mod/network.php:606 +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:611 +msgid "Invalid contact." +msgstr "Contatto non valido." + +#: mod/allfriends.php:38 +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:939 include/text.php:1274 +msgid "Sunday" +msgstr "Domenica" + +#: mod/events.php:209 mod/settings.php:939 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:1721 include/text.php:1728 +msgid "link to source" +msgstr "Collegamento all'originale" + +#: mod/events.php:456 include/identity.php:713 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:1217 +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:1997 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "commento" + +#: mod/content.php:608 boot.php:785 object/Item.php:422 +#: include/contact_widgets.php:242 include/forums.php:110 +#: include/items.php:5178 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:784 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:712 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:31 +msgid "Help:" +msgstr "Guida:" + +#: mod/help.php:36 include/nav.php:113 view/theme/vier/theme.php:302 +msgid "Help" +msgstr "Guida" + +#: mod/help.php:42 mod/p.php:16 mod/p.php:25 index.php:269 +msgid "Not Found" +msgstr "Non trovato" + +#: mod/help.php:45 index.php:272 +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:23 +msgid "Not available." +msgstr "Non disponibile." + +#: mod/community.php:32 include/nav.php:136 include/nav.php:138 +#: view/theme/diabook/theme.php:129 +msgid "Community" +msgstr "Comunità" + +#: mod/community.php:62 mod/community.php:71 mod/search.php:228 msgid "No results." msgstr "Nessun risultato." -#: mod/search.php:205 +#: mod/settings.php:34 mod/photos.php:117 +msgid "everybody" +msgstr "tutti" + +#: mod/settings.php:47 +msgid "Additional features" +msgstr "Funzionalità aggiuntive" + +#: mod/settings.php:53 +msgid "Display" +msgstr "Visualizzazione" + +#: mod/settings.php:60 mod/settings.php:855 +msgid "Social Networks" +msgstr "Social Networks" + +#: mod/settings.php:72 include/nav.php:180 +msgid "Delegations" +msgstr "Delegazioni" + +#: mod/settings.php:78 +msgid "Connected apps" +msgstr "Applicazioni collegate" + +#: mod/settings.php:84 mod/uexport.php:85 +msgid "Export personal data" +msgstr "Esporta dati personali" + +#: mod/settings.php:90 +msgid "Remove account" +msgstr "Rimuovi account" + +#: mod/settings.php:143 +msgid "Missing some important data!" +msgstr "Mancano alcuni dati importanti!" + +#: mod/settings.php:256 +msgid "Failed to connect with email account using the settings provided." +msgstr "Impossibile collegarsi all'account email con i parametri forniti." + +#: mod/settings.php:261 +msgid "Email settings updated." +msgstr "Impostazioni e-mail aggiornate." + +#: mod/settings.php:276 +msgid "Features updated" +msgstr "Funzionalità aggiornate" + +#: mod/settings.php:343 +msgid "Relocate message has been send to your contacts" +msgstr "Il messaggio di trasloco è stato inviato ai tuoi contatti" + +#: mod/settings.php:357 include/user.php:39 +msgid "Passwords do not match. Password unchanged." +msgstr "Le password non corrispondono. Password non cambiata." + +#: mod/settings.php:362 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Le password non possono essere vuote. Password non cambiata." + +#: mod/settings.php:370 +msgid "Wrong password." +msgstr "Password sbagliata." + +#: mod/settings.php:381 +msgid "Password changed." +msgstr "Password cambiata." + +#: mod/settings.php:383 +msgid "Password update failed. Please try again." +msgstr "Aggiornamento password fallito. Prova ancora." + +#: mod/settings.php:452 +msgid " Please use a shorter name." +msgstr " Usa un nome più corto." + +#: mod/settings.php:454 +msgid " Name too short." +msgstr " Nome troppo corto." + +#: mod/settings.php:463 +msgid "Wrong Password" +msgstr "Password Sbagliata" + +#: mod/settings.php:468 +msgid " Not valid email." +msgstr " Email non valida." + +#: mod/settings.php:474 +msgid " Cannot change to that email." +msgstr "Non puoi usare quella email." + +#: mod/settings.php:530 +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:534 +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:573 +msgid "Settings updated." +msgstr "Impostazioni aggiornate." + +#: mod/settings.php:649 mod/settings.php:675 mod/settings.php:711 +msgid "Add application" +msgstr "Aggiungi applicazione" + +#: mod/settings.php:653 mod/settings.php:679 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: mod/settings.php:654 mod/settings.php:680 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: mod/settings.php:655 mod/settings.php:681 +msgid "Redirect" +msgstr "Redirect" + +#: mod/settings.php:656 mod/settings.php:682 +msgid "Icon url" +msgstr "Url icona" + +#: mod/settings.php:667 +msgid "You can't edit this application." +msgstr "Non puoi modificare questa applicazione." + +#: mod/settings.php:710 +msgid "Connected Apps" +msgstr "Applicazioni Collegate" + +#: mod/settings.php:714 +msgid "Client key starts with" +msgstr "Chiave del client inizia con" + +#: mod/settings.php:715 +msgid "No name" +msgstr "Nessun nome" + +#: mod/settings.php:716 +msgid "Remove authorization" +msgstr "Rimuovi l'autorizzazione" + +#: mod/settings.php:728 +msgid "No Plugin settings configured" +msgstr "Nessun plugin ha impostazioni modificabili" + +#: mod/settings.php:736 +msgid "Plugin Settings" +msgstr "Impostazioni plugin" + +#: mod/settings.php:750 +msgid "Off" +msgstr "Spento" + +#: mod/settings.php:750 +msgid "On" +msgstr "Acceso" + +#: mod/settings.php:758 +msgid "Additional Features" +msgstr "Funzionalità aggiuntive" + +#: mod/settings.php:768 mod/settings.php:772 +msgid "General Social Media Settings" +msgstr "Impostazioni Media Sociali" + +#: mod/settings.php:778 +msgid "Disable intelligent shortening" +msgstr "Disabilita accorciamento intelligente" + +#: mod/settings.php:780 +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:786 +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:788 +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:797 +msgid "Your legacy GNU Social account" +msgstr "Il tuo vecchio account GNU Social" + +#: mod/settings.php:799 +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:802 +msgid "Repair OStatus subscriptions" +msgstr "Ripara le iscrizioni OStatus" + +#: mod/settings.php:811 mod/settings.php:812 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Il supporto integrato per la connettività con %s è %s" + +#: mod/settings.php:811 mod/dfrn_request.php:858 +#: include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: mod/settings.php:811 mod/settings.php:812 +msgid "enabled" +msgstr "abilitato" + +#: mod/settings.php:811 mod/settings.php:812 +msgid "disabled" +msgstr "disabilitato" + +#: mod/settings.php:812 +msgid "GNU Social (OStatus)" +msgstr "GNU Social (OStatus)" + +#: mod/settings.php:848 +msgid "Email access is disabled on this site." +msgstr "L'accesso email è disabilitato su questo sito." + +#: mod/settings.php:860 +msgid "Email/Mailbox Setup" +msgstr "Impostazioni email" + +#: mod/settings.php:861 +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:862 +msgid "Last successful email check:" +msgstr "Ultimo controllo email eseguito con successo:" + +#: mod/settings.php:864 +msgid "IMAP server name:" +msgstr "Nome server IMAP:" + +#: mod/settings.php:865 +msgid "IMAP port:" +msgstr "Porta IMAP:" + +#: mod/settings.php:866 +msgid "Security:" +msgstr "Sicurezza:" + +#: mod/settings.php:866 mod/settings.php:871 +msgid "None" +msgstr "Nessuna" + +#: mod/settings.php:867 +msgid "Email login name:" +msgstr "Nome utente email:" + +#: mod/settings.php:868 +msgid "Email password:" +msgstr "Password email:" + +#: mod/settings.php:869 +msgid "Reply-to address:" +msgstr "Indirizzo di risposta:" + +#: mod/settings.php:870 +msgid "Send public posts to all email contacts:" +msgstr "Invia i messaggi pubblici ai contatti email:" + +#: mod/settings.php:871 +msgid "Action after import:" +msgstr "Azione post importazione:" + +#: mod/settings.php:871 +msgid "Mark as seen" +msgstr "Segna come letto" + +#: mod/settings.php:871 +msgid "Move to folder" +msgstr "Sposta nella cartella" + +#: mod/settings.php:872 +msgid "Move to folder:" +msgstr "Sposta nella cartella:" + +#: mod/settings.php:958 +msgid "Display Settings" +msgstr "Impostazioni Grafiche" + +#: mod/settings.php:964 mod/settings.php:982 +msgid "Display Theme:" +msgstr "Tema:" + +#: mod/settings.php:965 +msgid "Mobile Theme:" +msgstr "Tema mobile:" + +#: mod/settings.php:966 +msgid "Update browser every xx seconds" +msgstr "Aggiorna il browser ogni x secondi" + +#: mod/settings.php:966 +msgid "Minimum of 10 seconds. Enter -1 to disable it." +msgstr "Minimo 10 secondi. Inserisci -1 per disabilitarlo" + +#: mod/settings.php:967 +msgid "Number of items to display per page:" +msgstr "Numero di elementi da mostrare per pagina:" + +#: mod/settings.php:967 mod/settings.php:968 +msgid "Maximum of 100 items" +msgstr "Massimo 100 voci" + +#: mod/settings.php:968 +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:969 +msgid "Don't show emoticons" +msgstr "Non mostrare le emoticons" + +#: mod/settings.php:970 +msgid "Calendar" +msgstr "Calendario" + +#: mod/settings.php:971 +msgid "Beginning of week:" +msgstr "Inizio della settimana:" + +#: mod/settings.php:972 +msgid "Don't show notices" +msgstr "Non mostrare gli avvisi" + +#: mod/settings.php:973 +msgid "Infinite scroll" +msgstr "Scroll infinito" + +#: mod/settings.php:974 +msgid "Automatic updates only at the top of the network page" +msgstr "Aggiornamenti automatici solo in cima alla pagina \"rete\"" + +#: mod/settings.php:976 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/clean/config.php:85 +#: view/theme/vier/config.php:109 view/theme/duepuntozero/config.php:61 +msgid "Theme settings" +msgstr "Impostazioni tema" + +#: mod/settings.php:1053 +msgid "User Types" +msgstr "Tipi di Utenti" + +#: mod/settings.php:1054 +msgid "Community Types" +msgstr "Tipi di Comunità" + +#: mod/settings.php:1055 +msgid "Normal Account Page" +msgstr "Pagina Account Normale" + +#: mod/settings.php:1056 +msgid "This account is a normal personal profile" +msgstr "Questo account è un normale profilo personale" + +#: mod/settings.php:1059 +msgid "Soapbox Page" +msgstr "Pagina Sandbox" + +#: mod/settings.php:1060 +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:1063 +msgid "Community Forum/Celebrity Account" +msgstr "Account Celebrità/Forum comunitario" + +#: mod/settings.php:1064 +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:1067 +msgid "Automatic Friend Page" +msgstr "Pagina con amicizia automatica" + +#: mod/settings.php:1068 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico" + +#: mod/settings.php:1071 +msgid "Private Forum [Experimental]" +msgstr "Forum privato [sperimentale]" + +#: mod/settings.php:1072 +msgid "Private forum - approved members only" +msgstr "Forum privato - solo membri approvati" + +#: mod/settings.php:1084 +msgid "OpenID:" +msgstr "OpenID:" + +#: mod/settings.php:1084 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" + +#: mod/settings.php:1094 +msgid "Publish your default profile in your local site directory?" +msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" + +#: mod/settings.php:1100 +msgid "Publish your default profile in the global social directory?" +msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" + +#: mod/settings.php:1108 +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:1112 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:1112 +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:1117 +msgid "Allow friends to post to your profile page?" +msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" + +#: mod/settings.php:1123 +msgid "Allow friends to tag your posts?" +msgstr "Permetti agli amici di taggare i tuoi messaggi?" + +#: mod/settings.php:1129 +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:1135 +msgid "Permit unknown people to send you private mail?" +msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" + +#: mod/settings.php:1143 +msgid "Profile is not published." +msgstr "Il profilo non è pubblicato." + +#: mod/settings.php:1151 +#, php-format +msgid "Your Identity Address is '%s' or '%s'." +msgstr "L'indirizzo della tua identità è '%s' or '%s'." + +#: mod/settings.php:1158 +msgid "Automatically expire posts after this many days:" +msgstr "Fai scadere i post automaticamente dopo x giorni:" + +#: mod/settings.php:1158 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." + +#: mod/settings.php:1159 +msgid "Advanced expiration settings" +msgstr "Impostazioni avanzate di scandenza" + +#: mod/settings.php:1160 +msgid "Advanced Expiration" +msgstr "Scadenza avanzata" + +#: mod/settings.php:1161 +msgid "Expire posts:" +msgstr "Fai scadere i post:" + +#: mod/settings.php:1162 +msgid "Expire personal notes:" +msgstr "Fai scadere le Note personali:" + +#: mod/settings.php:1163 +msgid "Expire starred posts:" +msgstr "Fai scadere i post Speciali:" + +#: mod/settings.php:1164 +msgid "Expire photos:" +msgstr "Fai scadere le foto:" + +#: mod/settings.php:1165 +msgid "Only expire posts by others:" +msgstr "Fai scadere solo i post degli altri:" + +#: mod/settings.php:1193 +msgid "Account Settings" +msgstr "Impostazioni account" + +#: mod/settings.php:1201 +msgid "Password Settings" +msgstr "Impostazioni password" + +#: mod/settings.php:1202 mod/register.php:274 +msgid "New Password:" +msgstr "Nuova password:" + +#: mod/settings.php:1203 mod/register.php:275 +msgid "Confirm:" +msgstr "Conferma:" + +#: mod/settings.php:1203 +msgid "Leave password fields blank unless changing" +msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" + +#: mod/settings.php:1204 +msgid "Current Password:" +msgstr "Password Attuale:" + +#: mod/settings.php:1204 mod/settings.php:1205 +msgid "Your current password to confirm the changes" +msgstr "La tua password attuale per confermare le modifiche" + +#: mod/settings.php:1205 +msgid "Password:" +msgstr "Password:" + +#: mod/settings.php:1209 +msgid "Basic Settings" +msgstr "Impostazioni base" + +#: mod/settings.php:1210 include/identity.php:578 +msgid "Full Name:" +msgstr "Nome completo:" + +#: mod/settings.php:1211 +msgid "Email Address:" +msgstr "Indirizzo Email:" + +#: mod/settings.php:1212 +msgid "Your Timezone:" +msgstr "Il tuo fuso orario:" + +#: mod/settings.php:1213 +msgid "Your Language:" +msgstr "La tua lingua:" + +#: mod/settings.php:1213 +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:1214 +msgid "Default Post Location:" +msgstr "Località predefinita:" + +#: mod/settings.php:1215 +msgid "Use Browser Location:" +msgstr "Usa la località rilevata dal browser:" + +#: mod/settings.php:1218 +msgid "Security and Privacy Settings" +msgstr "Impostazioni di sicurezza e privacy" + +#: mod/settings.php:1220 +msgid "Maximum Friend Requests/Day:" +msgstr "Numero massimo di richieste di amicizia al giorno:" + +#: mod/settings.php:1220 mod/settings.php:1250 +msgid "(to prevent spam abuse)" +msgstr "(per prevenire lo spam)" + +#: mod/settings.php:1221 +msgid "Default Post Permissions" +msgstr "Permessi predefiniti per i messaggi" + +#: mod/settings.php:1222 +msgid "(click to open/close)" +msgstr "(clicca per aprire/chiudere)" + +#: mod/settings.php:1231 mod/photos.php:1199 mod/photos.php:1584 +msgid "Show to Groups" +msgstr "Mostra ai gruppi" + +#: mod/settings.php:1232 mod/photos.php:1200 mod/photos.php:1585 +msgid "Show to Contacts" +msgstr "Mostra ai contatti" + +#: mod/settings.php:1233 +msgid "Default Private Post" +msgstr "Default Post Privato" + +#: mod/settings.php:1234 +msgid "Default Public Post" +msgstr "Default Post Pubblico" + +#: mod/settings.php:1238 +msgid "Default Permissions for New Posts" +msgstr "Permessi predefiniti per i nuovi post" + +#: mod/settings.php:1250 +msgid "Maximum private messages per day from unknown people:" +msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" + +#: mod/settings.php:1253 +msgid "Notification Settings" +msgstr "Impostazioni notifiche" + +#: mod/settings.php:1254 +msgid "By default post a status message when:" +msgstr "Invia un messaggio di stato quando:" + +#: mod/settings.php:1255 +msgid "accepting a friend request" +msgstr "accetti una richiesta di amicizia" + +#: mod/settings.php:1256 +msgid "joining a forum/community" +msgstr "ti unisci a un forum/comunità" + +#: mod/settings.php:1257 +msgid "making an interesting profile change" +msgstr "fai un interessante modifica al profilo" + +#: mod/settings.php:1258 +msgid "Send a notification email when:" +msgstr "Invia una mail di notifica quando:" + +#: mod/settings.php:1259 +msgid "You receive an introduction" +msgstr "Ricevi una presentazione" + +#: mod/settings.php:1260 +msgid "Your introductions are confirmed" +msgstr "Le tue presentazioni sono confermate" + +#: mod/settings.php:1261 +msgid "Someone writes on your profile wall" +msgstr "Qualcuno scrive sulla bacheca del tuo profilo" + +#: mod/settings.php:1262 +msgid "Someone writes a followup comment" +msgstr "Qualcuno scrive un commento a un tuo messaggio" + +#: mod/settings.php:1263 +msgid "You receive a private message" +msgstr "Ricevi un messaggio privato" + +#: mod/settings.php:1264 +msgid "You receive a friend suggestion" +msgstr "Hai ricevuto un suggerimento di amicizia" + +#: mod/settings.php:1265 +msgid "You are tagged in a post" +msgstr "Sei stato taggato in un post" + +#: mod/settings.php:1266 +msgid "You are poked/prodded/etc. in a post" +msgstr "Sei 'toccato'/'spronato'/ecc. in un post" + +#: mod/settings.php:1268 +msgid "Activate desktop notifications" +msgstr "Attiva notifiche desktop" + +#: mod/settings.php:1268 +msgid "Show desktop popup on new notifications" +msgstr "Mostra un popup di notifica sul desktop all'arrivo di nuove notifiche" + +#: mod/settings.php:1270 +msgid "Text-only notification emails" +msgstr "Email di notifica in solo testo" + +#: mod/settings.php:1272 +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:1274 +msgid "Advanced Account/Page Type Settings" +msgstr "Impostazioni avanzate Account/Tipo di pagina" + +#: mod/settings.php:1275 +msgid "Change the behaviour of this account for special situations" +msgstr "Modifica il comportamento di questo account in situazioni speciali" + +#: mod/settings.php:1278 +msgid "Relocate" +msgstr "Trasloca" + +#: mod/settings.php:1279 +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:1280 +msgid "Resend relocate message to contacts" +msgstr "Reinvia il messaggio di trasloco" + +#: mod/dfrn_request.php:95 +msgid "This introduction has already been accepted." +msgstr "Questa presentazione è già stata accettata." + +#: mod/dfrn_request.php:120 mod/dfrn_request.php:519 +msgid "Profile location is not valid or does not contain profile information." +msgstr "L'indirizzo del profilo non è valido o non contiene un profilo." + +#: mod/dfrn_request.php:125 mod/dfrn_request.php:524 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario." + +#: mod/dfrn_request.php:127 mod/dfrn_request.php:526 +msgid "Warning: profile location has no profile photo." +msgstr "Attenzione: l'indirizzo del profilo non ha una foto." + +#: mod/dfrn_request.php:130 mod/dfrn_request.php:529 +#, 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:173 +msgid "Introduction complete." +msgstr "Presentazione completa." + +#: mod/dfrn_request.php:215 +msgid "Unrecoverable protocol error." +msgstr "Errore di comunicazione." + +#: mod/dfrn_request.php:243 +msgid "Profile unavailable." +msgstr "Profilo non disponibile." + +#: mod/dfrn_request.php:268 +#, 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:269 +msgid "Spam protection measures have been invoked." +msgstr "Sono state attivate le misure di protezione contro lo spam." + +#: mod/dfrn_request.php:270 +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:332 +msgid "Invalid locator" +msgstr "Invalid locator" + +#: mod/dfrn_request.php:341 +msgid "Invalid email address." +msgstr "Indirizzo email non valido." + +#: mod/dfrn_request.php:368 +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:464 +msgid "Unable to resolve your name at the provided location." +msgstr "Impossibile risolvere il tuo nome nella posizione indicata." + +#: mod/dfrn_request.php:477 +msgid "You have already introduced yourself here." +msgstr "Ti sei già presentato qui." + +#: mod/dfrn_request.php:481 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Pare che tu e %s siate già amici." + +#: mod/dfrn_request.php:502 +msgid "Invalid profile URL." +msgstr "Indirizzo profilo non valido." + +#: mod/dfrn_request.php:508 include/follow.php:72 +msgid "Disallowed profile URL." +msgstr "Indirizzo profilo non permesso." + +#: mod/dfrn_request.php:599 +msgid "Your introduction has been sent." +msgstr "La tua presentazione è stata inviata." + +#: mod/dfrn_request.php:652 +msgid "Please login to confirm introduction." +msgstr "Accedi per confermare la presentazione." + +#: mod/dfrn_request.php:662 +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:676 mod/dfrn_request.php:693 +msgid "Confirm" +msgstr "Conferma" + +#: mod/dfrn_request.php:688 +msgid "Hide this contact" +msgstr "Nascondi questo contatto" + +#: mod/dfrn_request.php:691 +#, php-format +msgid "Welcome home %s." +msgstr "Bentornato a casa %s." + +#: mod/dfrn_request.php:692 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Conferma la tua richiesta di connessione con %s." + +#: mod/dfrn_request.php:821 +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:842 +#, 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:847 +msgid "Friend/Connection Request" +msgstr "Richieste di amicizia/connessione" + +#: mod/dfrn_request.php:848 +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:856 include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: mod/dfrn_request.php:857 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: mod/dfrn_request.php:859 +#, 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:1268 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:207 +#: mod/search.php:236 #, php-format msgid "Search results for: %s" msgstr "Risultato della ricerca per: %s" +#: mod/directory.php:149 include/identity.php:309 include/identity.php:600 +msgid "Status:" +msgstr "Stato:" + +#: mod/directory.php:151 include/identity.php:311 include/identity.php:611 +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:87 +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:609 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" + +#: mod/profiles.php:725 +msgid "Homepage URL:" +msgstr "Homepage:" + +#: mod/profiles.php:726 include/identity.php:613 +msgid "Hometown:" +msgstr "Paese natale:" + +#: mod/profiles.php:727 include/identity.php:617 +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:625 +msgid "Likes:" +msgstr "Mi piace:" + +#: mod/profiles.php:732 include/identity.php:627 +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:257 include/identity.php:283 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" + +#: mod/profiles.php:815 include/identity.php:258 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" + +#: mod/profiles.php:826 include/identity.php:268 +msgid "Profile Image" +msgstr "Immagine del Profilo" + +#: mod/profiles.php:828 include/identity.php:271 +msgid "visible to everybody" +msgstr "visibile a tutti" + +#: mod/profiles.php:829 include/identity.php:272 +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:1185 +msgid "upload photo" +msgstr "carica foto" + +#: mod/editpost.php:112 include/conversation.php:1186 +msgid "Attach file" +msgstr "Allega file" + +#: mod/editpost.php:113 include/conversation.php:1187 +msgid "attach file" +msgstr "allega file" + +#: mod/editpost.php:115 include/conversation.php:1189 +msgid "web link" +msgstr "link web" + +#: mod/editpost.php:116 include/conversation.php:1190 +msgid "Insert video link" +msgstr "Inserire collegamento video" + +#: mod/editpost.php:117 include/conversation.php:1191 +msgid "video link" +msgstr "link video" + +#: mod/editpost.php:118 include/conversation.php:1192 +msgid "Insert audio link" +msgstr "Inserisci collegamento audio" + +#: mod/editpost.php:119 include/conversation.php:1193 +msgid "audio link" +msgstr "link audio" + +#: mod/editpost.php:120 include/conversation.php:1194 +msgid "Set your location" +msgstr "La tua posizione" + +#: mod/editpost.php:121 include/conversation.php:1195 +msgid "set location" +msgstr "posizione" + +#: mod/editpost.php:122 include/conversation.php:1196 +msgid "Clear browser location" +msgstr "Rimuovi la localizzazione data dal browser" + +#: mod/editpost.php:123 include/conversation.php:1197 +msgid "clear location" +msgstr "canc. pos." + +#: mod/editpost.php:125 include/conversation.php:1203 +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:1212 +msgid "Public post" +msgstr "Messaggio pubblico" + +#: mod/editpost.php:137 include/conversation.php:1199 +msgid "Set title" +msgstr "Scegli un titolo" + +#: mod/editpost.php:139 include/conversation.php:1201 +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:59 +msgid "This is Friendica, version" +msgstr "Questo è Friendica, versione" + +#: mod/friendica.php:60 +msgid "running at web location" +msgstr "in esecuzione all'indirizzo web" + +#: mod/friendica.php:62 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." + +#: mod/friendica.php:64 +msgid "Bug reports and issues: please visit" +msgstr "Segnalazioni di bug e problemi: visita" + +#: mod/friendica.php:64 +msgid "the bugtracker at github" +msgstr "il bugtracker su github" + +#: mod/friendica.php:65 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggerimenti, lodi, donazioni, ecc - e-mail a \"Info\" at Friendica punto com" + +#: mod/friendica.php:79 +msgid "Installed plugins/addons/apps:" +msgstr "Plugin/addon/applicazioni instalate" + +#: mod/friendica.php:92 +msgid "No installed plugins/addons/apps" +msgstr "Nessun plugin/addons/applicazione installata" + +#: mod/api.php:76 mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizza la connessione dell'applicazione" + +#: mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:" + +#: mod/api.php:89 +msgid "Please login to continue." +msgstr "Effettua il login per continuare." + +#: mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?" + +#: mod/lockview.php:31 mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informazioni remote sulla privacy non disponibili." + +#: mod/lockview.php:48 +msgid "Visible to:" +msgstr "Visibile a:" + +#: mod/notes.php:46 include/identity.php:721 +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 "Resubsribing to OStatus contacts" +msgstr "Reiscrizione a contatti OStatus" + +#: mod/repair_ostatus.php:30 +msgid "Error" +msgstr "Errore" + #: mod/invite.php:27 msgid "Total invitation limit exceeded." msgstr "Limite totale degli inviti superato." @@ -3846,1754 +5882,204 @@ msgid "" "important, please visit http://friendica.com" msgstr "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com" -#: mod/settings.php:47 -msgid "Additional features" -msgstr "Funzionalità aggiuntive" +#: mod/photos.php:99 include/identity.php:696 +msgid "Photo Albums" +msgstr "Album foto" -#: mod/settings.php:53 -msgid "Display" -msgstr "Visualizzazione" +#: mod/photos.php:100 mod/photos.php:1899 +msgid "Recent Photos" +msgstr "Foto recenti" -#: mod/settings.php:60 mod/settings.php:837 -msgid "Social Networks" -msgstr "Social Networks" +#: mod/photos.php:103 mod/photos.php:1320 mod/photos.php:1901 +msgid "Upload New Photos" +msgstr "Carica nuove foto" -#: mod/settings.php:72 include/nav.php:179 -msgid "Delegations" -msgstr "Delegazioni" +#: mod/photos.php:181 +msgid "Contact information unavailable" +msgstr "I dati di questo contatto non sono disponibili" -#: mod/settings.php:78 -msgid "Connected apps" -msgstr "Applicazioni collegate" +#: mod/photos.php:202 +msgid "Album not found." +msgstr "Album non trovato." -#: mod/settings.php:84 mod/uexport.php:85 -msgid "Export personal data" -msgstr "Esporta dati personali" +#: mod/photos.php:232 mod/photos.php:244 mod/photos.php:1262 +msgid "Delete Album" +msgstr "Rimuovi album" -#: mod/settings.php:90 -msgid "Remove account" -msgstr "Rimuovi account" +#: 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/settings.php:143 -msgid "Missing some important data!" -msgstr "Mancano alcuni dati importanti!" +#: mod/photos.php:322 mod/photos.php:333 mod/photos.php:1580 +msgid "Delete Photo" +msgstr "Rimuovi foto" -#: mod/settings.php:256 -msgid "Failed to connect with email account using the settings provided." -msgstr "Impossibile collegarsi all'account email con i parametri forniti." +#: mod/photos.php:331 +msgid "Do you really want to delete this photo?" +msgstr "Vuoi veramente cancellare questa foto?" -#: mod/settings.php:261 -msgid "Email settings updated." -msgstr "Impostazioni e-mail aggiornate." - -#: mod/settings.php:276 -msgid "Features updated" -msgstr "Funzionalità aggiornate" - -#: mod/settings.php:339 -msgid "Relocate message has been send to your contacts" -msgstr "Il messaggio di trasloco è stato inviato ai tuoi contatti" - -#: mod/settings.php:353 include/user.php:39 -msgid "Passwords do not match. Password unchanged." -msgstr "Le password non corrispondono. Password non cambiata." - -#: mod/settings.php:358 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Le password non possono essere vuote. Password non cambiata." - -#: mod/settings.php:366 -msgid "Wrong password." -msgstr "Password sbagliata." - -#: mod/settings.php:377 -msgid "Password changed." -msgstr "Password cambiata." - -#: mod/settings.php:379 -msgid "Password update failed. Please try again." -msgstr "Aggiornamento password fallito. Prova ancora." - -#: mod/settings.php:446 -msgid " Please use a shorter name." -msgstr " Usa un nome più corto." - -#: mod/settings.php:448 -msgid " Name too short." -msgstr " Nome troppo corto." - -#: mod/settings.php:457 -msgid "Wrong Password" -msgstr "Password Sbagliata" - -#: mod/settings.php:462 -msgid " Not valid email." -msgstr " Email non valida." - -#: mod/settings.php:468 -msgid " Cannot change to that email." -msgstr "Non puoi usare quella email." - -#: mod/settings.php:524 -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:528 -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:558 -msgid "Settings updated." -msgstr "Impostazioni aggiornate." - -#: mod/settings.php:631 mod/settings.php:657 mod/settings.php:693 -msgid "Add application" -msgstr "Aggiungi applicazione" - -#: 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 "Redirect" - -#: mod/settings.php:638 mod/settings.php:664 -msgid "Icon url" -msgstr "Url icona" - -#: mod/settings.php:649 -msgid "You can't edit this application." -msgstr "Non puoi modificare questa applicazione." - -#: mod/settings.php:692 -msgid "Connected Apps" -msgstr "Applicazioni Collegate" - -#: mod/settings.php:696 -msgid "Client key starts with" -msgstr "Chiave del client inizia con" - -#: mod/settings.php:697 -msgid "No name" -msgstr "Nessun nome" - -#: mod/settings.php:698 -msgid "Remove authorization" -msgstr "Rimuovi l'autorizzazione" - -#: mod/settings.php:710 -msgid "No Plugin settings configured" -msgstr "Nessun plugin ha impostazioni modificabili" - -#: mod/settings.php:718 -msgid "Plugin Settings" -msgstr "Impostazioni plugin" - -#: mod/settings.php:732 -msgid "Off" -msgstr "Spento" - -#: mod/settings.php:732 -msgid "On" -msgstr "Acceso" - -#: mod/settings.php:740 -msgid "Additional Features" -msgstr "Funzionalità aggiuntive" - -#: mod/settings.php:750 mod/settings.php:754 -msgid "General Social Media Settings" -msgstr "Impostazioni Media Sociali" - -#: mod/settings.php:760 -msgid "Disable intelligent shortening" -msgstr "Disabilita accorciamento intelligente" - -#: 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 "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:768 -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: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 "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:779 -msgid "Your legacy GNU Social account" -msgstr "" - -#: mod/settings.php:781 -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:784 -msgid "Repair OStatus subscriptions" -msgstr "" - -#: mod/settings.php:793 mod/settings.php:794 +#: mod/photos.php:706 #, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Il supporto integrato per la connettività con %s è %s" +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s è stato taggato in %2$s da %3$s" -#: mod/settings.php:793 mod/settings.php:794 -msgid "enabled" -msgstr "abilitato" +#: mod/photos.php:706 +msgid "a photo" +msgstr "una foto" -#: mod/settings.php:793 mod/settings.php:794 -msgid "disabled" -msgstr "disabilitato" +#: mod/photos.php:819 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." -#: mod/settings.php:794 -msgid "GNU Social (OStatus)" -msgstr "GNU Social (OStatus)" +#: mod/photos.php:986 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" -#: mod/settings.php:830 -msgid "Email access is disabled on this site." -msgstr "L'accesso email è disabilitato su questo sito." - -#: mod/settings.php:842 -msgid "Email/Mailbox Setup" -msgstr "Impostazioni email" - -#: mod/settings.php:843 -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:844 -msgid "Last successful email check:" -msgstr "Ultimo controllo email eseguito con successo:" - -#: mod/settings.php:846 -msgid "IMAP server name:" -msgstr "Nome server IMAP:" - -#: mod/settings.php:847 -msgid "IMAP port:" -msgstr "Porta IMAP:" - -#: mod/settings.php:848 -msgid "Security:" -msgstr "Sicurezza:" - -#: mod/settings.php:848 mod/settings.php:853 -msgid "None" -msgstr "Nessuna" - -#: mod/settings.php:849 -msgid "Email login name:" -msgstr "Nome utente email:" - -#: mod/settings.php:850 -msgid "Email password:" -msgstr "Password email:" - -#: mod/settings.php:851 -msgid "Reply-to address:" -msgstr "Indirizzo di risposta:" - -#: mod/settings.php:852 -msgid "Send public posts to all email contacts:" -msgstr "Invia i messaggi pubblici ai contatti email:" - -#: mod/settings.php:853 -msgid "Action after import:" -msgstr "Azione post importazione:" - -#: mod/settings.php:853 -msgid "Mark as seen" -msgstr "Segna come letto" - -#: mod/settings.php:853 -msgid "Move to folder" -msgstr "Sposta nella cartella" - -#: mod/settings.php:854 -msgid "Move to folder:" -msgstr "Sposta nella cartella:" - -#: mod/settings.php:935 -msgid "Display Settings" -msgstr "Impostazioni Grafiche" - -#: mod/settings.php:941 mod/settings.php:957 -msgid "Display Theme:" -msgstr "Tema:" - -#: mod/settings.php:942 -msgid "Mobile Theme:" -msgstr "Tema mobile:" - -#: mod/settings.php:943 -msgid "Update browser every xx seconds" -msgstr "Aggiorna il browser ogni x secondi" - -#: mod/settings.php:943 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimo 10 secondi, nessun limite massimo" - -#: mod/settings.php:944 -msgid "Number of items to display per page:" -msgstr "Numero di elementi da mostrare per pagina:" - -#: mod/settings.php:944 mod/settings.php:945 -msgid "Maximum of 100 items" -msgstr "Massimo 100 voci" - -#: mod/settings.php:945 -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:946 -msgid "Don't show emoticons" -msgstr "Non mostrare le emoticons" - -#: mod/settings.php:947 -msgid "Don't show notices" -msgstr "Non mostrare gli avvisi" - -#: mod/settings.php:948 -msgid "Infinite scroll" -msgstr "Scroll infinito" - -#: mod/settings.php:949 -msgid "Automatic updates only at the top of the network page" -msgstr "Aggiornamenti automatici solo in cima alla pagina \"rete\"" - -#: mod/settings.php:951 view/theme/diabook/config.php:150 -#: view/theme/vier/config.php:58 view/theme/dispy/config.php:72 -#: view/theme/duepuntozero/config.php:61 view/theme/quattro/config.php:66 -#: view/theme/cleanzero/config.php:82 -msgid "Theme settings" -msgstr "Impostazioni tema" - -#: mod/settings.php:1027 -msgid "User Types" -msgstr "Tipi di Utenti" - -#: mod/settings.php:1028 -msgid "Community Types" -msgstr "Tipi di Comunità" - -#: mod/settings.php:1029 -msgid "Normal Account Page" -msgstr "Pagina Account Normale" - -#: mod/settings.php:1030 -msgid "This account is a normal personal profile" -msgstr "Questo account è un normale profilo personale" - -#: mod/settings.php:1033 -msgid "Soapbox Page" -msgstr "Pagina Sandbox" - -#: mod/settings.php:1034 -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:1037 -msgid "Community Forum/Celebrity Account" -msgstr "Account Celebrità/Forum comunitario" - -#: mod/settings.php:1038 -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:1041 -msgid "Automatic Friend Page" -msgstr "Pagina con amicizia automatica" - -#: mod/settings.php:1042 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico" - -#: mod/settings.php:1045 -msgid "Private Forum [Experimental]" -msgstr "Forum privato [sperimentale]" - -#: mod/settings.php:1046 -msgid "Private forum - approved members only" -msgstr "Forum privato - solo membri approvati" - -#: mod/settings.php:1058 -msgid "OpenID:" -msgstr "OpenID:" - -#: mod/settings.php:1058 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" - -#: mod/settings.php:1068 -msgid "Publish your default profile in your local site directory?" -msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" - -#: mod/settings.php:1074 -msgid "Publish your default profile in the global social directory?" -msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" - -#: mod/settings.php:1082 -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:1086 include/acl_selectors.php:330 -msgid "Hide your profile details from unknown viewers?" -msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?" - -#: mod/settings.php:1086 -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:1091 -msgid "Allow friends to post to your profile page?" -msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" - -#: mod/settings.php:1097 -msgid "Allow friends to tag your posts?" -msgstr "Permetti agli amici di taggare i tuoi messaggi?" - -#: mod/settings.php:1103 -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:1109 -msgid "Permit unknown people to send you private mail?" -msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?" - -#: mod/settings.php:1117 -msgid "Profile is not published." -msgstr "Il profilo non è pubblicato." - -#: mod/settings.php:1125 +#: mod/photos.php:1147 #, php-format -msgid "Your Identity Address is '%s' or '%s'." -msgstr "L'indirizzo della tua identità è '%s' or '%s'." +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili." -#: mod/settings.php:1132 -msgid "Automatically expire posts after this many days:" -msgstr "Fai scadere i post automaticamente dopo x giorni:" +#: mod/photos.php:1182 +msgid "Upload Photos" +msgstr "Carica foto" -#: mod/settings.php:1132 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." +#: mod/photos.php:1186 mod/photos.php:1257 +msgid "New album name: " +msgstr "Nome nuovo album: " -#: mod/settings.php:1133 -msgid "Advanced expiration settings" -msgstr "Impostazioni avanzate di scandenza" +#: mod/photos.php:1187 +msgid "or existing album name: " +msgstr "o nome di un album esistente: " -#: mod/settings.php:1134 -msgid "Advanced Expiration" -msgstr "Scadenza avanzata" +#: mod/photos.php:1188 +msgid "Do not show a status post for this upload" +msgstr "Non creare un post per questo upload" -#: mod/settings.php:1135 -msgid "Expire posts:" -msgstr "Fai scadere i post:" +#: mod/photos.php:1190 mod/photos.php:1575 include/acl_selectors.php:347 +msgid "Permissions" +msgstr "Permessi" -#: mod/settings.php:1136 -msgid "Expire personal notes:" -msgstr "Fai scadere le Note personali:" +#: mod/photos.php:1201 +msgid "Private Photo" +msgstr "Foto privata" -#: mod/settings.php:1137 -msgid "Expire starred posts:" -msgstr "Fai scadere i post Speciali:" +#: mod/photos.php:1202 +msgid "Public Photo" +msgstr "Foto pubblica" -#: mod/settings.php:1138 -msgid "Expire photos:" -msgstr "Fai scadere le foto:" +#: mod/photos.php:1270 +msgid "Edit Album" +msgstr "Modifica album" -#: mod/settings.php:1139 -msgid "Only expire posts by others:" -msgstr "Fai scadere solo i post degli altri:" +#: mod/photos.php:1276 +msgid "Show Newest First" +msgstr "Mostra nuove foto per prime" -#: mod/settings.php:1165 -msgid "Account Settings" -msgstr "Impostazioni account" +#: mod/photos.php:1278 +msgid "Show Oldest First" +msgstr "Mostra vecchie foto per prime" -#: mod/settings.php:1173 -msgid "Password Settings" -msgstr "Impostazioni password" +#: mod/photos.php:1306 mod/photos.php:1884 +msgid "View Photo" +msgstr "Vedi foto" -#: mod/settings.php:1175 -msgid "Leave password fields blank unless changing" -msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" +#: 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/settings.php:1176 -msgid "Current Password:" -msgstr "Password Attuale:" +#: mod/photos.php:1355 +msgid "Photo not available" +msgstr "Foto non disponibile" -#: mod/settings.php:1176 mod/settings.php:1177 -msgid "Your current password to confirm the changes" -msgstr "La tua password attuale per confermare le modifiche" +#: mod/photos.php:1411 +msgid "View photo" +msgstr "Vedi foto" -#: mod/settings.php:1177 -msgid "Password:" -msgstr "Password:" +#: mod/photos.php:1411 +msgid "Edit photo" +msgstr "Modifica foto" -#: mod/settings.php:1181 -msgid "Basic Settings" -msgstr "Impostazioni base" +#: mod/photos.php:1412 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" -#: mod/settings.php:1182 include/identity.php:539 -msgid "Full Name:" -msgstr "Nome completo:" +#: mod/photos.php:1437 +msgid "View Full Size" +msgstr "Vedi dimensione intera" -#: mod/settings.php:1183 -msgid "Email Address:" -msgstr "Indirizzo Email:" +#: mod/photos.php:1523 +msgid "Tags: " +msgstr "Tag: " -#: mod/settings.php:1184 -msgid "Your Timezone:" -msgstr "Il tuo fuso orario:" +#: mod/photos.php:1526 +msgid "[Remove any tag]" +msgstr "[Rimuovi tutti i tag]" -#: mod/settings.php:1185 -msgid "Default Post Location:" -msgstr "Località predefinita:" +#: mod/photos.php:1566 +msgid "New album name" +msgstr "Nuovo nome dell'album" -#: mod/settings.php:1186 -msgid "Use Browser Location:" -msgstr "Usa la località rilevata dal browser:" +#: mod/photos.php:1567 +msgid "Caption" +msgstr "Titolo" -#: mod/settings.php:1189 -msgid "Security and Privacy Settings" -msgstr "Impostazioni di sicurezza e privacy" +#: mod/photos.php:1568 +msgid "Add a Tag" +msgstr "Aggiungi tag" -#: mod/settings.php:1191 -msgid "Maximum Friend Requests/Day:" -msgstr "Numero massimo di richieste di amicizia al giorno:" - -#: mod/settings.php:1191 mod/settings.php:1221 -msgid "(to prevent spam abuse)" -msgstr "(per prevenire lo spam)" - -#: mod/settings.php:1192 -msgid "Default Post Permissions" -msgstr "Permessi predefiniti per i messaggi" - -#: mod/settings.php:1193 -msgid "(click to open/close)" -msgstr "(clicca per aprire/chiudere)" - -#: mod/settings.php:1204 -msgid "Default Private Post" -msgstr "Default Post Privato" - -#: mod/settings.php:1205 -msgid "Default Public Post" -msgstr "Default Post Pubblico" - -#: mod/settings.php:1209 -msgid "Default Permissions for New Posts" -msgstr "Permessi predefiniti per i nuovi post" - -#: mod/settings.php:1221 -msgid "Maximum private messages per day from unknown people:" -msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:" - -#: mod/settings.php:1224 -msgid "Notification Settings" -msgstr "Impostazioni notifiche" - -#: mod/settings.php:1225 -msgid "By default post a status message when:" -msgstr "Invia un messaggio di stato quando:" - -#: mod/settings.php:1226 -msgid "accepting a friend request" -msgstr "accetti una richiesta di amicizia" - -#: mod/settings.php:1227 -msgid "joining a forum/community" -msgstr "ti unisci a un forum/comunità" - -#: mod/settings.php:1228 -msgid "making an interesting profile change" -msgstr "fai un interessante modifica al profilo" - -#: mod/settings.php:1229 -msgid "Send a notification email when:" -msgstr "Invia una mail di notifica quando:" - -#: mod/settings.php:1230 -msgid "You receive an introduction" -msgstr "Ricevi una presentazione" - -#: mod/settings.php:1231 -msgid "Your introductions are confirmed" -msgstr "Le tue presentazioni sono confermate" - -#: mod/settings.php:1232 -msgid "Someone writes on your profile wall" -msgstr "Qualcuno scrive sulla bacheca del tuo profilo" - -#: mod/settings.php:1233 -msgid "Someone writes a followup comment" -msgstr "Qualcuno scrive un commento a un tuo messaggio" - -#: mod/settings.php:1234 -msgid "You receive a private message" -msgstr "Ricevi un messaggio privato" - -#: mod/settings.php:1235 -msgid "You receive a friend suggestion" -msgstr "Hai ricevuto un suggerimento di amicizia" - -#: mod/settings.php:1236 -msgid "You are tagged in a post" -msgstr "Sei stato taggato in un post" - -#: mod/settings.php:1237 -msgid "You are poked/prodded/etc. in a post" -msgstr "Sei 'toccato'/'spronato'/ecc. in un post" - -#: mod/settings.php:1239 -msgid "Activate desktop notifications" -msgstr "Attiva notifiche desktop" - -#: mod/settings.php:1239 -msgid "Show desktop popup on new notifications" -msgstr "Mostra un popup di notifica sul desktop all'arrivo di nuove notifiche" - -#: mod/settings.php:1241 -msgid "Text-only notification emails" -msgstr "Email di notifica in solo testo" - -#: mod/settings.php:1243 -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:1245 -msgid "Advanced Account/Page Type Settings" -msgstr "Impostazioni avanzate Account/Tipo di pagina" - -#: mod/settings.php:1246 -msgid "Change the behaviour of this account for special situations" -msgstr "Modifica il comportamento di questo account in situazioni speciali" - -#: mod/settings.php:1249 -msgid "Relocate" -msgstr "Trasloca" - -#: mod/settings.php:1250 +#: mod/photos.php:1568 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:1251 -msgid "Resend relocate message to contacts" -msgstr "Reinvia il messaggio di trasloco" - -#: mod/display.php:505 -msgid "Item has been removed." -msgstr "L'oggetto è stato rimosso." - -#: mod/dirfind.php:36 -#, php-format -msgid "People Search - %s" -msgstr "Cerca persone - %s" - -#: mod/dirfind.php:125 mod/suggest.php:92 mod/match.php:70 -#: include/identity.php:188 include/contact_widgets.php:10 -msgid "Connect" -msgstr "Connetti" - -#: mod/dirfind.php:141 mod/match.php:77 -msgid "No matches" -msgstr "Nessun risultato" - -#: 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 -msgid "Likes" -msgstr "Mi piace" - -#: mod/profiles.php:348 -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:695 -msgid "Interests" -msgstr "Interessi" - -#: mod/profiles.php:379 -msgid "Address" -msgstr "Indirizzo" - -#: mod/profiles.php:386 mod/profiles.php:691 -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:682 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" - -#: mod/profiles.php:684 -msgid "Change Profile Photo" -msgstr "Cambia la foto del profilo" - -#: mod/profiles.php:685 -msgid "View this profile" -msgstr "Visualizza questo profilo" - -#: mod/profiles.php:686 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" - -#: mod/profiles.php:687 -msgid "Clone this profile" -msgstr "Clona questo profilo" - -#: mod/profiles.php:688 -msgid "Delete this profile" -msgstr "Elimina questo profilo" - -#: mod/profiles.php:689 -msgid "Basic information" -msgstr "Informazioni di base" - -#: mod/profiles.php:690 -msgid "Profile picture" -msgstr "Immagine del profilo" - -#: mod/profiles.php:692 -msgid "Preferences" -msgstr "Preferenze" - -#: mod/profiles.php:693 -msgid "Status information" -msgstr "Informazioni stato" - -#: mod/profiles.php:694 -msgid "Additional information" -msgstr "Informazioni aggiuntive" - -#: mod/profiles.php:697 -msgid "Profile Name:" -msgstr "Nome del profilo:" - -#: mod/profiles.php:698 -msgid "Your Full Name:" -msgstr "Il tuo nome completo:" - -#: mod/profiles.php:699 -msgid "Title/Description:" -msgstr "Breve descrizione (es. titolo, posizione, altro):" - -#: mod/profiles.php:700 -msgid "Your Gender:" -msgstr "Il tuo sesso:" - -#: mod/profiles.php:701 -msgid "Birthday :" -msgstr "Compleanno:" - -#: mod/profiles.php:702 -msgid "Street Address:" -msgstr "Indirizzo (via/piazza):" - -#: mod/profiles.php:703 -msgid "Locality/City:" -msgstr "Località:" - -#: mod/profiles.php:704 -msgid "Postal/Zip Code:" -msgstr "CAP:" - -#: mod/profiles.php:705 -msgid "Country:" -msgstr "Nazione:" - -#: mod/profiles.php:706 -msgid "Region/State:" -msgstr "Regione/Stato:" - -#: mod/profiles.php:707 -msgid " Marital Status:" -msgstr " Stato sentimentale:" - -#: mod/profiles.php:708 -msgid "Who: (if applicable)" -msgstr "Con chi: (se possibile)" - -#: mod/profiles.php:709 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" - -#: mod/profiles.php:710 -msgid "Since [date]:" -msgstr "Dal [data]:" - -#: mod/profiles.php:711 include/identity.php:570 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" - -#: mod/profiles.php:712 -msgid "Homepage URL:" -msgstr "Homepage:" - -#: mod/profiles.php:713 include/identity.php:574 -msgid "Hometown:" -msgstr "Paese natale:" - -#: mod/profiles.php:714 include/identity.php:578 -msgid "Political Views:" -msgstr "Orientamento politico:" - -#: mod/profiles.php:715 -msgid "Religious Views:" -msgstr "Orientamento religioso:" - -#: mod/profiles.php:716 -msgid "Public Keywords:" -msgstr "Parole chiave visibili a tutti:" - -#: mod/profiles.php:717 -msgid "Private Keywords:" -msgstr "Parole chiave private:" - -#: mod/profiles.php:718 include/identity.php:586 -msgid "Likes:" -msgstr "Mi piace:" - -#: mod/profiles.php:719 include/identity.php:588 -msgid "Dislikes:" -msgstr "Non mi piace:" - -#: mod/profiles.php:720 -msgid "Example: fishing photography software" -msgstr "Esempio: pesca fotografia programmazione" - -#: mod/profiles.php:721 -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:722 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" - -#: mod/profiles.php:723 -msgid "Tell us about yourself..." -msgstr "Raccontaci di te..." - -#: mod/profiles.php:724 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" - -#: mod/profiles.php:725 -msgid "Contact information and Social Networks" -msgstr "Informazioni su contatti e social network" - -#: mod/profiles.php:726 -msgid "Musical interests" -msgstr "Interessi musicali" - -#: mod/profiles.php:727 -msgid "Books, literature" -msgstr "Libri, letteratura" - -#: mod/profiles.php:728 -msgid "Television" -msgstr "Televisione" - -#: mod/profiles.php:729 -msgid "Film/dance/culture/entertainment" -msgstr "Film/danza/cultura/intrattenimento" - -#: mod/profiles.php:730 -msgid "Love/romance" -msgstr "Amore" - -#: mod/profiles.php:731 -msgid "Work/employment" -msgstr "Lavoro/impiego" - -#: mod/profiles.php:732 -msgid "School/education" -msgstr "Scuola/educazione" - -#: mod/profiles.php:737 -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:747 mod/directory.php:129 -msgid "Age: " -msgstr "Età : " - -#: mod/profiles.php:800 -msgid "Edit/Manage Profiles" -msgstr "Modifica / Gestisci profili" - -#: mod/profiles.php:801 include/identity.php:231 include/identity.php:257 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" - -#: mod/profiles.php:802 include/identity.php:232 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" - -#: mod/profiles.php:813 include/identity.php:242 -msgid "Profile Image" -msgstr "Immagine del Profilo" - -#: mod/profiles.php:815 include/identity.php:245 -msgid "visible to everybody" -msgstr "visibile a tutti" - -#: mod/profiles.php:816 include/identity.php:246 -msgid "Edit visibility" -msgstr "Modifica visibilità" - -#: mod/share.php:38 -msgid "link" -msgstr "collegamento" - -#: 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/ping.php:233 -msgid "{0} wants to be your friend" -msgstr "{0} vuole essere tuo amico" - -#: mod/ping.php:248 -msgid "{0} sent you a message" -msgstr "{0} ti ha inviato un messaggio" - -#: mod/ping.php:263 -msgid "{0} requested registration" -msgstr "{0} chiede la registrazione" - -#: mod/navigation.php:20 include/nav.php:34 -msgid "Nothing new here" -msgstr "Niente di nuovo qui" - -#: mod/navigation.php:24 include/nav.php:38 -msgid "Clear notifications" -msgstr "Pulisci le notifiche" - -#: mod/community.php:23 -msgid "Not available." -msgstr "Non disponibile." - -#: mod/community.php:32 view/theme/diabook/theme.php:129 include/nav.php:137 -#: include/nav.php:139 -msgid "Community" -msgstr "Comunità" - -#: mod/filer.php:30 include/conversation.php:1005 -#: include/conversation.php:1023 -msgid "Save to Folder:" -msgstr "Salva nella Cartella:" - -#: mod/filer.php:30 -msgid "- select -" -msgstr "- seleziona -" - -#: mod/wall_attach.php:83 -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:83 -msgid "Or - did you try to upload an empty file?" -msgstr "O.. non avrai provato a caricare un file vuoto?" - -#: mod/wall_attach.php:94 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "Il file supera la dimensione massima di %s" - -#: mod/wall_attach.php:145 mod/wall_attach.php:161 -msgid "File upload failed." -msgstr "Caricamento del file non riuscito." - -#: 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:222 -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/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Vuoi veramente cancellare questo suggerimento?" - -#: mod/suggest.php:69 view/theme/diabook/theme.php:527 -#: include/contact_widgets.php:35 -msgid "Friend Suggestions" -msgstr "Contatti suggeriti" - -#: mod/suggest.php:76 -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:94 -msgid "Ignore/Hide" -msgstr "Ignora / Nascondi" - -#: mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Accesso negato." - -#: mod/repair_ostatus.php:14 -msgid "Resubsribing 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/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/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Gestisci indentità e/o pagine" - -#: mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione" - -#: mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Seleziona un'identità da gestire:" - -#: mod/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:179 -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/viewcontacts.php:41 -msgid "No contacts." -msgstr "Nessun contatto." - -#: mod/viewcontacts.php:78 include/text.php:917 -msgid "View Contacts" -msgstr "Visualizza i contatti" - -#: mod/notes.php:44 include/identity.php:676 -msgid "Personal Notes" -msgstr "Note personali" - -#: 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/directory.php:53 view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "Elenco globale" - -#: mod/directory.php:61 -msgid "Find on this site" -msgstr "Cerca nel sito" - -#: mod/directory.php:64 -msgid "Site Directory" -msgstr "Elenco del sito" - -#: mod/directory.php:132 -msgid "Gender: " -msgstr "Genere:" - -#: mod/directory.php:156 include/identity.php:273 include/identity.php:561 -msgid "Status:" -msgstr "Stato:" - -#: mod/directory.php:158 include/identity.php:275 include/identity.php:572 -msgid "Homepage:" -msgstr "Homepage:" - -#: mod/directory.php:205 -msgid "No entries (some entries may be hidden)." -msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." - -#: mod/ostatus_subscribe.php:14 -msgid "Subsribing 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/localtime.php:12 include/event.php:13 include/bb2diaspora.php:148 -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/oexchange.php:25 -msgid "Post successful." -msgstr "Inviato!" - -#: 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:308 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Il ridimensionamento del'immagine [%s] è fallito." - -#: mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." - -#: mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" - -#: mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Carica un file:" - -#: mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Seleziona un profilo:" - -#: mod/profile_photo.php:245 -#: view/smarty3/compiled/7ed3c1755557256685d55b3a8e5cca927de090fb.file.filebrowser_plain.tpl.php:96 -#: view/smarty3/compiled/48b358673d34ee5cf1512cb114ef7f14c9f5b9d0.file.filebrowser_plain.tpl.php:96 -#: view/smarty3/compiled/be03ead94b64e658f07d62d8fbdc13a08b408e62.file.filebrowser_plain.tpl.php:103 -msgid "Upload" -msgstr "Carica" - -#: mod/profile_photo.php:248 -msgid "or" -msgstr "o" - -#: mod/profile_photo.php:248 -msgid "skip this step" -msgstr "salta questo passaggio" - -#: mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "seleziona una foto dai tuoi album" - -#: mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Ritaglia immagine" - -#: mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ritaglia l'imagine per una visualizzazione migliore." - -#: mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Finito" - -#: mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Immagine caricata con successo." - -#: mod/install.php:119 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica Comunicazione Server - Impostazioni" - -#: mod/install.php:125 -msgid "Could not connect to database." -msgstr " Impossibile collegarsi con il database." - -#: mod/install.php:129 -msgid "Could not create table." -msgstr "Impossibile creare le tabelle." - -#: mod/install.php:135 -msgid "Your Friendica site database has been installed." -msgstr "Il tuo Friendica è stato installato." - -#: mod/install.php:140 -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:141 mod/install.php:208 mod/install.php:537 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Leggi il file \"INSTALL.txt\"." - -#: mod/install.php:153 -msgid "Database already in use." -msgstr "Database già in uso." - -#: mod/install.php:205 -msgid "System check" -msgstr "Controllo sistema" - -#: mod/install.php:210 -msgid "Check again" -msgstr "Controlla ancora" - -#: mod/install.php:229 -msgid "Database connection" -msgstr "Connessione al database" - -#: mod/install.php:230 -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:231 -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:232 -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:236 -msgid "Database Server Name" -msgstr "Nome del database server" - -#: mod/install.php:237 -msgid "Database Login Name" -msgstr "Nome utente database" - -#: mod/install.php:238 -msgid "Database Login Password" -msgstr "Password utente database" - -#: mod/install.php:239 -msgid "Database Name" -msgstr "Nome database" - -#: mod/install.php:240 mod/install.php:279 -msgid "Site administrator email address" -msgstr "Indirizzo email dell'amministratore del sito" - -#: 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 "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web." - -#: mod/install.php:244 mod/install.php:282 -msgid "Please select a default timezone for your website" -msgstr "Seleziona il fuso orario predefinito per il tuo sito web" - -#: mod/install.php:269 -msgid "Site settings" -msgstr "Impostazioni sito" - -#: mod/install.php:323 -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: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 "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 'Activating scheduled tasks'" - -#: mod/install.php:328 -msgid "PHP executable path" -msgstr "Percorso eseguibile PHP" - -#: mod/install.php:328 -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:333 -msgid "Command line PHP" -msgstr "PHP da riga di comando" - -#: mod/install.php:342 -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:343 -msgid "Found PHP version: " -msgstr "Versione PHP:" - -#: mod/install.php:345 -msgid "PHP cli binary" -msgstr "Binario PHP cli" - -#: mod/install.php:356 -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:357 -msgid "This is required for message delivery to work." -msgstr "E' obbligatorio per far funzionare la consegna dei messaggi." - -#: 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 "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione" - -#: mod/install.php:381 -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:383 -msgid "Generate encryption keys" -msgstr "Genera chiavi di criptazione" - -#: mod/install.php:390 -msgid "libCurl PHP module" -msgstr "modulo PHP libCurl" - -#: mod/install.php:391 -msgid "GD graphics PHP module" -msgstr "modulo PHP GD graphics" - -#: mod/install.php:392 -msgid "OpenSSL PHP module" -msgstr "modulo PHP OpenSSL" - -#: mod/install.php:393 -msgid "mysqli PHP module" -msgstr "modulo PHP mysqli" - -#: mod/install.php:394 -msgid "mb_string PHP module" -msgstr "modulo PHP mb_string" - -#: mod/install.php:395 -msgid "mcrypt PHP module" -msgstr "" - -#: mod/install.php:400 mod/install.php:402 -msgid "Apache mod_rewrite module" -msgstr "Modulo mod_rewrite di Apache" - -#: mod/install.php:400 -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:408 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato." - -#: mod/install.php:412 -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:416 -msgid "Error: openssl PHP module required but not installed." -msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato." - -#: mod/install.php:420 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato" - -#: mod/install.php:424 -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:428 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "" - -#: mod/install.php:447 -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:448 -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:449 -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:450 -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:453 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php è scrivibile" - -#: mod/install.php:463 -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:464 -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:465 -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:466 -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:469 -msgid "view/smarty3 is writable" -msgstr "view/smarty3 è scrivibile" - -#: mod/install.php:485 -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:487 -msgid "Url rewrite is working" -msgstr "La riscrittura degli url funziona" - -#: mod/install.php:496 -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:535 -msgid "

    What next

    " -msgstr "

    Cosa fare ora

    " - -#: mod/install.php:536 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller." +"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:1183 +msgid "Share" +msgstr "Condividi" + +#: mod/photos.php:1648 include/conversation.php:509 +#: include/conversation.php:1414 +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/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:273 -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/content.php:119 mod/network.php:532 -msgid "No such group" -msgstr "Nessun gruppo" - -#: mod/content.php:130 mod/network.php:549 -msgid "Group is empty" -msgstr "Il gruppo è vuoto" - -#: mod/content.php:135 mod/network.php:560 -#, php-format -msgid "Group: %s" -msgstr "Gruppo: %s" - -#: mod/content.php:499 include/conversation.php:689 -msgid "View in context" -msgstr "Vedi nel contesto" - #: mod/regmod.php:55 msgid "Account approved." msgstr "Account approvato." @@ -5607,749 +6093,166 @@ msgstr "Registrazione revocata per %s" msgid "Please login." msgstr "Accedi." -#: mod/match.php:18 -msgid "Profile Match" -msgstr "Profili corrispondenti" +#: mod/uimport.php:66 +msgid "Move account" +msgstr "Muovi account" -#: mod/match.php:27 -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/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Puoi importare un account da un altro server Friendica." -#: mod/match.php:69 -msgid "is interested in:" -msgstr "è interessato a:" - -#: mod/item.php:115 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." - -#: mod/item.php:347 -msgid "Empty post discarded." -msgstr "Messaggio vuoto scartato." - -#: mod/item.php:860 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Messaggio non salvato." - -#: mod/item.php:989 -#, php-format +#: mod/uimport.php:68 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." +"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/item.php:991 -#, php-format -msgid "You may visit them online at %s" -msgstr "Puoi visitarli online su %s" - -#: mod/item.php:992 +#: mod/uimport.php:69 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." +"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/item.php:996 -#, php-format -msgid "%s posted an update." -msgstr "%s ha inviato un aggiornamento." +#: mod/uimport.php:70 +msgid "Account file" +msgstr "File account" -#: mod/mood.php:62 include/conversation.php:226 -#, 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/network.php:143 -#, php-format -msgid "Search Results For: %s" -msgstr "Risultato della ricerca per: %s" - -#: mod/network.php:197 include/group.php:277 -msgid "add" -msgstr "aggiungi" - -#: mod/network.php:358 -msgid "Commented Order" -msgstr "Ordina per commento" - -#: mod/network.php:361 -msgid "Sort by Comment Date" -msgstr "Ordina per data commento" - -#: mod/network.php:365 -msgid "Posted Order" -msgstr "Ordina per invio" - -#: mod/network.php:368 -msgid "Sort by Post Date" -msgstr "Ordina per data messaggio" - -#: mod/network.php:378 -msgid "Posts that mention or involve you" -msgstr "Messaggi che ti citano o coinvolgono" - -#: mod/network.php:385 -msgid "New" -msgstr "Nuovo" - -#: mod/network.php:388 -msgid "Activity Stream - by date" -msgstr "Activity Stream - per data" - -#: mod/network.php:395 -msgid "Shared Links" -msgstr "Links condivisi" - -#: mod/network.php:398 -msgid "Interesting Links" -msgstr "Link Interessanti" - -#: mod/network.php:405 -msgid "Starred" -msgstr "Preferiti" - -#: mod/network.php:408 -msgid "Favourite Posts" -msgstr "Messaggi preferiti" - -#: 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] "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:469 -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:578 -#, php-format -msgid "Contact: %s" -msgstr "Contatto: %s" - -#: mod/network.php:582 -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:587 -msgid "Invalid contact." -msgstr "Contatto non valido." - -#: mod/crepair.php:107 -msgid "Contact settings applied." -msgstr "Contatto modificato." - -#: mod/crepair.php:109 -msgid "Contact update failed." -msgstr "Le modifiche al contatto non sono state salvate." - -#: mod/crepair.php:140 -msgid "Repair Contact Settings" -msgstr "Ripara il contatto" - -#: mod/crepair.php:142 +#: mod/uimport.php:70 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ù" +"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/crepair.php:143 -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/attach.php:8 +msgid "Item not available." +msgstr "Oggetto non disponibile." -#: mod/crepair.php:149 -msgid "Return to contact editor" -msgstr "Ritorna alla modifica contatto" +#: mod/attach.php:20 +msgid "Item was not found." +msgstr "Oggetto non trovato." -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "No mirroring" -msgstr "Non duplicare" - -#: mod/crepair.php:160 -msgid "Mirror as forwarded posting" -msgstr "Duplica come messaggi ricondivisi" - -#: mod/crepair.php:160 mod/crepair.php:162 -msgid "Mirror as my own posting" -msgstr "Duplica come miei messaggi" - -#: mod/crepair.php:169 -msgid "Refetch contact data" -msgstr "Ricarica dati contatto" - -#: 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:181 -msgid "Mirror postings from this contact" -msgstr "Ripeti i messaggi di questo contatto" - -#: mod/crepair.php:181 -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." - -#: view/theme/diabook/theme.php:123 include/nav.php:76 include/nav.php:156 -msgid "Your posts and conversations" -msgstr "I tuoi messaggi e le tue conversazioni" - -#: view/theme/diabook/theme.php:124 include/nav.php:77 -msgid "Your profile page" -msgstr "Pagina del tuo profilo" - -#: view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "I tuoi contatti" - -#: view/theme/diabook/theme.php:126 include/nav.php:78 -msgid "Your photos" -msgstr "Le tue foto" - -#: view/theme/diabook/theme.php:127 include/nav.php:80 -msgid "Your events" -msgstr "I tuoi eventi" - -#: view/theme/diabook/theme.php:128 include/nav.php:81 -msgid "Personal notes" -msgstr "Note personali" - -#: view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "Le tue foto personali" - -#: view/theme/diabook/theme.php:130 view/theme/diabook/theme.php:544 -#: view/theme/diabook/theme.php:624 view/theme/diabook/config.php:158 -msgid "Community Pages" -msgstr "Pagine Comunitarie" - -#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626 -#: view/theme/diabook/config.php:160 -msgid "Community Profiles" -msgstr "Profili Comunità" - -#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630 -#: view/theme/diabook/config.php:164 -msgid "Last users" -msgstr "Ultimi utenti" - -#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632 -#: view/theme/diabook/config.php:166 -msgid "Last likes" -msgstr "Ultimi \"mi piace\"" - -#: view/theme/diabook/theme.php:463 include/text.php:2032 -#: include/conversation.php:118 include/conversation.php:245 -msgid "event" -msgstr "l'evento" - -#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631 -#: view/theme/diabook/config.php:165 -msgid "Last photos" -msgstr "Ultime foto" - -#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629 -#: view/theme/diabook/config.php:163 -msgid "Find Friends" -msgstr "Trova Amici" - -#: view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "Elenco Locale" - -#: view/theme/diabook/theme.php:526 include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "Interessi simili" - -#: view/theme/diabook/theme.php:528 include/contact_widgets.php:38 -msgid "Invite Friends" -msgstr "Invita amici" - -#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625 -#: view/theme/diabook/config.php:159 -msgid "Earth Layers" -msgstr "Earth Layers" - -#: view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "Livello di zoom per Earth Layers" - -#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156 -msgid "Set longitude (X) for Earth Layers" -msgstr "Longitudine (X) per Earth Layers" - -#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157 -msgid "Set latitude (Y) for Earth Layers" -msgstr "Latitudine (Y) per Earth Layers" - -#: view/theme/diabook/theme.php:599 view/theme/diabook/theme.php:627 -#: view/theme/diabook/config.php:161 -msgid "Help or @NewHere ?" -msgstr "Serve aiuto? Sei nuovo?" - -#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628 -#: view/theme/diabook/config.php:162 -msgid "Connect Services" -msgstr "Servizi di conessione" - -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -#: include/acl_selectors.php:337 -msgid "don't show" -msgstr "non mostrare" - -#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142 -#: include/acl_selectors.php:336 -msgid "show" -msgstr "mostra" - -#: view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "Mostra/Nascondi riquadri nella colonna destra" - -#: view/theme/diabook/config.php:151 view/theme/dispy/config.php:73 -#: view/theme/cleanzero/config.php:84 -msgid "Set font-size for posts and comments" -msgstr "Dimensione del carattere di messaggi e commenti" - -#: view/theme/diabook/config.php:152 view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "Altezza della linea di testo di messaggi e commenti" - -#: view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "Imposta la dimensione della colonna centrale" - -#: view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "Imposta lo schema dei colori" - -#: view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "Livello di zoom per Earth Layer" - -#: view/theme/vier/config.php:59 -msgid "Set style" -msgstr "Imposta stile" - -#: view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Imposta schema colori" - -#: view/theme/duepuntozero/config.php:44 include/text.php:1768 -#: include/user.php:255 -msgid "default" -msgstr "default" - -#: view/theme/duepuntozero/config.php:45 -msgid "greenzero" -msgstr "greenzero" - -#: view/theme/duepuntozero/config.php:46 -msgid "purplezero" -msgstr "purplezero" - -#: view/theme/duepuntozero/config.php:47 -msgid "easterbunny" -msgstr "easterbunny" - -#: view/theme/duepuntozero/config.php:48 -msgid "darkzero" -msgstr "darkzero" - -#: view/theme/duepuntozero/config.php:49 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:50 -msgid "slackr" -msgstr "slackr" - -#: view/theme/duepuntozero/config.php:62 -msgid "Variations" -msgstr "Varianti" - -#: view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "Allineamento" - -#: view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Sinistra" - -#: view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Centrato" - -#: view/theme/quattro/config.php:68 view/theme/cleanzero/config.php:86 -msgid "Color scheme" -msgstr "Schema colori" - -#: view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "Dimensione caratteri post" - -#: view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "Dimensione caratteri nelle aree di testo" - -#: view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)" - -#: view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Imposta la larghezza del tema" - -#: view/smarty3/compiled/de93dd804a3e4e0c280f6a6ccb3ab9b0eaebd65d.file.blob.tpl.php:106 -msgid "Click here to download" -msgstr "" - -#: view/smarty3/compiled/e3e71db17e5b19827a9ae25070c4171ecb4fad17.file.project.tpl.php:149 -#: view/smarty3/compiled/681c121d981f553bdaa9e163d8a08e0bb4bd88ec.file.tree.tpl.php:121 -msgid "Create new pull request" -msgstr "" - -#: view/smarty3/compiled/919a59d5a78d842406e0afa69e5825d6feb5dc06.file.admin_plugins.tpl.php:42 -msgid "Reload active plugins" -msgstr "" - -#: view/smarty3/compiled/1708ab6fbb592af5399438bf991f7b474286b1b1.file.contact_drop_confirm.tpl.php:22 -msgid "Drop contact" -msgstr "" - -#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:32 -msgid "Public projects on this node" -msgstr "" - -#: view/smarty3/compiled/0ab9915ded65caccda8a9411b11cb533ec6f1af8.file.list_public_projects.tpl.php:79 -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:68 -#, php-format -msgid "" -"Do you want to delete the project '%s'?\\n\\nThis operation cannot be " -"undone." -msgstr "" - -#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:56 -msgid "Visibility" -msgstr "" - -#: view/smarty3/compiled/1db8395fd4b71e9c520b6b80e9f3ed29e256be20.file.clonerepo.tpl.php:72 -#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:69 -msgid "Create" -msgstr "" - -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:107 -msgid "No pull requests to show" -msgstr "" - -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:123 -msgid "opened by" -msgstr "" - -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:128 -msgid "closed" -msgstr "" - -#: view/smarty3/compiled/2fd5e5477cae394009c2532728561334470ac491.file.pullrequest_list.tpl.php:133 -msgid "merged" -msgstr "" - -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:31 -msgid "Projects" -msgstr "" - -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:32 -msgid "add new" -msgstr "" - -#: view/smarty3/compiled/68590690bd1fadc9898381cbb32b3ed34d6baab6.file.index.tpl.php:51 -msgid "delete" -msgstr "" - -#: view/smarty3/compiled/4bbe2f5d3d1015c250383e229b603c26c960f47c.file.commits.tpl.php:80 -#: view/smarty3/compiled/1cdeb5a00fc3621815c983a6f754af6d16ff85c9.file.commit.tpl.php:80 -#: view/smarty3/compiled/0427bde50f01fd26112193bc4daba7b58c19ca11.file.aside.tpl.php:51 -msgid "Clone this project:" -msgstr "" - -#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:38 -msgid "New pull request" -msgstr "" - -#: view/smarty3/compiled/94127d6f81f2af31862a508c8c0e2c8568904f2f.file.pullrequest_new.tpl.php:63 -msgid "Can't show you the diff at the moment. Sorry" -msgstr "" - -#: boot.php:763 +#: boot.php:783 msgid "Delete this item?" msgstr "Cancellare questo elemento?" -#: boot.php:766 +#: boot.php:786 msgid "show fewer" msgstr "mostra di meno" -#: boot.php:1140 +#: boot.php:1160 #, php-format msgid "Update %s failed. See error logs." msgstr "aggiornamento %s fallito. Guarda i log di errore." -#: boot.php:1247 +#: boot.php:1267 msgid "Create a New Account" msgstr "Crea un nuovo account" -#: boot.php:1272 include/nav.php:73 +#: boot.php:1292 include/nav.php:72 msgid "Logout" msgstr "Esci" -#: boot.php:1275 +#: boot.php:1295 msgid "Nickname or Email address: " msgstr "Nome utente o indirizzo email: " -#: boot.php:1276 +#: boot.php:1296 msgid "Password: " msgstr "Password: " -#: boot.php:1277 +#: boot.php:1297 msgid "Remember me" msgstr "Ricordati di me" -#: boot.php:1280 +#: boot.php:1300 msgid "Or login using OpenID: " msgstr "O entra con OpenID:" -#: boot.php:1286 +#: boot.php:1306 msgid "Forgot your password?" msgstr "Hai dimenticato la password?" -#: boot.php:1289 +#: boot.php:1309 msgid "Website Terms of Service" msgstr "Condizioni di servizio del sito web " -#: boot.php:1290 +#: boot.php:1310 msgid "terms of service" msgstr "condizioni del servizio" -#: boot.php:1292 +#: boot.php:1312 msgid "Website Privacy Policy" msgstr "Politiche di privacy del sito" -#: boot.php:1293 +#: boot.php:1313 msgid "privacy policy" msgstr "politiche di privacy" -#: include/features.php:23 -msgid "General Features" -msgstr "Funzionalità generali" +#: object/Item.php:95 +msgid "This entry was edited" +msgstr "Questa voce è stata modificata" -#: include/features.php:25 -msgid "Multiple Profiles" -msgstr "Profili multipli" +#: object/Item.php:191 +msgid "I will attend" +msgstr "Parteciperò" -#: include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Possibilità di creare profili multipli" +#: object/Item.php:191 +msgid "I will not attend" +msgstr "Non parteciperò" -#: include/features.php:30 -msgid "Post Composition Features" -msgstr "Funzionalità di composizione dei post" +#: object/Item.php:191 +msgid "I might attend" +msgstr "Forse parteciperò" -#: include/features.php:31 -msgid "Richtext Editor" -msgstr "Editor visuale" +#: object/Item.php:230 +msgid "ignore thread" +msgstr "ignora la discussione" -#: include/features.php:31 -msgid "Enable richtext editor" -msgstr "Abilita l'editor visuale" +#: object/Item.php:231 +msgid "unignore thread" +msgstr "non ignorare la discussione" -#: include/features.php:32 -msgid "Post Preview" -msgstr "Anteprima dei post" +#: object/Item.php:232 +msgid "toggle ignore status" +msgstr "inverti stato \"Ignora\"" -#: include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli" +#: object/Item.php:345 include/conversation.php:687 +msgid "Categories:" +msgstr "Categorie:" -#: include/features.php:33 -msgid "Auto-mention Forums" -msgstr "Auto-cita i Forum" +#: object/Item.php:346 include/conversation.php:688 +msgid "Filed under:" +msgstr "Archiviato in:" -#: include/features.php:33 +#: object/Item.php:360 +msgid "via" +msgstr "via" + +#: include/dbstructure.php:26 +#, php-format 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." +"\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/features.php:38 -msgid "Network Sidebar Widgets" -msgstr "Widget della barra laterale nella pagina Rete" +#: 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/features.php:39 -msgid "Search by Date" -msgstr "Cerca per data" +#: include/dbstructure.php:151 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." -#: include/features.php:39 -msgid "Ability to select posts by date ranges" -msgstr "Permette di filtrare i post per data" - -#: include/features.php:40 -msgid "Group Filter" -msgstr "Filtra gruppi" - -#: include/features.php:40 -msgid "Enable widget to display Network posts only from selected group" -msgstr "Abilita il widget per filtrare i post solo per il gruppo selezionato" - -#: include/features.php:41 -msgid "Network Filter" -msgstr "Filtro reti" - -#: include/features.php:41 -msgid "Enable widget to display Network posts only from selected network" -msgstr "Abilita il widget per mostare i post solo per la rete selezionata" - -#: include/features.php:42 -msgid "Save search terms for re-use" -msgstr "Salva i termini cercati per riutilizzarli" - -#: include/features.php:47 -msgid "Network Tabs" -msgstr "Schede pagina Rete" - -#: include/features.php:48 -msgid "Network Personal Tab" -msgstr "Scheda Personali" - -#: include/features.php:48 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Abilita la scheda per mostrare solo i post a cui hai partecipato" - -#: include/features.php:49 -msgid "Network New Tab" -msgstr "Scheda Nuovi" - -#: include/features.php:49 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)" - -#: include/features.php:50 -msgid "Network Shared Links Tab" -msgstr "Scheda Link Condivisi" - -#: include/features.php:50 -msgid "Enable tab to display only Network posts with links in them" -msgstr "Abilita la scheda per mostrare solo i post che contengono link" - -#: include/features.php:55 -msgid "Post/Comment Tools" -msgstr "Strumenti per messaggi/commenti" - -#: include/features.php:56 -msgid "Multiple Deletion" -msgstr "Eliminazione multipla" - -#: include/features.php:56 -msgid "Select and delete multiple posts/comments at once" -msgstr "Seleziona ed elimina vari messagi e commenti in una volta sola" - -#: include/features.php:57 -msgid "Edit Sent Posts" -msgstr "Modifica i post inviati" - -#: include/features.php:57 -msgid "Edit and correct posts and comments after sending" -msgstr "Modifica e correggi messaggi e commenti dopo averli inviati" - -#: include/features.php:58 -msgid "Tagging" -msgstr "Aggiunta tag" - -#: include/features.php:58 -msgid "Ability to tag existing posts" -msgstr "Permette di aggiungere tag ai post già esistenti" - -#: include/features.php:59 -msgid "Post Categories" -msgstr "Cateorie post" - -#: include/features.php:59 -msgid "Add categories to your posts" -msgstr "Aggiungi categorie ai tuoi post" - -#: include/features.php:60 include/contact_widgets.php:104 -msgid "Saved Folders" -msgstr "Cartelle Salvate" - -#: include/features.php:60 -msgid "Ability to file posts under folders" -msgstr "Permette di archiviare i post in cartelle" - -#: include/features.php:61 -msgid "Dislike Posts" -msgstr "Non mi piace" - -#: include/features.php:61 -msgid "Ability to dislike posts/comments" -msgstr "Permetti di inviare \"non mi piace\" ai messaggi" - -#: include/features.php:62 -msgid "Star Posts" -msgstr "Post preferiti" - -#: include/features.php:62 -msgid "Ability to mark special posts with a star indicator" -msgstr "Permette di segnare i post preferiti con una stella" - -#: include/features.php:63 -msgid "Mute Post Notifications" -msgstr "Silenzia le notifiche di nuovi post" - -#: include/features.php:63 -msgid "Ability to mute notifications for a thread" -msgstr "Permette di silenziare le notifiche di nuovi post in una discussione" +#: include/dbstructure.php:209 +msgid "Errors encountered performing database changes." +msgstr "Riscontrati errori applicando le modifiche al database." #: include/auth.php:38 msgid "Logged out." @@ -6365,588 +6268,626 @@ msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che msgid "The error message was:" msgstr "Il messaggio riportato era:" -#: include/event.php:22 include/bb2diaspora.php:154 -msgid "Starts:" -msgstr "Inizia:" +#: include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Aggiungi nuovo contatto" -#: include/event.php:32 include/bb2diaspora.php:162 -msgid "Finishes:" -msgstr "Finisce:" +#: include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Inserisci posizione o indirizzo web" -#: include/message.php:15 include/message.php:173 -msgid "[no subject]" -msgstr "[nessun oggetto]" +#: include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Esempio: bob@example.com, http://example.com/barbara" -#: include/Scrape.php:603 -msgid " on Last.fm" -msgstr "su Last.fm" - -#: include/text.php:299 -msgid "newer" -msgstr "nuovi" - -#: include/text.php:301 -msgid "older" -msgstr "vecchi" - -#: include/text.php:306 -msgid "prev" -msgstr "prec" - -#: include/text.php:308 -msgid "first" -msgstr "primo" - -#: include/text.php:340 -msgid "last" -msgstr "ultimo" - -#: include/text.php:343 -msgid "next" -msgstr "succ" - -#: include/text.php:398 -msgid "Loading more entries..." -msgstr "Carico più elementi..." - -#: include/text.php:399 -msgid "The end" -msgstr "Fine" - -#: include/text.php:890 -msgid "No contacts" -msgstr "Nessun contatto" - -#: include/text.php:905 +#: include/contact_widgets.php:24 #, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contatto" -msgstr[1] "%d contatti" +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invito disponibile" +msgstr[1] "%d inviti disponibili" -#: include/text.php:1003 include/nav.php:122 -msgid "Full Text" -msgstr "Testo Completo" +#: include/contact_widgets.php:30 +msgid "Find People" +msgstr "Trova persone" -#: include/text.php:1004 include/nav.php:123 -msgid "Tags" -msgstr "Tags:" +#: include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Inserisci un nome o un interesse" -#: include/text.php:1008 include/nav.php:127 -msgid "Forums" -msgstr "Forum" +#: include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Esempi: Mario Rossi, Pesca" -#: include/text.php:1058 -msgid "poke" -msgstr "stuzzica" +#: include/contact_widgets.php:36 view/theme/diabook/theme.php:526 +#: view/theme/vier/theme.php:206 +msgid "Similar Interests" +msgstr "Interessi simili" -#: include/text.php:1058 -msgid "poked" -msgstr "ha stuzzicato" +#: include/contact_widgets.php:37 +msgid "Random Profile" +msgstr "Profilo causale" -#: include/text.php:1059 -msgid "ping" -msgstr "invia un ping" +#: include/contact_widgets.php:38 view/theme/diabook/theme.php:528 +#: view/theme/vier/theme.php:208 +msgid "Invite Friends" +msgstr "Invita amici" -#: include/text.php:1059 -msgid "pinged" -msgstr "ha inviato un ping" +#: include/contact_widgets.php:108 +msgid "Networks" +msgstr "Reti" -#: include/text.php:1060 -msgid "prod" -msgstr "pungola" +#: include/contact_widgets.php:111 +msgid "All Networks" +msgstr "Tutte le Reti" -#: include/text.php:1060 -msgid "prodded" -msgstr "ha pungolato" +#: include/contact_widgets.php:141 include/features.php:97 +msgid "Saved Folders" +msgstr "Cartelle Salvate" -#: include/text.php:1061 -msgid "slap" -msgstr "schiaffeggia" +#: include/contact_widgets.php:144 include/contact_widgets.php:176 +msgid "Everything" +msgstr "Tutto" -#: include/text.php:1061 -msgid "slapped" -msgstr "ha schiaffeggiato" +#: include/contact_widgets.php:173 +msgid "Categories" +msgstr "Categorie" -#: include/text.php:1062 -msgid "finger" -msgstr "tocca" - -#: include/text.php:1062 -msgid "fingered" -msgstr "ha toccato" - -#: include/text.php:1063 -msgid "rebuff" -msgstr "respingi" - -#: include/text.php:1063 -msgid "rebuffed" -msgstr "ha respinto" - -#: include/text.php:1077 -msgid "happy" -msgstr "felice" - -#: include/text.php:1078 -msgid "sad" -msgstr "triste" - -#: include/text.php:1079 -msgid "mellow" -msgstr "rilassato" - -#: include/text.php:1080 -msgid "tired" -msgstr "stanco" - -#: include/text.php:1081 -msgid "perky" -msgstr "vivace" - -#: include/text.php:1082 -msgid "angry" -msgstr "arrabbiato" - -#: include/text.php:1083 -msgid "stupified" -msgstr "stupefatto" - -#: include/text.php:1084 -msgid "puzzled" -msgstr "confuso" - -#: include/text.php:1085 -msgid "interested" -msgstr "interessato" - -#: include/text.php:1086 -msgid "bitter" -msgstr "risentito" - -#: include/text.php:1087 -msgid "cheerful" -msgstr "giocoso" - -#: include/text.php:1088 -msgid "alive" -msgstr "vivo" - -#: include/text.php:1089 -msgid "annoyed" -msgstr "annoiato" - -#: include/text.php:1090 -msgid "anxious" -msgstr "ansioso" - -#: include/text.php:1091 -msgid "cranky" -msgstr "irritabile" - -#: include/text.php:1092 -msgid "disturbed" -msgstr "disturbato" - -#: include/text.php:1093 -msgid "frustrated" -msgstr "frustato" - -#: include/text.php:1094 -msgid "motivated" -msgstr "motivato" - -#: include/text.php:1095 -msgid "relaxed" -msgstr "rilassato" - -#: include/text.php:1096 -msgid "surprised" -msgstr "sorpreso" - -#: include/text.php:1266 -msgid "Monday" -msgstr "Lunedì" - -#: include/text.php:1266 -msgid "Tuesday" -msgstr "Martedì" - -#: include/text.php:1266 -msgid "Wednesday" -msgstr "Mercoledì" - -#: include/text.php:1266 -msgid "Thursday" -msgstr "Giovedì" - -#: include/text.php:1266 -msgid "Friday" -msgstr "Venerdì" - -#: include/text.php:1266 -msgid "Saturday" -msgstr "Sabato" - -#: include/text.php:1266 -msgid "Sunday" -msgstr "Domenica" - -#: include/text.php:1270 -msgid "January" -msgstr "Gennaio" - -#: include/text.php:1270 -msgid "February" -msgstr "Febbraio" - -#: include/text.php:1270 -msgid "March" -msgstr "Marzo" - -#: include/text.php:1270 -msgid "April" -msgstr "Aprile" - -#: include/text.php:1270 -msgid "May" -msgstr "Maggio" - -#: include/text.php:1270 -msgid "June" -msgstr "Giugno" - -#: include/text.php:1270 -msgid "July" -msgstr "Luglio" - -#: include/text.php:1270 -msgid "August" -msgstr "Agosto" - -#: include/text.php:1270 -msgid "September" -msgstr "Settembre" - -#: include/text.php:1270 -msgid "October" -msgstr "Ottobre" - -#: include/text.php:1270 -msgid "November" -msgstr "Novembre" - -#: include/text.php:1270 -msgid "December" -msgstr "Dicembre" - -#: include/text.php:1492 -msgid "bytes" -msgstr "bytes" - -#: include/text.php:1524 include/text.php:1536 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" - -#: include/text.php:1710 -msgid "View on separate page" -msgstr "Vedi in una pagina separata" - -#: include/text.php:1711 -msgid "view on separate page" -msgstr "vedi in una pagina separata" - -#: include/text.php:1780 -msgid "Select an alternate language" -msgstr "Seleziona una diversa lingua" - -#: include/text.php:2036 -msgid "activity" -msgstr "attività" - -#: include/text.php:2039 -msgid "post" -msgstr "messaggio" - -#: include/text.php:2207 -msgid "Item filed" -msgstr "Messaggio salvato" - -#: 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 "Utente non trovato." - -#: include/api.php:795 +#: include/contact_widgets.php:237 #, 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" +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contatto in comune" +msgstr[1] "%d contatti in comune" -#: include/api.php:814 -#, 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/features.php:58 +msgid "General Features" +msgstr "Funzionalità generali" -#: include/api.php:833 -#, 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/features.php:60 +msgid "Multiple Profiles" +msgstr "Profili multipli" -#: include/api.php:1350 -msgid "There is no status with this id." -msgstr "Non c'è nessuno status con questo id." +#: include/features.php:60 +msgid "Ability to create multiple profiles" +msgstr "Possibilità di creare profili multipli" -#: include/api.php:1424 -msgid "There is no conversation with this id." -msgstr "Non c'è nessuna conversazione con questo id" +#: include/features.php:61 +msgid "Photo Location" +msgstr "Località Foto" -#: include/api.php:1703 -msgid "Invalid item." -msgstr "Elemento non valido." +#: include/features.php:61 +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/api.php:1713 -msgid "Invalid action. " -msgstr "Azione non valida." +#: include/features.php:66 +msgid "Post Composition Features" +msgstr "Funzionalità di composizione dei post" -#: include/api.php:1721 -msgid "DB error" -msgstr "Errore database" +#: include/features.php:67 +msgid "Richtext Editor" +msgstr "Editor visuale" -#: include/dba.php:56 include/dba_pdo.php:72 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" +#: include/features.php:67 +msgid "Enable richtext editor" +msgstr "Abilita l'editor visuale" -#: include/items.php:2445 include/datetime.php:459 -#, php-format -msgid "%s's birthday" -msgstr "Compleanno di %s" +#: include/features.php:68 +msgid "Post Preview" +msgstr "Anteprima dei post" -#: include/items.php:2446 include/datetime.php:460 -#, php-format -msgid "Happy Birthday %s" -msgstr "Buon compleanno %s" +#: include/features.php:68 +msgid "Allow previewing posts and comments before publishing them" +msgstr "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli" -#: include/items.php:4866 -msgid "Do you really want to delete this item?" -msgstr "Vuoi veramente cancellare questo elemento?" +#: include/features.php:69 +msgid "Auto-mention Forums" +msgstr "Auto-cita i Forum" -#: include/items.php:5141 -msgid "Archives" -msgstr "Archivi" +#: include/features.php:69 +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/delivery.php:456 include/notifier.php:834 -msgid "(no subject)" -msgstr "(nessun oggetto)" +#: include/features.php:74 +msgid "Network Sidebar Widgets" +msgstr "Widget della barra laterale nella pagina Rete" -#: include/delivery.php:467 include/notifier.php:844 include/enotify.php:33 -msgid "noreply" -msgstr "nessuna risposta" +#: include/features.php:75 +msgid "Search by Date" +msgstr "Cerca per data" -#: include/diaspora.php:716 -msgid "Sharing notification from Diaspora network" -msgstr "Notifica di condivisione dal network Diaspora*" +#: include/features.php:75 +msgid "Ability to select posts by date ranges" +msgstr "Permette di filtrare i post per data" -#: include/diaspora.php:2567 -msgid "Attachments:" -msgstr "Allegati:" +#: include/features.php:76 include/features.php:106 +msgid "List Forums" +msgstr "Elenco forum" -#: include/identity.php:38 -msgid "Requested account is not available." -msgstr "L'account richiesto non è disponibile." +#: include/features.php:76 +msgid "Enable widget to display the forums your are connected with" +msgstr "Abilita il widget che mostra i forum ai quali sei connesso" -#: include/identity.php:121 include/identity.php:255 include/identity.php:608 -msgid "Edit profile" -msgstr "Modifica il profilo" +#: include/features.php:77 +msgid "Group Filter" +msgstr "Filtra gruppi" -#: include/identity.php:220 -msgid "Message" -msgstr "Messaggio" +#: include/features.php:77 +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/identity.php:226 include/nav.php:184 -msgid "Profiles" -msgstr "Profili" +#: include/features.php:78 +msgid "Network Filter" +msgstr "Filtro reti" -#: include/identity.php:226 -msgid "Manage/edit profiles" -msgstr "Gestisci/modifica i profili" +#: include/features.php:78 +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/identity.php:342 -msgid "Network:" -msgstr "Rete:" +#: include/features.php:79 +msgid "Save search terms for re-use" +msgstr "Salva i termini cercati per riutilizzarli" -#: include/identity.php:374 include/identity.php:460 -msgid "g A l F d" -msgstr "g A l d F" +#: include/features.php:84 +msgid "Network Tabs" +msgstr "Schede pagina Rete" -#: include/identity.php:375 include/identity.php:461 -msgid "F d" -msgstr "d F" +#: include/features.php:85 +msgid "Network Personal Tab" +msgstr "Scheda Personali" -#: include/identity.php:420 include/identity.php:507 -msgid "[today]" -msgstr "[oggi]" +#: include/features.php:85 +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/identity.php:432 -msgid "Birthday Reminders" -msgstr "Promemoria compleanni" +#: include/features.php:86 +msgid "Network New Tab" +msgstr "Scheda Nuovi" -#: include/identity.php:433 -msgid "Birthdays this week:" -msgstr "Compleanni questa settimana:" +#: include/features.php:86 +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/identity.php:494 -msgid "[No description]" -msgstr "[Nessuna descrizione]" +#: include/features.php:87 +msgid "Network Shared Links Tab" +msgstr "Scheda Link Condivisi" -#: include/identity.php:518 -msgid "Event Reminders" -msgstr "Promemoria" +#: include/features.php:87 +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/identity.php:519 -msgid "Events this week:" -msgstr "Eventi di questa settimana:" +#: include/features.php:92 +msgid "Post/Comment Tools" +msgstr "Strumenti per messaggi/commenti" -#: include/identity.php:546 -msgid "j F, Y" -msgstr "j F Y" +#: include/features.php:93 +msgid "Multiple Deletion" +msgstr "Eliminazione multipla" -#: include/identity.php:547 -msgid "j F" -msgstr "j F" +#: include/features.php:93 +msgid "Select and delete multiple posts/comments at once" +msgstr "Seleziona ed elimina vari messagi e commenti in una volta sola" -#: include/identity.php:554 -msgid "Birthday:" -msgstr "Compleanno:" +#: include/features.php:94 +msgid "Edit Sent Posts" +msgstr "Modifica i post inviati" -#: include/identity.php:558 -msgid "Age:" -msgstr "Età:" +#: include/features.php:94 +msgid "Edit and correct posts and comments after sending" +msgstr "Modifica e correggi messaggi e commenti dopo averli inviati" -#: include/identity.php:567 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" +#: include/features.php:95 +msgid "Tagging" +msgstr "Aggiunta tag" -#: include/identity.php:580 -msgid "Religion:" -msgstr "Religione:" +#: include/features.php:95 +msgid "Ability to tag existing posts" +msgstr "Permette di aggiungere tag ai post già esistenti" -#: include/identity.php:584 -msgid "Hobbies/Interests:" -msgstr "Hobby/Interessi:" +#: include/features.php:96 +msgid "Post Categories" +msgstr "Cateorie post" -#: include/identity.php:591 -msgid "Contact information and Social Networks:" -msgstr "Informazioni su contatti e social network:" +#: include/features.php:96 +msgid "Add categories to your posts" +msgstr "Aggiungi categorie ai tuoi post" -#: include/identity.php:593 -msgid "Musical interests:" -msgstr "Interessi musicali:" +#: include/features.php:97 +msgid "Ability to file posts under folders" +msgstr "Permette di archiviare i post in cartelle" -#: include/identity.php:595 -msgid "Books, literature:" -msgstr "Libri, letteratura:" +#: include/features.php:98 +msgid "Dislike Posts" +msgstr "Non mi piace" -#: include/identity.php:597 -msgid "Television:" -msgstr "Televisione:" +#: include/features.php:98 +msgid "Ability to dislike posts/comments" +msgstr "Permetti di inviare \"non mi piace\" ai messaggi" -#: include/identity.php:599 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/danza/cultura/intrattenimento:" +#: include/features.php:99 +msgid "Star Posts" +msgstr "Post preferiti" -#: include/identity.php:601 -msgid "Love/Romance:" -msgstr "Amore:" +#: include/features.php:99 +msgid "Ability to mark special posts with a star indicator" +msgstr "Permette di segnare i post preferiti con una stella" -#: include/identity.php:603 -msgid "Work/employment:" -msgstr "Lavoro:" +#: include/features.php:100 +msgid "Mute Post Notifications" +msgstr "Silenzia le notifiche di nuovi post" -#: include/identity.php:605 -msgid "School/education:" -msgstr "Scuola:" +#: include/features.php:100 +msgid "Ability to mute notifications for a thread" +msgstr "Permette di silenziare le notifiche di nuovi post in una discussione" -#: include/identity.php:633 include/nav.php:76 -msgid "Status" -msgstr "Stato" +#: include/features.php:105 +msgid "Advanced Profile Settings" +msgstr "Impostazioni Avanzate Profilo" -#: include/identity.php:636 -msgid "Status Messages and Posts" -msgstr "Messaggi di stato e post" +#: include/features.php:106 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "Mostra ai visitatori i forum nella pagina Profilo Avanzato" -#: include/identity.php:644 -msgid "Profile Details" -msgstr "Dettagli del profilo" - -#: include/identity.php:657 include/identity.php:660 include/nav.php:79 -msgid "Videos" -msgstr "Video" - -#: include/identity.php:671 -msgid "Events and Calendar" -msgstr "Eventi e calendario" - -#: include/identity.php:679 -msgid "Only You Can See This" -msgstr "Solo tu puoi vedere questo" - -#: include/follow.php:75 +#: include/follow.php:77 msgid "Connect URL missing." msgstr "URL di connessione mancante." -#: include/follow.php:102 +#: 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:103 include/follow.php:123 +#: 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:121 +#: 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:125 +#: include/follow.php:127 msgid "An author or name was not found." msgstr "Non è stato trovato un nome o un autore" -#: include/follow.php:127 +#: 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:129 +#: 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:130 +#: 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:136 +#: 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:146 +#: 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:253 +#: include/follow.php:249 msgid "Unable to retrieve contact information." msgstr "Impossibile recuperare informazioni sul contatto." -#: include/follow.php:306 +#: 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:2470 +#, php-format +msgid "%s's birthday" +msgstr "Compleanno di %s" + +#: include/datetime.php:475 include/items.php:2471 +#, php-format +msgid "Happy Birthday %s" +msgstr "Buon compleanno %s" + +#: include/identity.php:43 +msgid "Requested account is not available." +msgstr "L'account richiesto non è disponibile." + +#: include/identity.php:96 include/identity.php:281 include/identity.php:652 +msgid "Edit profile" +msgstr "Modifica il profilo" + +#: include/identity.php:241 +msgid "Atom feed" +msgstr "Feed Atom" + +#: include/identity.php:246 +msgid "Message" +msgstr "Messaggio" + +#: include/identity.php:252 include/nav.php:185 +msgid "Profiles" +msgstr "Profili" + +#: include/identity.php:252 +msgid "Manage/edit profiles" +msgstr "Gestisci/modifica i profili" + +#: include/identity.php:412 include/identity.php:498 +msgid "g A l F d" +msgstr "g A l d F" + +#: include/identity.php:413 include/identity.php:499 +msgid "F d" +msgstr "d F" + +#: include/identity.php:458 include/identity.php:545 +msgid "[today]" +msgstr "[oggi]" + +#: include/identity.php:470 +msgid "Birthday Reminders" +msgstr "Promemoria compleanni" + +#: include/identity.php:471 +msgid "Birthdays this week:" +msgstr "Compleanni questa settimana:" + +#: include/identity.php:532 +msgid "[No description]" +msgstr "[Nessuna descrizione]" + +#: include/identity.php:556 +msgid "Event Reminders" +msgstr "Promemoria" + +#: include/identity.php:557 +msgid "Events this week:" +msgstr "Eventi di questa settimana:" + +#: include/identity.php:585 +msgid "j F, Y" +msgstr "j F Y" + +#: include/identity.php:586 +msgid "j F" +msgstr "j F" + +#: include/identity.php:593 +msgid "Birthday:" +msgstr "Compleanno:" + +#: include/identity.php:597 +msgid "Age:" +msgstr "Età:" + +#: include/identity.php:606 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" + +#: include/identity.php:619 +msgid "Religion:" +msgstr "Religione:" + +#: include/identity.php:623 +msgid "Hobbies/Interests:" +msgstr "Hobby/Interessi:" + +#: include/identity.php:630 +msgid "Contact information and Social Networks:" +msgstr "Informazioni su contatti e social network:" + +#: include/identity.php:632 +msgid "Musical interests:" +msgstr "Interessi musicali:" + +#: include/identity.php:634 +msgid "Books, literature:" +msgstr "Libri, letteratura:" + +#: include/identity.php:636 +msgid "Television:" +msgstr "Televisione:" + +#: include/identity.php:638 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/danza/cultura/intrattenimento:" + +#: include/identity.php:640 +msgid "Love/Romance:" +msgstr "Amore:" + +#: include/identity.php:642 +msgid "Work/employment:" +msgstr "Lavoro:" + +#: include/identity.php:644 +msgid "School/education:" +msgstr "Scuola:" + +#: include/identity.php:648 +msgid "Forums:" +msgstr "Forum:" + +#: include/identity.php:701 include/identity.php:704 include/nav.php:78 +msgid "Videos" +msgstr "Video" + +#: include/identity.php:716 include/nav.php:140 +msgid "Events and Calendar" +msgstr "Eventi e calendario" + +#: include/identity.php:724 +msgid "Only You Can See This" +msgstr "Solo tu puoi vedere questo" + +#: 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/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:361 include/conversation.php:911 +msgid "View Status" +msgstr "Visualizza stato" + +#: include/Contact.php:363 include/conversation.php:913 +msgid "View Photos" +msgstr "Visualizza foto" + +#: include/Contact.php:364 include/conversation.php:914 +msgid "Network Posts" +msgstr "Post della Rete" + +#: include/Contact.php:365 include/conversation.php:915 +msgid "Edit Contact" +msgstr "Modifica contatto" + +#: include/Contact.php:366 +msgid "Drop Contact" +msgstr "Rimuovi contatto" + +#: include/Contact.php:367 include/conversation.php:916 +msgid "Send PM" +msgstr "Invia messaggio privato" + +#: include/Contact.php:368 include/conversation.php:920 +msgid "Poke" +msgstr "Stuzzica" + #: include/security.php:22 msgid "Welcome " msgstr "Ciao" @@ -6965,6 +6906,890 @@ msgid "" "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:1035 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." + +#: include/conversation.php:1038 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: include/conversation.php:1041 +#, php-format +msgid "%s attends." +msgstr "%s partecipa." + +#: include/conversation.php:1044 +#, php-format +msgid "%s doesn't attend." +msgstr "%s non partecipa." + +#: include/conversation.php:1047 +#, php-format +msgid "%s attends maybe." +msgstr "%s forse partecipa." + +#: include/conversation.php:1057 +msgid "and" +msgstr "e" + +#: include/conversation.php:1063 +#, php-format +msgid ", and %d other people" +msgstr "e altre %d persone" + +#: include/conversation.php:1072 +#, php-format +msgid "%2$d people like this" +msgstr "Piace a %2$d persone." + +#: include/conversation.php:1073 +#, php-format +msgid "%s like this." +msgstr "a %s piace." + +#: include/conversation.php:1076 +#, php-format +msgid "%2$d people don't like this" +msgstr "Non piace a %2$d persone." + +#: include/conversation.php:1077 +#, php-format +msgid "%s don't like this." +msgstr "a %s non piace." + +#: include/conversation.php:1080 +#, php-format +msgid "%2$d people attend" +msgstr "%2$d persone partecipano" + +#: include/conversation.php:1081 +#, php-format +msgid "%s attend." +msgstr "%s partecipa." + +#: include/conversation.php:1084 +#, php-format +msgid "%2$d people don't attend" +msgstr "%2$d persone non partecipano" + +#: include/conversation.php:1085 +#, php-format +msgid "%s don't attend." +msgstr "%s non partecipa." + +#: include/conversation.php:1088 +#, php-format +msgid "%2$d people anttend maybe" +msgstr "%2$d persone forse partecipano" + +#: include/conversation.php:1089 +#, php-format +msgid "%s anttend maybe." +msgstr "%s forse partecipano." + +#: include/conversation.php:1128 include/conversation.php:1146 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: include/conversation.php:1130 include/conversation.php:1148 +msgid "Please enter a video link/URL:" +msgstr "Inserisci un collegamento video / URL:" + +#: include/conversation.php:1131 include/conversation.php:1149 +msgid "Please enter an audio link/URL:" +msgstr "Inserisci un collegamento audio / URL:" + +#: include/conversation.php:1132 include/conversation.php:1150 +msgid "Tag term:" +msgstr "Tag:" + +#: include/conversation.php:1134 include/conversation.php:1152 +msgid "Where are you right now?" +msgstr "Dove sei ora?" + +#: include/conversation.php:1135 +msgid "Delete item(s)?" +msgstr "Cancellare questo elemento/i?" + +#: include/conversation.php:1204 +msgid "permissions" +msgstr "permessi" + +#: include/conversation.php:1227 +msgid "Post to Groups" +msgstr "Invia ai Gruppi" + +#: include/conversation.php:1228 +msgid "Post to Contacts" +msgstr "Invia ai Contatti" + +#: include/conversation.php:1229 +msgid "Private post" +msgstr "Post privato" + +#: include/conversation.php:1386 +msgid "View all" +msgstr "Mostra tutto" + +#: include/conversation.php:1408 +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Mi piace" +msgstr[1] "Mi piace" + +#: include/conversation.php:1411 +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Non mi piace" +msgstr[1] "Non mi piace" + +#: include/conversation.php:1417 +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Non partecipa" +msgstr[1] "Non partecipano" + +#: include/conversation.php:1420 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 +msgid "Forums" +msgstr "Forum" + +#: include/forums.php:107 view/theme/vier/theme.php:261 +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:1497 +msgid "bytes" +msgstr "bytes" + +#: include/text.php:1529 include/text.php:1541 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" + +#: include/text.php:1715 +msgid "View on separate page" +msgstr "Vedi in una pagina separata" + +#: include/text.php:1716 +msgid "view on separate page" +msgstr "vedi in una pagina separata" + +#: include/text.php:1995 +msgid "activity" +msgstr "attività" + +#: include/text.php:1998 +msgid "post" +msgstr "messaggio" + +#: include/text.php:2166 +msgid "Item filed" +msgstr "Messaggio salvato" + +#: include/bbcode.php:483 include/bbcode.php:1143 include/bbcode.php:1144 +msgid "Image/photo" +msgstr "Immagine/foto" + +#: include/bbcode.php:581 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: include/bbcode.php:615 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s ha scritto il seguente messaggio" + +#: include/bbcode.php:1103 include/bbcode.php:1123 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" + +#: include/bbcode.php:1152 include/bbcode.php:1153 +msgid "Encrypted content" +msgstr "Contenuto criptato" + +#: include/notifier.php:843 include/delivery.php:458 +msgid "(no subject)" +msgstr "(nessun oggetto)" + +#: include/notifier.php:853 include/delivery.php:469 include/enotify.php:37 +msgid "noreply" +msgstr "nessuna risposta" + +#: include/dba_pdo.php:72 include/dba.php:56 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" + +#: include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Sconosciuto | non categorizzato" + +#: include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Blocca immediatamente" + +#: include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Shady, spammer, self-marketer" + +#: include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Lo conosco, ma non ho un'opinione particolare" + +#: include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "E' ok, probabilmente innocuo" + +#: include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Rispettabile, ha la mia fiducia" + +#: include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Settimanalmente" + +#: include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mensilmente" + +#: include/contact_selectors.php:77 +msgid "OStatus" +msgstr "Ostatus" + +#: include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS / Atom" + +#: include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: include/contact_selectors.php:88 +msgid "pump.io" +msgstr "pump.io" + +#: include/contact_selectors.php:89 +msgid "Twitter" +msgstr "Twitter" + +#: include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "Connettore Diaspora" + +#: include/contact_selectors.php:91 +msgid "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:610 +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:343 include/api.php:354 include/api.php:463 +#: include/api.php:1182 include/api.php:1184 +msgid "User not found." +msgstr "Utente non trovato." + +#: include/api.php:830 +#, 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:849 +#, 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:868 +#, php-format +msgid "Monthly posting limit of %d posts reached. The post was rejected." +msgstr "Limite mensile di %d messaggi raggiunto. Il messaggio è stato rifiutato" + +#: include/api.php:1391 +msgid "There is no status with this id." +msgstr "Non c'è nessuno status con questo id." + +#: include/api.php:1465 +msgid "There is no conversation with this id." +msgstr "Non c'è nessuna conversazione con questo id" + +#: include/api.php:1744 +msgid "Invalid item." +msgstr "Elemento non valido." + +#: include/api.php:1754 +msgid "Invalid action. " +msgstr "Azione non valida." + +#: include/api.php:1762 +msgid "DB error" +msgstr "Errore database" + +#: 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/clean/config.php:56 +#: 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:719 +msgid "Sharing notification from Diaspora network" +msgstr "Notifica di condivisione dal network Diaspora*" + +#: include/diaspora.php:2606 +msgid "Attachments:" +msgstr "Allegati:" + +#: include/items.php:4897 +msgid "Do you really want to delete this item?" +msgstr "Vuoi veramente cancellare questo elemento?" + +#: include/items.php:5172 +msgid "Archives" +msgstr "Archivi" + #: include/profile_selectors.php:6 msgid "Male" msgstr "Maschio" @@ -7017,10 +7842,6 @@ msgstr "Non specificato" msgid "Other" msgstr "Altro" -#: include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indeciso" - #: include/profile_selectors.php:23 msgid "Males" msgstr "Maschi" @@ -7109,10 +7930,6 @@ msgstr "Infedele" msgid "Sex Addict" msgstr "Sesso-dipendente" -#: include/profile_selectors.php:42 include/user.php:297 include/user.php:301 -msgid "Friends" -msgstr "Amici" - #: include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Amici con benefici" @@ -7197,6 +8014,302 @@ 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 +#, php-format +msgid "%s Administrator" +msgstr "Amministratore %s" + +#: include/enotify.php:26 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "%1$s, amministratore di %2$s" + +#: include/enotify.php:68 +#, php-format +msgid "%s " +msgstr "%s " + +#: 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 +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:291 +msgid "Name:" +msgstr "Nome:" + +#: 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 +msgid "" +"You are now mutual friends and may exchange status updates, photos, and email\n" +"\twithout restriction." +msgstr "Ora siete connessi reciprocamente e potete scambiarvi aggiornamenti di stato, foto e email\nsenza restrizioni" + +#: include/enotify.php:311 include/enotify.php:325 +#, 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:321 +#, php-format +msgid "" +"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of " +"communication - such as private messaging and some profile interactions. If " +"this is a celebrity or community page, these settings were applied " +"automatically." +msgstr "'%1$s' ha scelto di accettarti come \"fan\", il che limita alcune forme di comunicazione, come i messaggi privati, e alcune possibiltà di interazione col profilo. Se è una pagina di una comunità o di una celebrità, queste impostazioni sono state applicate automaticamente." + +#: include/enotify.php:323 +#, php-format +msgid "" +"'%1$s' may choose to extend this into a two-way or more permissive " +"relationship in the future. " +msgstr "'%1$s' può decidere in futuro di estendere la connessione in una reciproca o più permissiva." + +#: include/enotify.php:336 +msgid "[Friendica System:Notify] registration request" +msgstr "[Friendica System:Notifica] richiesta di registrazione" + +#: include/enotify.php:337 +#, 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:338 +#, 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:341 +#, 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:344 +#, php-format +msgid "Please visit %s to approve or reject the request." +msgstr "Visita %s per approvare o rifiutare la richiesta." + +#: include/oembed.php:220 +msgid "Embedded content" +msgstr "Contenuto incorporato" + +#: include/oembed.php:229 +msgid "Embedding disabled" +msgstr "Embed disabilitato" + #: include/uimport.php:94 msgid "Error decoding account file" msgstr "Errore decodificando il file account" @@ -7233,999 +8346,232 @@ msgstr[1] "%d contatti non importati" msgid "Done. You can now login with your username and password" msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password" -#: include/plugin.php:458 include/plugin.php:460 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." - -#: include/plugin.php:466 -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:471 -msgid "This action is not available under your subscription plan." -msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." - -#: include/conversation.php:206 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha stuzzicato %2$s" - -#: include/conversation.php:290 -msgid "post/item" -msgstr "post/elemento" - -#: include/conversation.php:291 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito" - -#: include/conversation.php:771 -msgid "remove" -msgstr "rimuovi" - -#: include/conversation.php:775 -msgid "Delete Selected Items" -msgstr "Cancella elementi selezionati" - -#: include/conversation.php:874 -msgid "Follow Thread" -msgstr "Segui la discussione" - -#: include/conversation.php:875 include/Contact.php:233 -msgid "View Status" -msgstr "Visualizza stato" - -#: include/conversation.php:876 include/Contact.php:234 -msgid "View Profile" -msgstr "Visualizza profilo" - -#: include/conversation.php:877 include/Contact.php:235 -msgid "View Photos" -msgstr "Visualizza foto" - -#: include/conversation.php:878 include/Contact.php:236 -#: include/Contact.php:259 -msgid "Network Posts" -msgstr "Post della Rete" - -#: include/conversation.php:879 include/Contact.php:237 -#: include/Contact.php:259 -msgid "Edit Contact" -msgstr "Modifica contatti" - -#: include/conversation.php:880 include/Contact.php:239 -#: include/Contact.php:259 -msgid "Send PM" -msgstr "Invia messaggio privato" - -#: include/conversation.php:881 include/Contact.php:232 -msgid "Poke" -msgstr "Stuzzica" - -#: include/conversation.php:943 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." - -#: include/conversation.php:943 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." - -#: include/conversation.php:948 -#, php-format -msgid "%2$d people like this" -msgstr "Piace a %2$d persone." - -#: include/conversation.php:951 -#, php-format -msgid "%2$d people don't like this" -msgstr "Non piace a %2$d persone." - -#: include/conversation.php:965 -msgid "and" -msgstr "e" - -#: include/conversation.php:971 -#, php-format -msgid ", and %d other people" -msgstr "e altre %d persone" - -#: include/conversation.php:973 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." - -#: include/conversation.php:973 -#, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." - -#: include/conversation.php:1000 include/conversation.php:1018 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: include/conversation.php:1002 include/conversation.php:1020 -msgid "Please enter a video link/URL:" -msgstr "Inserisci un collegamento video / URL:" - -#: include/conversation.php:1003 include/conversation.php:1021 -msgid "Please enter an audio link/URL:" -msgstr "Inserisci un collegamento audio / URL:" - -#: include/conversation.php:1004 include/conversation.php:1022 -msgid "Tag term:" -msgstr "Tag:" - -#: include/conversation.php:1006 include/conversation.php:1024 -msgid "Where are you right now?" -msgstr "Dove sei ora?" - -#: include/conversation.php:1007 -msgid "Delete item(s)?" -msgstr "Cancellare questo elemento/i?" - -#: include/conversation.php:1076 -msgid "permissions" -msgstr "permessi" - -#: include/conversation.php:1099 -msgid "Post to Groups" -msgstr "Invia ai Gruppi" - -#: include/conversation.php:1100 -msgid "Post to Contacts" -msgstr "Invia ai Contatti" - -#: include/conversation.php:1101 -msgid "Private post" -msgstr "Post privato" - -#: include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Aggiungi nuovo contatto" - -#: include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Inserisci posizione o indirizzo web" - -#: include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Esempio: bob@example.com, http://example.com/barbara" - -#: include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" - -#: include/contact_widgets.php:30 -msgid "Find People" -msgstr "Trova persone" - -#: include/contact_widgets.php:31 -msgid "Enter name or interest" -msgstr "Inserisci un nome o un interesse" - -#: include/contact_widgets.php:32 -msgid "Connect/Follow" -msgstr "Connetti/segui" - -#: include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Esempi: Mario Rossi, Pesca" - -#: include/contact_widgets.php:37 -msgid "Random Profile" -msgstr "Profilo causale" - -#: include/contact_widgets.php:71 -msgid "Networks" -msgstr "Reti" - -#: include/contact_widgets.php:74 -msgid "All Networks" -msgstr "Tutte le Reti" - -#: include/contact_widgets.php:107 include/contact_widgets.php:139 -msgid "Everything" -msgstr "Tutto" - -#: include/contact_widgets.php:136 -msgid "Categories" -msgstr "Categorie" - -#: include/nav.php:73 -msgid "End this session" -msgstr "Finisci questa sessione" - -#: include/nav.php:79 -msgid "Your videos" -msgstr "I tuoi video" - -#: include/nav.php:81 -msgid "Your personal notes" -msgstr "Le tue note personali" - -#: include/nav.php:92 -msgid "Sign in" -msgstr "Entra" - -#: include/nav.php:105 -msgid "Home Page" -msgstr "Home Page" - -#: include/nav.php:109 -msgid "Create an account" -msgstr "Crea un account" - -#: include/nav.php:114 -msgid "Help and documentation" -msgstr "Guida e documentazione" - -#: include/nav.php:117 -msgid "Apps" -msgstr "Applicazioni" - -#: include/nav.php:117 -msgid "Addon applications, utilities, games" -msgstr "Applicazioni, utilità e giochi aggiuntivi" - -#: include/nav.php:119 -msgid "Search site content" -msgstr "Cerca nel contenuto del sito" - -#: include/nav.php:137 -msgid "Conversations on this site" -msgstr "Conversazioni su questo sito" - -#: include/nav.php:139 -msgid "Conversations on the network" -msgstr "Conversazioni nella rete" - -#: include/nav.php:141 -msgid "Directory" -msgstr "Elenco" - -#: include/nav.php:141 -msgid "People directory" -msgstr "Elenco delle persone" - -#: include/nav.php:143 -msgid "Information" -msgstr "Informazioni" - -#: include/nav.php:143 -msgid "Information about this friendica instance" -msgstr "Informazioni su questo server friendica" - -#: include/nav.php:153 -msgid "Conversations from your friends" -msgstr "Conversazioni dai tuoi amici" - -#: include/nav.php:154 -msgid "Network Reset" -msgstr "Reset pagina Rete" - -#: include/nav.php:154 -msgid "Load Network page with no filters" -msgstr "Carica la pagina Rete senza nessun filtro" - -#: include/nav.php:161 -msgid "Friend Requests" -msgstr "Richieste di amicizia" - -#: include/nav.php:165 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" - -#: include/nav.php:166 -msgid "Mark all system notifications seen" -msgstr "Segna tutte le notifiche come viste" - -#: include/nav.php:170 -msgid "Private mail" -msgstr "Posta privata" - -#: include/nav.php:171 -msgid "Inbox" -msgstr "In arrivo" - -#: include/nav.php:172 -msgid "Outbox" -msgstr "Inviati" - -#: include/nav.php:176 -msgid "Manage" -msgstr "Gestisci" - -#: include/nav.php:176 -msgid "Manage other pages" -msgstr "Gestisci altre pagine" - -#: include/nav.php:181 -msgid "Account settings" -msgstr "Parametri account" - -#: include/nav.php:184 -msgid "Manage/Edit Profiles" -msgstr "Gestisci/Modifica i profili" - -#: include/nav.php:186 -msgid "Manage/edit friends and contacts" -msgstr "Gestisci/modifica amici e contatti" - -#: include/nav.php:193 -msgid "Site setup and configuration" -msgstr "Configurazione del sito" - -#: include/nav.php:197 -msgid "Navigation" -msgstr "Navigazione" - -#: include/nav.php:197 -msgid "Site map" -msgstr "Mappa del sito" - -#: include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Sconosciuto | non categorizzato" - -#: include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Blocca immediatamente" - -#: include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Shady, spammer, self-marketer" - -#: include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Lo conosco, ma non ho un'opinione particolare" - -#: include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "E' ok, probabilmente innocuo" - -#: include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Rispettabile, ha la mia fiducia" - -#: include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Settimanalmente" - -#: include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensilmente" - -#: include/contact_selectors.php:77 -msgid "OStatus" -msgstr "Ostatus" - -#: include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS / Atom" - -#: include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: include/contact_selectors.php:88 -msgid "pump.io" -msgstr "pump.io" - -#: include/contact_selectors.php:89 -msgid "Twitter" -msgstr "Twitter" - -#: include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "Connettore Diaspora" - -#: include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "Statusnet" - -#: include/contact_selectors.php:92 -msgid "App.net" -msgstr "App.net" - -#: include/contact_selectors.php:103 -msgid "Redmatrix" -msgstr "Redmatrix" - -#: include/enotify.php:18 -msgid "Friendica Notification" -msgstr "Notifica Friendica" - -#: include/enotify.php:21 -msgid "Thank You," -msgstr "Grazie," - -#: include/enotify.php:23 -#, php-format -msgid "%s Administrator" -msgstr "Amministratore %s" - -#: include/enotify.php:64 -#, php-format -msgid "%s " -msgstr "%s " - -#: include/enotify.php:78 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s" - -#: include/enotify.php:80 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s ti ha inviato un nuovo messaggio privato su %2$s." - -#: include/enotify.php:81 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s ti ha inviato %2$s" - -#: include/enotify.php:81 -msgid "a private message" -msgstr "un messaggio privato" - -#: include/enotify.php:82 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Visita %s per vedere e/o rispodere ai tuoi messaggi privati." - -#: include/enotify.php: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:160 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s ha commentato un elemento che stavi seguendo." - -#: include/enotify.php:163 include/enotify.php:178 include/enotify.php:191 -#: include/enotify.php:204 include/enotify.php:222 include/enotify.php:235 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Visita %s per vedere e/o commentare la conversazione" - -#: include/enotify.php:170 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notifica] %s ha scritto sulla tua bacheca" - -#: include/enotify.php:172 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s ha scritto sulla tua bacheca su %2$s" - -#: include/enotify.php: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:186 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s ti ha taggato su %2$s" - -#: include/enotify.php:187 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s [url=%2$s]ti ha taggato[/url]." - -#: include/enotify.php:198 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "[Friendica:Notifica] %s ha condiviso un nuovo messaggio" - -#: include/enotify.php:199 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "%1$s ha condiviso un nuovo messaggio su %2$s" - -#: include/enotify.php:200 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "%1$s [url=%2$s]ha condiviso un messaggio[/url]." - -#: include/enotify.php:212 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notifica] %1$s ti ha stuzzicato" - -#: include/enotify.php:213 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s ti ha stuzzicato su %2$s" - -#: include/enotify.php:214 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s [url=%2$s]ti ha stuzzicato[/url]." - -#: include/enotify.php:229 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notifica] %s ha taggato un tuo messaggio" - -#: include/enotify.php:230 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s ha taggato il tuo post su %2$s" - -#: include/enotify.php:231 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s ha taggato [url=%2$s]il tuo post[/url]" - -#: include/enotify.php:242 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notifica] Hai ricevuto una presentazione" - -#: include/enotify.php:243 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "Hai ricevuto un'introduzione da '%1$s' su %2$s" - -#: include/enotify.php:244 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "Hai ricevuto [url=%1$s]un'introduzione[/url] da %2$s." - -#: include/enotify.php:247 include/enotify.php:289 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Puoi visitare il suo profilo presso %s" - -#: include/enotify.php:249 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "Visita %s per approvare o rifiutare la presentazione." - -#: include/enotify.php:257 -msgid "[Friendica:Notify] A new person is sharing with you" -msgstr "[Friendica:Notifica] Una nuova persona sta condividendo con te" - -#: include/enotify.php:258 include/enotify.php:259 -#, php-format -msgid "%1$s is sharing with you at %2$s" -msgstr "%1$s sta condividendo con te su %2$s" - -#: include/enotify.php:265 -msgid "[Friendica:Notify] You have a new follower" -msgstr "[Friendica:Notifica] Una nuova persona ti segue" - -#: include/enotify.php:266 include/enotify.php:267 -#, php-format -msgid "You have a new follower at %2$s : %1$s" -msgstr "Un nuovo utente ha iniziato a seguirti su %2$s : %1$s" - -#: include/enotify.php:280 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia" - -#: include/enotify.php:281 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "Hai ricevuto un suggerimento di amicizia da '%1$s' su %2$s" - -#: include/enotify.php:282 -#, php-format +#: index.php:441 +msgid "toggle mobile" +msgstr "commuta tema mobile" + +#: view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)" + +#: view/theme/cleanzero/config.php:84 view/theme/dispy/config.php:73 +#: view/theme/diabook/config.php:151 +msgid "Set font-size for posts and comments" +msgstr "Dimensione del carattere di messaggi e commenti" + +#: view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Imposta la larghezza del tema" + +#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68 +#: view/theme/clean/config.php:88 +msgid "Color scheme" +msgstr "Schema colori" + +#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152 +msgid "Set line-height for posts and comments" +msgstr "Altezza della linea di testo di messaggi e commenti" + +#: view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Imposta schema colori" + +#: view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Allineamento" + +#: view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Sinistra" + +#: view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Centrato" + +#: view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "Dimensione caratteri post" + +#: view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "Dimensione caratteri nelle aree di testo" + +#: view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "Imposta la dimensione della colonna centrale" + +#: view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "Imposta lo schema dei colori" + +#: view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "Livello di zoom per Earth Layer" + +#: view/theme/diabook/config.php:156 view/theme/diabook/theme.php:585 +msgid "Set longitude (X) for Earth Layers" +msgstr "Longitudine (X) per Earth Layers" + +#: view/theme/diabook/config.php:157 view/theme/diabook/theme.php:586 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Latitudine (Y) per Earth Layers" + +#: view/theme/diabook/config.php:158 view/theme/diabook/theme.php:130 +#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624 +#: 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 +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 +msgid "Last users" +msgstr "Ultimi utenti" + +#: view/theme/diabook/config.php:165 view/theme/diabook/theme.php:486 +#: view/theme/diabook/theme.php:631 +msgid "Last photos" +msgstr "Ultime foto" + +#: view/theme/diabook/config.php:166 view/theme/diabook/theme.php:441 +#: view/theme/diabook/theme.php:632 +msgid "Last likes" +msgstr "Ultimi \"mi piace\"" + +#: view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "I tuoi contatti" + +#: view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "Le tue foto personali" + +#: view/theme/diabook/theme.php:524 view/theme/vier/theme.php:204 +msgid "Local Directory" +msgstr "Elenco Locale" + +#: view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "Livello di zoom per Earth Layers" + +#: view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "Mostra/Nascondi riquadri nella colonna destra" + +#: view/theme/clean/config.php:57 +msgid "Midnight" +msgstr "Mezzanotte" + +#: view/theme/clean/config.php:58 +msgid "Zenburn" +msgstr "Zenburn" + +#: view/theme/clean/config.php:59 +msgid "Bootstrap" +msgstr "Bootstrap" + +#: view/theme/clean/config.php:60 +msgid "Shades of Pink" +msgstr "Sfumature di Rosa" + +#: view/theme/clean/config.php:61 +msgid "Lime and Orange" +msgstr "Lime e Arancia" + +#: view/theme/clean/config.php:62 +msgid "GeoCities Retro" +msgstr "GeoCities Retro" + +#: view/theme/clean/config.php:86 +msgid "Background Image" +msgstr "Immagine di sfondo" + +#: view/theme/clean/config.php:86 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" +"The URL to a picture (e.g. from your photo album) that should be used as " +"background image." +msgstr "L'URL a un'immagine (p.e. dal tuo album foto) che viene usata come immagine di sfondo." -#: include/enotify.php:287 -msgid "Name:" -msgstr "Nome:" +#: view/theme/clean/config.php:87 +msgid "Background Color" +msgstr "Colore di sfondo" -#: include/enotify.php:288 -msgid "Photo:" -msgstr "Foto:" +#: view/theme/clean/config.php:87 +msgid "HEX value for the background color. Don't include the #" +msgstr "Valore esadecimale del colore di sfondo. Non includere il #" -#: include/enotify.php:291 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Visita %s per approvare o rifiutare il suggerimento." +#: view/theme/clean/config.php:89 +msgid "font size" +msgstr "dimensione font" -#: include/enotify.php:299 include/enotify.php:312 -msgid "[Friendica:Notify] Connection accepted" -msgstr "[Friendica:Notifica] Connessione accettata" +#: view/theme/clean/config.php:89 +msgid "base font size for your interface" +msgstr "dimensione di base dei font per la tua interfaccia" -#: include/enotify.php:300 include/enotify.php:313 -#, 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" +#: view/theme/vier/config.php:64 +msgid "Comma separated list of helper forums" +msgstr "Lista separata da virgola di forum di aiuto" -#: include/enotify.php:301 include/enotify.php:314 -#, php-format -msgid "%2$s has accepted your [url=%1$s]connection request[/url]." -msgstr "%2$s ha accettato la tua [url=%1$s]richiesta di connessione[/url]" +#: view/theme/vier/config.php:110 +msgid "Set style" +msgstr "Imposta stile" -#: include/enotify.php:304 -msgid "" -"You are now mutual friends and may exchange status updates, photos, and email\n" -"\twithout restriction." -msgstr "Ora siete connessi reciprocamente e potete scambiarvi aggiornamenti di stato, foto e email\nsenza restrizioni" +#: view/theme/vier/theme.php:295 +msgid "Quick Start" +msgstr "Quick Start" -#: include/enotify.php:307 include/enotify.php:321 -#, php-format -msgid "Please visit %s if you wish to make any changes to this relationship." -msgstr "Visita %s se desideri modificare questo collegamento." +#: view/theme/duepuntozero/config.php:45 +msgid "greenzero" +msgstr "greenzero" -#: include/enotify.php:317 -#, 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." +#: view/theme/duepuntozero/config.php:46 +msgid "purplezero" +msgstr "purplezero" -#: include/enotify.php:319 -#, php-format -msgid "" -"'%1$s' may choose to extend this into a two-way or more permissive " -"relationship in the future. " -msgstr "'%1$s' può decidere in futuro di estendere la connessione in una reciproca o più permissiva." +#: view/theme/duepuntozero/config.php:47 +msgid "easterbunny" +msgstr "easterbunny" -#: include/enotify.php:332 -msgid "[Friendica System:Notify] registration request" -msgstr "[Friendica System:Notifica] richiesta di registrazione" +#: view/theme/duepuntozero/config.php:48 +msgid "darkzero" +msgstr "darkzero" -#: include/enotify.php:333 -#, php-format -msgid "You've received a registration request from '%1$s' at %2$s" -msgstr "Hai ricevuto una richiesta di registrazione da '%1$s' su %2$s" +#: view/theme/duepuntozero/config.php:49 +msgid "comix" +msgstr "comix" -#: include/enotify.php:334 -#, php-format -msgid "You've received a [url=%1$s]registration request[/url] from %2$s." -msgstr "Hai ricevuto una [url=%1$s]richiesta di registrazione[/url] da %2$s." +#: view/theme/duepuntozero/config.php:50 +msgid "slackr" +msgstr "slackr" -#: include/enotify.php:337 -#, php-format -msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)" -msgstr "Nome completo: %1$s\nIndirizzo del sito: %2$s\nNome utente: %3$s (%4$s)" - -#: include/enotify.php:340 -#, php-format -msgid "Please visit %s to approve or reject the request." -msgstr "Visita %s per approvare o rifiutare la richiesta." - -#: 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:146 include/user.php:244 -msgid "Nickname is already registered. Please choose another." -msgstr "Nome utente già registrato. Scegline un altro." - -#: include/user.php:156 -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:172 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." - -#: include/user.php:230 -msgid "An error occurred during registration. Please try again." -msgstr "C'è stato un errore durante la registrazione. Prova ancora." - -#: include/user.php:265 -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: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 "\nGentile %1$s,\nGrazie per esserti registrato su %2$s. Il tuo account è stato creato." - -#: 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 "\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/acl_selectors.php:324 -msgid "Post to Email" -msgstr "Invia a email" - -#: include/acl_selectors.php:329 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "Connettore disabilitato, dato che \"%s\" è abilitato." - -#: include/acl_selectors.php:335 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: include/bbcode.php:458 include/bbcode.php:1112 include/bbcode.php:1113 -msgid "Image/photo" -msgstr "Immagine/foto" - -#: 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 ha scritto il seguente messaggio" - -#: include/bbcode.php:1076 include/bbcode.php:1096 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" - -#: include/bbcode.php:1121 include/bbcode.php:1122 -msgid "Encrypted content" -msgstr "Contenuto criptato" - -#: include/oembed.php:220 -msgid "Embedded content" -msgstr "Contenuto incorporato" - -#: include/oembed.php:229 -msgid "Embedding disabled" -msgstr "Embed disabilitato" - -#: include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso." - -#: include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Gruppo predefinito per i nuovi contatti" - -#: include/group.php:226 -msgid "Everybody" -msgstr "Tutti" - -#: include/group.php:249 -msgid "edit" -msgstr "modifica" - -#: include/group.php:271 -msgid "Edit group" -msgstr "Modifica gruppo" - -#: include/group.php:272 -msgid "Create a new group" -msgstr "Crea un nuovo gruppo" - -#: include/group.php:275 -msgid "Contacts not in any group" -msgstr "Contatti in nessun gruppo." - -#: include/Contact.php:119 -msgid "stopped following" -msgstr "tolto dai seguiti" - -#: include/Contact.php:238 -msgid "Drop Contact" -msgstr "Rimuovi contatto" - -#: 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:256 -msgid "never" -msgstr "mai" - -#: include/datetime.php:262 -msgid "less than a second ago" -msgstr "meno di un secondo fa" - -#: include/datetime.php:272 -msgid "year" -msgstr "anno" - -#: include/datetime.php:272 -msgid "years" -msgstr "anni" - -#: include/datetime.php:273 -msgid "month" -msgstr "mese" - -#: include/datetime.php:273 -msgid "months" -msgstr "mesi" - -#: include/datetime.php:274 -msgid "week" -msgstr "settimana" - -#: include/datetime.php:274 -msgid "weeks" -msgstr "settimane" - -#: include/datetime.php:275 -msgid "day" -msgstr "giorno" - -#: include/datetime.php:275 -msgid "days" -msgstr "giorni" - -#: include/datetime.php:276 -msgid "hour" -msgstr "ora" - -#: include/datetime.php:276 -msgid "hours" -msgstr "ore" - -#: include/datetime.php:277 -msgid "minute" -msgstr "minuto" - -#: include/datetime.php:277 -msgid "minutes" -msgstr "minuti" - -#: include/datetime.php:278 -msgid "second" -msgstr "secondo" - -#: include/datetime.php:278 -msgid "seconds" -msgstr "secondi" - -#: include/datetime.php:287 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" - -#: include/network.php:959 -msgid "view full size" -msgstr "vedi a schermo intero" - -#: 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:152 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." - -#: include/dbstructure.php:210 -msgid "Errors encountered performing database changes." -msgstr "Riscontrati errori applicando le modifiche al database." +#: view/theme/duepuntozero/config.php:62 +msgid "Variations" +msgstr "Varianti" diff --git a/view/it/strings.php b/view/it/strings.php index 2e186c8b8f..fb30c73573 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -5,123 +5,303 @@ function string_plural_select_it($n){ return ($n != 1);; }} ; -$a->strings["This entry was edited"] = "Questa voce è stata modificata"; -$a->strings["Private Message"] = "Messaggio privato"; -$a->strings["Edit"] = "Modifica"; -$a->strings["Select"] = "Seleziona"; -$a->strings["Delete"] = "Rimuovi"; -$a->strings["save to folder"] = "salva nella cartella"; -$a->strings["add star"] = "aggiungi a speciali"; -$a->strings["remove star"] = "rimuovi da speciali"; -$a->strings["toggle star status"] = "Inverti stato preferito"; -$a->strings["starred"] = "preferito"; -$a->strings["ignore thread"] = "ignora la discussione"; -$a->strings["unignore thread"] = "non ignorare la discussione"; -$a->strings["toggle ignore status"] = "inverti stato \"Ignora\""; -$a->strings["ignored"] = "ignorato"; -$a->strings["add tag"] = "aggiungi tag"; -$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)"; -$a->strings["like"] = "mi piace"; -$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)"; -$a->strings["dislike"] = "non mi piace"; -$a->strings["Share this"] = "Condividi questo"; -$a->strings["share"] = "condividi"; -$a->strings["Categories:"] = "Categorie:"; -$a->strings["Filed under:"] = "Archiviato in:"; -$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; -$a->strings["to"] = "a"; -$a->strings["via"] = "via"; -$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; -$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca"; -$a->strings["%s from %s"] = "%s da %s"; -$a->strings["Comment"] = "Commento"; -$a->strings["Please wait"] = "Attendi"; -$a->strings["%d comment"] = array( - 0 => "%d commento", - 1 => "%d commenti", +$a->strings["Network:"] = "Rete:"; +$a->strings["Forum"] = "Forum"; +$a->strings["%d contact edited."] = array( + 0 => "%d contatto modificato", + 1 => "%d contatti modificati", ); -$a->strings["comment"] = array( - 0 => "", - 1 => "commento", -); -$a->strings["show more"] = "mostra di più"; -$a->strings["This is you"] = "Questo sei tu"; -$a->strings["Submit"] = "Invia"; -$a->strings["Bold"] = "Grassetto"; -$a->strings["Italic"] = "Corsivo"; -$a->strings["Underline"] = "Sottolineato"; -$a->strings["Quote"] = "Citazione"; -$a->strings["Code"] = "Codice"; -$a->strings["Image"] = "Immagine"; -$a->strings["Link"] = "Link"; -$a->strings["Video"] = "Video"; -$a->strings["Preview"] = "Anteprima"; -$a->strings["You must be logged in to use addons. "] = "Devi aver effettuato il login per usare gli addons."; -$a->strings["Not Found"] = "Non trovato"; -$a->strings["Page not found."] = "Pagina non trovata."; -$a->strings["Permission denied"] = "Permesso negato"; -$a->strings["Permission denied."] = "Permesso negato."; -$a->strings["toggle mobile"] = "commuta tema mobile"; -$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; -$a->strings["Contact not found."] = "Contatto non trovato."; -$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato."; -$a->strings["Suggest Friends"] = "Suggerisci amici"; -$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s"; -$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; -$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."; -$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d parametro richiesto non è stato trovato all'indirizzo dato", - 1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato", -); -$a->strings["Introduction complete."] = "Presentazione completa."; -$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione."; -$a->strings["Profile unavailable."] = "Profilo non disponibile."; -$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi."; -$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore."; -$a->strings["Invalid locator"] = "Invalid locator"; -$a->strings["Invalid email address."] = "Indirizzo email non valido."; -$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita."; -$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata."; -$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui."; -$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici."; -$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; -$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso."; +$a->strings["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["Your introduction has been sent."] = "La tua presentazione è stata inviata."; -$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; -$a->strings["Confirm"] = "Conferma"; -$a->strings["Hide this contact"] = "Nascondi questo contatto"; -$a->strings["Welcome home %s."] = "Bentornato a casa %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s."; -$a->strings["[Name Withheld]"] = "[Nome Nascosto]"; +$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["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["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato."; +$a->strings["Item has been removed."] = "L'oggetto è stato rimosso."; +$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica"; +$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."; +$a->strings["Getting Started"] = "Come Iniziare"; +$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sulla tua pagina Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."; +$a->strings["Settings"] = "Impostazioni"; +$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Nella tua pagina Impostazioni - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."; +$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."; +$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."; +$a->strings["Profile Keywords"] = "Parole chiave del profilo"; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."; +$a->strings["Connecting"] = "Collegarsi"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Sestrings["Importing Emails"] = "Importare le Email"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"; +$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto"; +$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."; +$a->strings["Finding New People"] = "Trova nuove persone"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."; +$a->strings["Groups"] = "Gruppi"; +$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"; +$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."; +$a->strings["Getting Help"] = "Ottenere Aiuto"; +$a->strings["Go to the Help Section"] = "Vai alla sezione Guida"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."; +$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."; +$a->strings["Login failed."] = "Accesso fallito."; +$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; +$a->strings["Profile Photos"] = "Foto del profilo"; +$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; +$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; +$a->strings["Image exceeds size limit of %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["Subsribing 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["Yes"] = "Si"; $a->strings["Add a personal note:"] = "Aggiungi una nota personale:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings["Diaspora"] = "Diaspora"; -$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["Cancel"] = "Annulla"; -$a->strings["View Video"] = "Guarda Video"; +$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["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato."; $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["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["{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["Ignore"] = "Ignora"; $a->strings["System"] = "Sistema"; $a->strings["Network"] = "Rete"; $a->strings["Personal"] = "Personale"; @@ -132,7 +312,6 @@ $a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate"; $a->strings["Notification type: "] = "Tipo di notifica: "; $a->strings["Friend Suggestion"] = "Amico suggerito"; $a->strings["suggested by %s"] = "sugerito da %s"; -$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri"; $a->strings["Post a new friend activity"] = "Invia una attività \"è ora amico con\""; $a->strings["if applicable"] = "se applicabile"; $a->strings["Approve"] = "Approva"; @@ -146,9 +325,6 @@ $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["Location:"] = "Posizione:"; -$a->strings["About:"] = "Informazioni:"; -$a->strings["Tags:"] = "Tag:"; $a->strings["Gender:"] = "Genere:"; $a->strings["No introductions."] = "Nessuna presentazione."; $a->strings["Notifications"] = "Notifiche"; @@ -165,13 +341,6 @@ $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["photo"] = "foto"; -$a->strings["status"] = "stato"; -$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["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["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:"; @@ -184,6 +353,73 @@ $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"; @@ -198,7 +434,6 @@ $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["Item not found."] = "Elemento non trovato."; $a->strings["Administration"] = "Amministrazione"; $a->strings["ID"] = "ID"; $a->strings["Recipient Name"] = "Nome Destinatario"; @@ -219,19 +454,17 @@ $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."] = ""; +$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["Never"] = "Mai"; $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["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"; @@ -301,7 +534,7 @@ $a->strings["Check to block public access to all otherwise public personal pages $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."] = ""; +$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"; @@ -330,6 +563,8 @@ $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"; @@ -348,10 +583,12 @@ $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["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"] = ""; -$a->strings["Number of days after which a server is requeried for his contacts."] = ""; +$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"; @@ -422,12 +659,9 @@ $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["Name"] = "Nome"; $a->strings["Email"] = "Email"; $a->strings["No registrations."] = "Nessuna registrazione."; $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"; @@ -447,11 +681,12 @@ $a->strings["Plugin %s enabled."] = "Plugin %s abilitato."; $a->strings["Disable"] = "Disabilita"; $a->strings["Enable"] = "Abilita"; $a->strings["Toggle"] = "Inverti"; -$a->strings["Settings"] = "Impostazioni"; $a->strings["Author: "] = "Autore: "; $a->strings["Maintainer: "] = "Manutentore: "; +$a->strings["Reload active plugins"] = "Ricarica i plugin attivi"; $a->strings["No themes found."] = "Nessun tema trovato."; $a->strings["Screenshot"] = "Anteprima"; +$a->strings["Reload active themes"] = "Ricarica i temi attivi"; $a->strings["[Experimental]"] = "[Sperimentale]"; $a->strings["[Unsupported]"] = "[Non supportato]"; $a->strings["Log settings updated."] = "Impostazioni Log aggiornate."; @@ -460,85 +695,79 @@ $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["Update now"] = "Aggiorna adesso"; $a->strings["Close"] = "Chiudi"; $a->strings["FTP Host"] = "Indirizzo FTP"; $a->strings["FTP Path"] = "Percorso FTP"; $a->strings["FTP User"] = "Utente FTP"; $a->strings["FTP Password"] = "Pasword FTP"; -$a->strings["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["No messages."] = "Nessun messaggio."; -$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s"; -$a->strings["You and %s"] = "Tu e %s"; -$a->strings["%s and You"] = "%s e Tu"; -$a->strings["Delete conversation"] = "Elimina la conversazione"; -$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; -$a->strings["%d message"] = array( - 0 => "%d messaggio", - 1 => "%d messaggi", +$a->strings["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["Message not available."] = "Messaggio non disponibile."; -$a->strings["Delete message"] = "Elimina il messaggio"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente."; -$a->strings["Send Reply"] = "Invia la risposta"; -$a->strings["Item not found"] = "Oggetto non trovato"; -$a->strings["Edit post"] = "Modifica messaggio"; -$a->strings["Save"] = "Salva"; -$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["Profile not found."] = "Profilo 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["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s"; +$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"; @@ -556,306 +785,142 @@ $a->strings["Adjust for viewer timezone"] = "Visualizza con il fuso orario di ch $a->strings["Description:"] = "Descrizione:"; $a->strings["Title:"] = "Titolo:"; $a->strings["Share this event"] = "Condividi questo evento"; -$a->strings["Photos"] = "Foto"; -$a->strings["Files"] = "File"; -$a->strings["Welcome to %s"] = "Benvenuto su %s"; -$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; -$a->strings["Visible to:"] = "Visibile a:"; +$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["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; -$a->strings["Edit contact"] = "Modifca contatto"; -$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo"; -$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["Remove My Account"] = "Rimuovi il mio account"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."; -$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; -$a->strings["Invalid request."] = "Richiesta non valida."; -$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["Wall Photos"] = "Foto della bacheca"; -$a->strings["Image upload failed."] = "Caricamento immagine fallito."; -$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["%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["Contact Photos"] = "Foto dei contatti"; -$a->strings["Photo Albums"] = "Album foto"; -$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["Profile Photos"] = "Foto del profilo"; -$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["Permissions"] = "Permessi"; -$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["Share"] = "Condividi"; -$a->strings["View Album"] = "Sfoglia l'album"; -$a->strings["No profile"] = "Nessun profilo"; -$a->strings["Registration successful. Please check your email for further instructions."] = "Registrazione completata. Controlla la tua mail per ulteriori informazioni."; -$a->strings["Failed to send email message. Here your accout details:
    login: %s
    password: %s

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

    Puoi cambiare la password dopo il login."; -$a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere elaborata."; -$a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte del prorietario del sito."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."; -$a->strings["Your OpenID (optional): "] = "Il tuo OpenID (opzionale): "; -$a->strings["Include your profile in member directory?"] = "Includi il tuo profilo nell'elenco pubblico?"; -$a->strings["Membership on this site is by invitation only."] = "La registrazione su questo sito è solo su invito."; -$a->strings["Your invitation ID: "] = "L'ID del tuo invito:"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo nome completo (es. Mario Rossi): "; -$a->strings["Your Email Address: "] = "Il tuo indirizzo email: "; -$a->strings["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["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["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["System down for maintenance"] = "Sistema in manutenzione"; -$a->strings["Item not available."] = "Oggetto non disponibile."; -$a->strings["Item was not found."] = "Oggetto non trovato."; -$a->strings["Applications"] = "Applicazioni"; -$a->strings["No installed applications."] = "Nessuna applicazione installata."; $a->strings["Help:"] = "Guida:"; $a->strings["Help"] = "Guida"; -$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["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["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["%d contact in common"] = array( - 0 => "%d contatto in comune", - 1 => "%d contatti in comune", -); -$a->strings["View all contacts"] = "Vedi tutti i contatti"; -$a->strings["Toggle Blocked status"] = "Inverti stato \"Blocca\""; -$a->strings["Unignore"] = "Non ignorare"; -$a->strings["Toggle Ignored status"] = "Inverti stato \"Ignora\""; -$a->strings["Unarchive"] = "Dearchivia"; -$a->strings["Archive"] = "Archivia"; -$a->strings["Toggle Archive status"] = "Inverti stato \"Archiviato\""; -$a->strings["Repair"] = "Ripara"; -$a->strings["Advanced Contact Settings"] = "Impostazioni avanzate Contatto"; -$a->strings["Communications lost with this contact!"] = "Comunicazione con questo contatto persa!"; -$a->strings["Fetch further information for feeds"] = "Recupera maggiori infomazioni per i feed"; -$a->strings["Fetch information"] = "Recupera informazioni"; -$a->strings["Fetch information and keywords"] = "Recupera informazioni e parole chiave"; -$a->strings["Contact Editor"] = "Editor dei Contatti"; -$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["Delete contact"] = "Rimuovi contatto"; -$a->strings["Last update:"] = "Ultimo aggiornamento:"; -$a->strings["Update public posts"] = "Aggiorna messaggi pubblici"; -$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 hastag, quando \"Recupera informazioni e parole chiave\" è selezionato"; -$a->strings["Profile URL"] = "URL Profilo"; -$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["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["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["Common Friends"] = "Amici in comune"; -$a->strings["No contacts in common."] = "Nessun contatto in comune."; -$a->strings["You already added this contact."] = "Hai già aggiunto questo contatto."; -$a->strings["Contact added"] = "Contatto aggiunto"; -$a->strings["Login"] = "Accedi"; -$a->strings["The post was created"] = "Il messaggio è stato creato"; -$a->strings["Move account"] = "Muovi account"; -$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro server Friendica."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora"; -$a->strings["Account file"] = "File account"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""; -$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; -$a->strings["Friends of %s"] = "Amici di %s"; -$a->strings["No friends to display."] = "Nessun amico da visualizzare."; -$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["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["Profile"] = "Profilo"; -$a->strings["Upload Profile Photo"] = "Carica la foto del profilo"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."; -$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo predefinito a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."; -$a->strings["Profile Keywords"] = "Parole chiave del profilo"; -$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."; -$a->strings["Connecting"] = "Collegarsi"; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."; -$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Sestrings["Importing Emails"] = "Importare le Email"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"; -$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo Aggiungi Nuovo Contatto"; -$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."; -$a->strings["Finding New People"] = "Trova nuove persone"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."; -$a->strings["Groups"] = "Gruppi"; -$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"; -$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."; -$a->strings["Getting Help"] = "Ottenere Aiuto"; -$a->strings["Go to the Help Section"] = "Vai alla sezione Guida"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."; -$a->strings["Remove term"] = "Rimuovi termine"; -$a->strings["Saved Searches"] = "Ricerche salvate"; -$a->strings["Search"] = "Cerca"; +$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["Items tagged with: %s"] = "Elementi taggati con: %s"; -$a->strings["Search results for: %s"] = "Risultato della ricerca per: %s"; -$a->strings["Total invitation limit exceeded."] = "Limite totale degli inviti superato."; -$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; -$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito."; -$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita."; -$a->strings["%d message sent."] = array( - 0 => "%d messaggio inviato.", - 1 => "%d messaggi inviati.", -); -$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."; -$a->strings["Send invitations"] = "Invia inviti"; -$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"; +$a->strings["everybody"] = "tutti"; $a->strings["Additional features"] = "Funzionalità aggiuntive"; $a->strings["Display"] = "Visualizzazione"; $a->strings["Social Networks"] = "Social Networks"; @@ -901,10 +966,11 @@ $a->strings["Disable intelligent shortening"] = "Disabilita accorciamento intell $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"] = ""; -$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["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)"; @@ -928,11 +994,13 @@ $a->strings["Display Settings"] = "Impostazioni Grafiche"; $a->strings["Display Theme:"] = "Tema:"; $a->strings["Mobile Theme:"] = "Tema mobile:"; $a->strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo"; +$a->strings["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\""; @@ -973,6 +1041,8 @@ $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"; @@ -981,6 +1051,8 @@ $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"; @@ -988,6 +1060,8 @@ $a->strings["Maximum Friend Requests/Day:"] = "Numero massimo di richieste di am $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"; @@ -1015,10 +1089,96 @@ $a->strings["Change the behaviour of this account for special situations"] = "Mo $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["Item has been removed."] = "L'oggetto è stato rimosso."; -$a->strings["People Search - %s"] = "Cerca persone - %s"; -$a->strings["Connect"] = "Connetti"; -$a->strings["No matches"] = "Nessun risultato"; +$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; +$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."; +$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d parametro richiesto non è stato trovato all'indirizzo dato", + 1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato", +); +$a->strings["Introduction complete."] = "Presentazione completa."; +$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione."; +$a->strings["Profile unavailable."] = "Profilo non disponibile."; +$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi."; +$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore."; +$a->strings["Invalid locator"] = "Invalid locator"; +$a->strings["Invalid email address."] = "Indirizzo email non valido."; +$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita."; +$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata."; +$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui."; +$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici."; +$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido."; +$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso."; +$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata."; +$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo."; +$a->strings["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."; @@ -1045,6 +1205,7 @@ $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"; @@ -1100,71 +1261,41 @@ $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["link"] = "collegamento"; -$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["{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["Nothing new here"] = "Niente di nuovo qui"; -$a->strings["Clear notifications"] = "Pulisci le notifiche"; -$a->strings["Not available."] = "Non disponibile."; -$a->strings["Community"] = "Comunità"; -$a->strings["Save to Folder:"] = "Salva nella Cartella:"; -$a->strings["- select -"] = "- seleziona -"; -$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["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["Do you really want to delete this suggestion?"] = "Vuoi veramente cancellare questo suggerimento?"; -$a->strings["Friend Suggestions"] = "Contatti suggeriti"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."; -$a->strings["Ignore/Hide"] = "Ignora / Nascondi"; -$a->strings["Access denied."] = "Accesso negato."; -$a->strings["Resubsribing to OStatus contacts"] = ""; -$a->strings["Error"] = ""; -$a->strings["Done"] = ""; -$a->strings["Keep this window open until done."] = ""; -$a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s"; -$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"; -$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:"; -$a->strings["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."] = "Nessun contatto."; -$a->strings["View Contacts"] = "Visualizza i contatti"; +$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["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["Global Directory"] = "Elenco globale"; -$a->strings["Find on this site"] = "Cerca nel sito"; -$a->strings["Site Directory"] = "Elenco del sito"; -$a->strings["Gender: "] = "Genere:"; -$a->strings["Status:"] = "Stato:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta)."; -$a->strings["Subsribing 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["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."; @@ -1172,226 +1303,95 @@ $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["Post successful."] = "Inviato!"; -$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; -$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."; -$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; -$a->strings["Upload File:"] = "Carica un file:"; -$a->strings["Select a profile:"] = "Seleziona un profilo:"; -$a->strings["Upload"] = "Carica"; -$a->strings["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["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 'Activating scheduled tasks'"] = "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 'Activating scheduled tasks'"; -$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"] = ""; -$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."] = ""; -$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["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["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["Resubsribing to OStatus contacts"] = "Reiscrizione a contatti OStatus"; +$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 resitrati su %s o su un'altro sito web Friendica aperto al pubblico."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."; +$a->strings["Send invitations"] = "Invia inviti"; +$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"; +$a->strings["Photo Albums"] = "Album foto"; +$a->strings["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["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["No such group"] = "Nessun gruppo"; -$a->strings["Group is empty"] = "Il gruppo è vuoto"; -$a->strings["Group: %s"] = "Gruppo: %s"; -$a->strings["View in context"] = "Vedi nel contesto"; $a->strings["Account approved."] = "Account approvato."; $a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; $a->strings["Please login."] = "Accedi."; -$a->strings["Profile Match"] = "Profili corrispondenti"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."; -$a->strings["is interested in:"] = "è interessato a:"; -$a->strings["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["%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["Search Results For: %s"] = "Risultato della ricerca per: %s"; -$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["Contact: %s"] = "Contatto: %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["Contact settings applied."] = "Contatto modificato."; -$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate."; -$a->strings["Repair Contact Settings"] = "Ripara il contatto"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."; -$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto"; -$a->strings["No mirroring"] = "Non duplicare"; -$a->strings["Mirror as forwarded posting"] = "Duplica come messaggi ricondivisi"; -$a->strings["Mirror as my own posting"] = "Duplica come miei messaggi"; -$a->strings["Refetch contact data"] = "Ricarica dati contatto"; -$a->strings["Account Nickname"] = "Nome utente"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente"; -$a->strings["Account URL"] = "URL dell'utente"; -$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["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni"; -$a->strings["Your profile page"] = "Pagina del tuo profilo"; -$a->strings["Your contacts"] = "I tuoi contatti"; -$a->strings["Your photos"] = "Le tue foto"; -$a->strings["Your events"] = "I tuoi eventi"; -$a->strings["Personal notes"] = "Note personali"; -$a->strings["Your personal photos"] = "Le tue foto personali"; -$a->strings["Community Pages"] = "Pagine Comunitarie"; -$a->strings["Community Profiles"] = "Profili Comunità"; -$a->strings["Last users"] = "Ultimi utenti"; -$a->strings["Last likes"] = "Ultimi \"mi piace\""; -$a->strings["event"] = "l'evento"; -$a->strings["Last photos"] = "Ultime foto"; -$a->strings["Find Friends"] = "Trova Amici"; -$a->strings["Local Directory"] = "Elenco Locale"; -$a->strings["Similar Interests"] = "Interessi simili"; -$a->strings["Invite Friends"] = "Invita amici"; -$a->strings["Earth Layers"] = "Earth Layers"; -$a->strings["Set zoomfactor for Earth Layers"] = "Livello di zoom per Earth Layers"; -$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["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; -$a->strings["Connect Services"] = "Servizi di conessione"; -$a->strings["don't show"] = "non mostrare"; -$a->strings["show"] = "mostra"; -$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra"; -$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti"; -$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti"; -$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale"; -$a->strings["Set color scheme"] = "Imposta lo schema dei colori"; -$a->strings["Set zoomfactor for Earth Layer"] = "Livello di zoom per Earth Layer"; -$a->strings["Set style"] = "Imposta stile"; -$a->strings["Set colour scheme"] = "Imposta schema colori"; -$a->strings["default"] = "default"; -$a->strings["greenzero"] = "greenzero"; -$a->strings["purplezero"] = "purplezero"; -$a->strings["easterbunny"] = "easterbunny"; -$a->strings["darkzero"] = "darkzero"; -$a->strings["comix"] = "comix"; -$a->strings["slackr"] = "slackr"; -$a->strings["Variations"] = "Varianti"; -$a->strings["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 resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)"; -$a->strings["Set theme width"] = "Imposta la larghezza del tema"; -$a->strings["Click here to download"] = ""; -$a->strings["Create new pull request"] = ""; -$a->strings["Reload active plugins"] = ""; -$a->strings["Drop contact"] = ""; -$a->strings["Public projects on this node"] = ""; -$a->strings["Do you want to delete the project '%s'?\\n\\nThis operation cannot be undone."] = ""; -$a->strings["Visibility"] = ""; -$a->strings["Create"] = ""; -$a->strings["No pull requests to show"] = ""; -$a->strings["opened by"] = ""; -$a->strings["closed"] = ""; -$a->strings["merged"] = ""; -$a->strings["Projects"] = ""; -$a->strings["add new"] = ""; -$a->strings["delete"] = ""; -$a->strings["Clone this project:"] = ""; -$a->strings["New pull request"] = ""; -$a->strings["Can't show you the diff at the moment. Sorry"] = ""; +$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."; @@ -1406,9 +1406,50 @@ $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["%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["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca"; +$a->strings["Similar Interests"] = "Interessi simili"; +$a->strings["Random Profile"] = "Profilo causale"; +$a->strings["Invite Friends"] = "Invita amici"; +$a->strings["Networks"] = "Reti"; +$a->strings["All Networks"] = "Tutte le Reti"; +$a->strings["Saved Folders"] = "Cartelle Salvate"; +$a->strings["Everything"] = "Tutto"; +$a->strings["Categories"] = "Categorie"; +$a->strings["%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"; @@ -1419,6 +1460,8 @@ $a->strings["Add/remove mention when a fourm page is selected/deselected in ACL $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"; @@ -1440,7 +1483,6 @@ $a->strings["Tagging"] = "Aggiunta tag"; $a->strings["Ability to tag existing posts"] = "Permette di aggiungere tag ai post già esistenti"; $a->strings["Post Categories"] = "Cateorie post"; $a->strings["Add categories to your posts"] = "Aggiungi categorie ai tuoi post"; -$a->strings["Saved Folders"] = "Cartelle Salvate"; $a->strings["Ability to file posts under folders"] = "Permette di archiviare i post in cartelle"; $a->strings["Dislike Posts"] = "Non mi piace"; $a->strings["Ability to dislike posts/comments"] = "Permetti di inviare \"non mi piace\" ai messaggi"; @@ -1448,13 +1490,153 @@ $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["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["Starts:"] = "Inizia:"; -$a->strings["Finishes:"] = "Finisce:"; +$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["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["[no subject]"] = "[nessun oggetto]"; -$a->strings[" on Last.fm"] = "su Last.fm"; +$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["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"; @@ -1468,9 +1650,9 @@ $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["Forums"] = "Forum"; $a->strings["poke"] = "stuzzica"; $a->strings["poked"] = "ha stuzzicato"; $a->strings["ping"] = "invia un ping"; @@ -1503,223 +1685,55 @@ $a->strings["frustrated"] = "frustato"; $a->strings["motivated"] = "motivato"; $a->strings["relaxed"] = "rilassato"; $a->strings["surprised"] = "sorpreso"; -$a->strings["Monday"] = "Lunedì"; -$a->strings["Tuesday"] = "Martedì"; -$a->strings["Wednesday"] = "Mercoledì"; -$a->strings["Thursday"] = "Giovedì"; -$a->strings["Friday"] = "Venerdì"; -$a->strings["Saturday"] = "Sabato"; -$a->strings["Sunday"] = "Domenica"; -$a->strings["January"] = "Gennaio"; -$a->strings["February"] = "Febbraio"; -$a->strings["March"] = "Marzo"; -$a->strings["April"] = "Aprile"; -$a->strings["May"] = "Maggio"; -$a->strings["June"] = "Giugno"; -$a->strings["July"] = "Luglio"; -$a->strings["August"] = "Agosto"; -$a->strings["September"] = "Settembre"; -$a->strings["October"] = "Ottobre"; -$a->strings["November"] = "Novembre"; -$a->strings["December"] = "Dicembre"; $a->strings["bytes"] = "bytes"; $a->strings["Click to open/close"] = "Clicca per aprire/chiudere"; $a->strings["View on separate page"] = "Vedi in una pagina separata"; $a->strings["view on separate page"] = "vedi in una pagina separata"; -$a->strings["Select an alternate language"] = "Seleziona una diversa lingua"; $a->strings["activity"] = "attività"; $a->strings["post"] = "messaggio"; $a->strings["Item filed"] = "Messaggio salvato"; -$a->strings["User not found."] = "Utente non trovato."; -$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato"; -$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato"; -$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Limite mensile di %d messaggi raggiunto. Il messaggio è stato rifiutato"; -$a->strings["There is no status with this id."] = "Non c'è nessuno status con questo id."; -$a->strings["There is no conversation with this id."] = "Non c'è nessuna conversazione con questo id"; -$a->strings["Invalid item."] = "Elemento non valido."; -$a->strings["Invalid action. "] = "Azione non valida."; -$a->strings["DB error"] = "Errore database"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -$a->strings["%s's birthday"] = "Compleanno di %s"; -$a->strings["Happy Birthday %s"] = "Buon compleanno %s"; -$a->strings["Do you really want to delete this item?"] = "Vuoi veramente cancellare questo elemento?"; -$a->strings["Archives"] = "Archivi"; +$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["(no subject)"] = "(nessun oggetto)"; $a->strings["noreply"] = "nessuna risposta"; -$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; -$a->strings["Attachments:"] = "Allegati:"; -$a->strings["Requested account is not available."] = "L'account richiesto non è disponibile."; -$a->strings["Edit profile"] = "Modifica il profilo"; -$a->strings["Message"] = "Messaggio"; -$a->strings["Profiles"] = "Profili"; -$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; -$a->strings["Network:"] = "Rete:"; -$a->strings["g A l F d"] = "g A l d F"; -$a->strings["F d"] = "d F"; -$a->strings["[today]"] = "[oggi]"; -$a->strings["Birthday Reminders"] = "Promemoria compleanni"; -$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; -$a->strings["[No description]"] = "[Nessuna descrizione]"; -$a->strings["Event Reminders"] = "Promemoria"; -$a->strings["Events this week:"] = "Eventi di questa settimana:"; -$a->strings["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["Status"] = "Stato"; -$a->strings["Status Messages and Posts"] = "Messaggi di stato e post"; -$a->strings["Profile Details"] = "Dettagli del profilo"; -$a->strings["Videos"] = "Video"; -$a->strings["Events and Calendar"] = "Eventi e calendario"; -$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo"; -$a->strings["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["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["Male"] = "Maschio"; -$a->strings["Female"] = "Femmina"; -$a->strings["Currently Male"] = "Al momento maschio"; -$a->strings["Currently Female"] = "Al momento femmina"; -$a->strings["Mostly Male"] = "Prevalentemente maschio"; -$a->strings["Mostly Female"] = "Prevalentemente femmina"; -$a->strings["Transgender"] = "Transgender"; -$a->strings["Intersex"] = "Intersex"; -$a->strings["Transsexual"] = "Transessuale"; -$a->strings["Hermaphrodite"] = "Ermafrodito"; -$a->strings["Neuter"] = "Neutro"; -$a->strings["Non-specific"] = "Non specificato"; -$a->strings["Other"] = "Altro"; -$a->strings["Undecided"] = "Indeciso"; -$a->strings["Males"] = "Maschi"; -$a->strings["Females"] = "Femmine"; -$a->strings["Gay"] = "Gay"; -$a->strings["Lesbian"] = "Lesbica"; -$a->strings["No Preference"] = "Nessuna preferenza"; -$a->strings["Bisexual"] = "Bisessuale"; -$a->strings["Autosexual"] = "Autosessuale"; -$a->strings["Abstinent"] = "Astinente"; -$a->strings["Virgin"] = "Vergine"; -$a->strings["Deviant"] = "Deviato"; -$a->strings["Fetish"] = "Fetish"; -$a->strings["Oodles"] = "Un sacco"; -$a->strings["Nonsexual"] = "Asessuato"; -$a->strings["Single"] = "Single"; -$a->strings["Lonely"] = "Solitario"; -$a->strings["Available"] = "Disponibile"; -$a->strings["Unavailable"] = "Non disponibile"; -$a->strings["Has crush"] = "è cotto/a"; -$a->strings["Infatuated"] = "infatuato/a"; -$a->strings["Dating"] = "Disponibile a un incontro"; -$a->strings["Unfaithful"] = "Infedele"; -$a->strings["Sex Addict"] = "Sesso-dipendente"; -$a->strings["Friends"] = "Amici"; -$a->strings["Friends/Benefits"] = "Amici con benefici"; -$a->strings["Casual"] = "Casual"; -$a->strings["Engaged"] = "Impegnato"; -$a->strings["Married"] = "Sposato"; -$a->strings["Imaginarily married"] = "immaginariamente sposato/a"; -$a->strings["Partners"] = "Partners"; -$a->strings["Cohabiting"] = "Coinquilino"; -$a->strings["Common law"] = "diritto comune"; -$a->strings["Happy"] = "Felice"; -$a->strings["Not looking"] = "Non guarda"; -$a->strings["Swinger"] = "Scambista"; -$a->strings["Betrayed"] = "Tradito"; -$a->strings["Separated"] = "Separato"; -$a->strings["Unstable"] = "Instabile"; -$a->strings["Divorced"] = "Divorziato"; -$a->strings["Imaginarily divorced"] = "immaginariamente divorziato/a"; -$a->strings["Widowed"] = "Vedovo"; -$a->strings["Uncertain"] = "Incerto"; -$a->strings["It's complicated"] = "E' complicato"; -$a->strings["Don't care"] = "Non interessa"; -$a->strings["Ask me"] = "Chiedimelo"; -$a->strings["Error decoding account file"] = "Errore decodificando il file account"; -$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"; -$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname"; -$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!"; -$a->strings["User creation error"] = "Errore creando l'utente"; -$a->strings["User profile creation error"] = "Errore creando il profile dell'utente"; -$a->strings["%d contact not imported"] = array( - 0 => "%d contatto non importato", - 1 => "%d contatti non importati", -); -$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato"; +$a->strings["Block immediately"] = "Blocca immediatamente"; +$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; +$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare"; +$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo"; +$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia"; +$a->strings["Weekly"] = "Settimanalmente"; +$a->strings["Monthly"] = "Mensilmente"; +$a->strings["OStatus"] = "Ostatus"; +$a->strings["RSS/Atom"] = "RSS / Atom"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Diaspora Connector"] = "Connettore Diaspora"; +$a->strings["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["%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["View Status"] = "Visualizza stato"; -$a->strings["View Profile"] = "Visualizza profilo"; -$a->strings["View Photos"] = "Visualizza foto"; -$a->strings["Network Posts"] = "Post della Rete"; -$a->strings["Edit Contact"] = "Modifica contatti"; -$a->strings["Send PM"] = "Invia messaggio privato"; -$a->strings["Poke"] = "Stuzzica"; -$a->strings["%s likes this."] = "Piace a %s."; -$a->strings["%s doesn't like this."] = "Non piace a %s."; -$a->strings["%2\$d people like this"] = "Piace a %2\$d persone."; -$a->strings["%2\$d people don't like this"] = "Non piace a %2\$d persone."; -$a->strings["and"] = "e"; -$a->strings[", and %d other people"] = "e altre %d persone"; -$a->strings["%s like this."] = "Piace a %s."; -$a->strings["%s don't like this."] = "Non piace a %s."; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:"; -$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Where are you right now?"] = "Dove sei ora?"; -$a->strings["Delete item(s)?"] = "Cancellare questo elemento/i?"; -$a->strings["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["Add New Contact"] = "Aggiungi nuovo contatto"; -$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; -$a->strings["%d invitation available"] = array( - 0 => "%d invito disponibile", - 1 => "%d inviti disponibili", -); -$a->strings["Find People"] = "Trova persone"; -$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse"; -$a->strings["Connect/Follow"] = "Connetti/segui"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca"; -$a->strings["Random Profile"] = "Profilo causale"; -$a->strings["Networks"] = "Reti"; -$a->strings["All Networks"] = "Tutte le Reti"; -$a->strings["Everything"] = "Tutto"; -$a->strings["Categories"] = "Categorie"; $a->strings["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"; @@ -1751,30 +1765,99 @@ $a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e con $a->strings["Site setup and configuration"] = "Configurazione del sito"; $a->strings["Navigation"] = "Navigazione"; $a->strings["Site map"] = "Mappa del sito"; -$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato"; -$a->strings["Block immediately"] = "Blocca immediatamente"; -$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; -$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare"; -$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo"; -$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia"; -$a->strings["Weekly"] = "Settimanalmente"; -$a->strings["Monthly"] = "Mensilmente"; -$a->strings["OStatus"] = "Ostatus"; -$a->strings["RSS/Atom"] = "RSS / Atom"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Diaspora Connector"] = "Connettore Diaspora"; -$a->strings["Statusnet"] = "Statusnet"; -$a->strings["App.net"] = "App.net"; -$a->strings["Redmatrix"] = "Redmatrix"; +$a->strings["User not found."] = "Utente non trovato."; +$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Limite giornaliero di %d messaggi raggiunto. Il messaggio è stato rifiutato"; +$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Limite settimanale di %d messaggi raggiunto. Il messaggio è stato rifiutato"; +$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Limite mensile di %d messaggi raggiunto. Il messaggio è stato rifiutato"; +$a->strings["There is no status with this id."] = "Non c'è nessuno status con questo id."; +$a->strings["There is no conversation with this id."] = "Non c'è nessuna conversazione con questo id"; +$a->strings["Invalid item."] = "Elemento non valido."; +$a->strings["Invalid action. "] = "Azione non valida."; +$a->strings["DB error"] = "Errore database"; +$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["Do you really want to delete this item?"] = "Vuoi veramente cancellare questo elemento?"; +$a->strings["Archives"] = "Archivi"; +$a->strings["Male"] = "Maschio"; +$a->strings["Female"] = "Femmina"; +$a->strings["Currently Male"] = "Al momento maschio"; +$a->strings["Currently Female"] = "Al momento femmina"; +$a->strings["Mostly Male"] = "Prevalentemente maschio"; +$a->strings["Mostly Female"] = "Prevalentemente femmina"; +$a->strings["Transgender"] = "Transgender"; +$a->strings["Intersex"] = "Intersex"; +$a->strings["Transsexual"] = "Transessuale"; +$a->strings["Hermaphrodite"] = "Ermafrodito"; +$a->strings["Neuter"] = "Neutro"; +$a->strings["Non-specific"] = "Non specificato"; +$a->strings["Other"] = "Altro"; +$a->strings["Males"] = "Maschi"; +$a->strings["Females"] = "Femmine"; +$a->strings["Gay"] = "Gay"; +$a->strings["Lesbian"] = "Lesbica"; +$a->strings["No Preference"] = "Nessuna preferenza"; +$a->strings["Bisexual"] = "Bisessuale"; +$a->strings["Autosexual"] = "Autosessuale"; +$a->strings["Abstinent"] = "Astinente"; +$a->strings["Virgin"] = "Vergine"; +$a->strings["Deviant"] = "Deviato"; +$a->strings["Fetish"] = "Fetish"; +$a->strings["Oodles"] = "Un sacco"; +$a->strings["Nonsexual"] = "Asessuato"; +$a->strings["Single"] = "Single"; +$a->strings["Lonely"] = "Solitario"; +$a->strings["Available"] = "Disponibile"; +$a->strings["Unavailable"] = "Non disponibile"; +$a->strings["Has crush"] = "è cotto/a"; +$a->strings["Infatuated"] = "infatuato/a"; +$a->strings["Dating"] = "Disponibile a un incontro"; +$a->strings["Unfaithful"] = "Infedele"; +$a->strings["Sex Addict"] = "Sesso-dipendente"; +$a->strings["Friends/Benefits"] = "Amici con benefici"; +$a->strings["Casual"] = "Casual"; +$a->strings["Engaged"] = "Impegnato"; +$a->strings["Married"] = "Sposato"; +$a->strings["Imaginarily married"] = "immaginariamente sposato/a"; +$a->strings["Partners"] = "Partners"; +$a->strings["Cohabiting"] = "Coinquilino"; +$a->strings["Common law"] = "diritto comune"; +$a->strings["Happy"] = "Felice"; +$a->strings["Not looking"] = "Non guarda"; +$a->strings["Swinger"] = "Scambista"; +$a->strings["Betrayed"] = "Tradito"; +$a->strings["Separated"] = "Separato"; +$a->strings["Unstable"] = "Instabile"; +$a->strings["Divorced"] = "Divorziato"; +$a->strings["Imaginarily divorced"] = "immaginariamente divorziato/a"; +$a->strings["Widowed"] = "Vedovo"; +$a->strings["Uncertain"] = "Incerto"; +$a->strings["It's complicated"] = "E' complicato"; +$a->strings["Don't care"] = "Non interessa"; +$a->strings["Ask me"] = "Chiedimelo"; $a->strings["Friendica Notification"] = "Notifica Friendica"; $a->strings["Thank You,"] = "Grazie,"; $a->strings["%s Administrator"] = "Amministratore %s"; +$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, amministratore di %2\$s"; $a->strings["%s "] = "%s "; $a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s"; $a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s ti ha inviato un nuovo messaggio privato su %2\$s."; @@ -1829,64 +1912,69 @@ $a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "H $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["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["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nGentile %1\$s,\nGrazie per esserti registrato su %2\$s. Il tuo account è stato creato."; -$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nI dettagli del tuo utente sono:\n Indirizzo del sito: %3\$s\n Nome utente: %1\$s\n Password: %5\$s\n\nPuoi cambiare la tua password dalla pagina delle impostazioni del tuo account dopo esserti autenticato.\n\nPer favore, prenditi qualche momento per esaminare tutte le impostazioni presenti.\n\nPotresti voler aggiungere qualche informazione di base al tuo profilo predefinito (nella pagina \"Profili\"), così che le altre persone possano trovarti più facilmente.\n\nTi raccomandiamo di inserire il tuo nome completo, aggiungere una foto, aggiungere qualche parola chiave del profilo (molto utili per trovare nuovi contatti), e magari in quale nazione vivi, se non vuoi essere più specifico di così.\n\nNoi rispettiamo appieno la tua privacy, e nessuna di queste informazioni è necessaria o obbligatoria.\nSe sei nuovo e non conosci nessuno qui, possono aiutarti a trovare qualche nuovo e interessante contatto.\n\nGrazie e benvenuto su %2\$s"; -$a->strings["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["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["Embedded content"] = "Contenuto incorporato"; $a->strings["Embedding disabled"] = "Embed disabilitato"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento possono essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."; -$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti"; -$a->strings["Everybody"] = "Tutti"; -$a->strings["edit"] = "modifica"; -$a->strings["Edit group"] = "Modifica gruppo"; -$a->strings["Create a new group"] = "Crea un nuovo gruppo"; -$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo."; -$a->strings["stopped following"] = "tolto dai seguiti"; -$a->strings["Drop Contact"] = "Rimuovi contatto"; -$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["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["view full size"] = "vedi a schermo intero"; -$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["Error decoding account file"] = "Errore decodificando il file account"; +$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"; +$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname"; +$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!"; +$a->strings["User creation error"] = "Errore creando l'utente"; +$a->strings["User profile creation error"] = "Errore creando il profile dell'utente"; +$a->strings["%d contact not imported"] = array( + 0 => "%d contatto non importato", + 1 => "%d contatti non importati", +); +$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"; +$a->strings["toggle mobile"] = "commuta tema mobile"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)"; +$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti"; +$a->strings["Set theme width"] = "Imposta la larghezza del tema"; +$a->strings["Color scheme"] = "Schema colori"; +$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti"; +$a->strings["Set colour scheme"] = "Imposta schema colori"; +$a->strings["Alignment"] = "Allineamento"; +$a->strings["Left"] = "Sinistra"; +$a->strings["Center"] = "Centrato"; +$a->strings["Posts font size"] = "Dimensione caratteri post"; +$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo"; +$a->strings["Set resolution for middle column"] = "Imposta la dimensione della colonna centrale"; +$a->strings["Set color scheme"] = "Imposta lo schema dei colori"; +$a->strings["Set zoomfactor for Earth Layer"] = "Livello di zoom per Earth Layer"; +$a->strings["Set longitude (X) for Earth Layers"] = "Longitudine (X) per Earth Layers"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Latitudine (Y) per Earth Layers"; +$a->strings["Community Pages"] = "Pagine Comunitarie"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Community Profiles"] = "Profili Comunità"; +$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?"; +$a->strings["Connect Services"] = "Servizi di conessione"; +$a->strings["Find Friends"] = "Trova Amici"; +$a->strings["Last users"] = "Ultimi utenti"; +$a->strings["Last photos"] = "Ultime foto"; +$a->strings["Last likes"] = "Ultimi \"mi piace\""; +$a->strings["Your contacts"] = "I tuoi contatti"; +$a->strings["Your personal photos"] = "Le tue foto personali"; +$a->strings["Local Directory"] = "Elenco Locale"; +$a->strings["Set zoomfactor for Earth Layers"] = "Livello di zoom per Earth Layers"; +$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/Nascondi riquadri nella colonna destra"; +$a->strings["Midnight"] = "Mezzanotte"; +$a->strings["Zenburn"] = "Zenburn"; +$a->strings["Bootstrap"] = "Bootstrap"; +$a->strings["Shades of Pink"] = "Sfumature di Rosa"; +$a->strings["Lime and Orange"] = "Lime e Arancia"; +$a->strings["GeoCities Retro"] = "GeoCities Retro"; +$a->strings["Background Image"] = "Immagine di sfondo"; +$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "L'URL a un'immagine (p.e. dal tuo album foto) che viene usata come immagine di sfondo."; +$a->strings["Background Color"] = "Colore di sfondo"; +$a->strings["HEX value for the background color. Don't include the #"] = "Valore esadecimale del colore di sfondo. Non includere il #"; +$a->strings["font size"] = "dimensione font"; +$a->strings["base font size for your interface"] = "dimensione di base dei font per la tua interfaccia"; +$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["greenzero"] = "greenzero"; +$a->strings["purplezero"] = "purplezero"; +$a->strings["easterbunny"] = "easterbunny"; +$a->strings["darkzero"] = "darkzero"; +$a->strings["comix"] = "comix"; +$a->strings["slackr"] = "slackr"; +$a->strings["Variations"] = "Varianti"; From 2e0ebcd1c84e53b10a716984fb61cc5d23daa277 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 14 Dec 2015 23:02:49 +0100 Subject: [PATCH 430/443] The "about" in feed has to be rendered as HTML --- include/ostatus.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/ostatus.php b/include/ostatus.php index d2d25b76ff..bcaef4f439 100644 --- a/include/ostatus.php +++ b/include/ostatus.php @@ -2,6 +2,7 @@ require_once("include/Contact.php"); require_once("include/threads.php"); require_once("include/html2bbcode.php"); +require_once("include/bbcode.php"); require_once("include/items.php"); require_once("mod/share.php"); require_once("include/enotify.php"); @@ -141,7 +142,7 @@ function ostatus_fetchauthor($xpath, $context, $importer, &$contact, $onlyfetch) $value = $xpath->evaluate('atom:author/poco:note/text()', $context)->item(0)->nodeValue; if ($value != "") - $contact["about"] = $value; + $contact["about"] = html2bbcode($value); $value = $xpath->evaluate('atom:author/poco:address/poco:formatted/text()', $context)->item(0)->nodeValue; if ($value != "") @@ -1288,7 +1289,7 @@ function ostatus_add_author($doc, $owner, $profile) { xml_add_element($doc, $author, "poco:preferredUsername", $owner["nick"]); xml_add_element($doc, $author, "poco:displayName", $profile["name"]); - xml_add_element($doc, $author, "poco:note", $profile["about"]); + xml_add_element($doc, $author, "poco:note", bbcode($profile["about"])); if (trim($owner["location"]) != "") { $element = $doc->createElement("poco:address"); From d077dbbcdede01887f58fd2754249594d722b089 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Mon, 14 Dec 2015 23:53:35 +0100 Subject: [PATCH 431/443] Bugfix: The bbcode conversion of the profile was inconsistent --- include/Contact.php | 12 ------------ include/identity.php | 15 ++++++++++++--- mod/display.php | 17 +++++++---------- 3 files changed, 19 insertions(+), 25 deletions(-) diff --git a/include/Contact.php b/include/Contact.php index 6673e6911d..340b3ec6fa 100644 --- a/include/Contact.php +++ b/include/Contact.php @@ -192,9 +192,6 @@ function unmark_for_death($contact) { }} function get_contact_details_by_url($url, $uid = -1) { - require_once("mod/proxy.php"); - require_once("include/bbcode.php"); - if ($uid == -1) $uid = local_user(); @@ -268,15 +265,6 @@ function get_contact_details_by_url($url, $uid = -1) { } else $profile["cid"] = 0; - if (isset($profile["photo"])) - $profile["photo"] = proxy_url($profile["photo"], false, PROXY_SIZE_SMALL); - - if (isset($profile["location"])) - $profile["location"] = bbcode($profile["location"]); - - if (isset($profile["about"])) - $profile["about"] = bbcode($profile["about"]); - if (($profile["cid"] == 0) AND ($profile["network"] == NETWORK_DIASPORA)) { $profile["location"] = ""; $profile["about"] = ""; diff --git a/include/identity.php b/include/identity.php index b5791ba1e9..d87d891a5c 100644 --- a/include/identity.php +++ b/include/identity.php @@ -4,7 +4,8 @@ */ require_once('include/forums.php'); - +require_once('include/bbcode.php'); +require_once("mod/proxy.php"); /** * @@ -108,7 +109,6 @@ if(! function_exists('profile_load')) { else $a->page['aside'] .= profile_sidebar($a->profile, $block); - /*if(! $block) $a->page['aside'] .= contact_block();*/ @@ -199,7 +199,7 @@ if(! function_exists('profile_sidebar')) { if (($profile['network'] != "") AND ($profile['network'] != NETWORK_DFRN)) { $profile['network_name'] = format_network_name($profile['network'],$profile['url']); - } else + } else $profile['network_name'] = ""; call_hooks('profile_sidebar_enter', $profile); @@ -360,6 +360,15 @@ if(! function_exists('profile_sidebar')) { $p[$k] = $v; } + if (isset($p["about"])) + $p["about"] = bbcode($p["about"]); + + if (isset($p["location"])) + $p["location"] = bbcode($p["location"]); + + if (isset($p["photo"])) + $p["photo"] = proxy_url($p["photo"], false, PROXY_SIZE_SMALL); + if($a->theme['template_engine'] === 'internal') $location = template_escape($location); diff --git a/mod/display.php b/mod/display.php index 6b345e6302..6d1f417e71 100644 --- a/mod/display.php +++ b/mod/display.php @@ -89,15 +89,13 @@ function display_init(&$a) { } function display_fetchauthor($a, $item) { - require_once("mod/proxy.php"); - require_once("include/bbcode.php"); $profiledata = array(); $profiledata["uid"] = -1; $profiledata["nickname"] = $item["author-name"]; $profiledata["name"] = $item["author-name"]; $profiledata["picdate"] = ""; - $profiledata["photo"] = proxy_url($item["author-avatar"], false, PROXY_SIZE_SMALL); + $profiledata["photo"] = $item["author-avatar"]; $profiledata["url"] = $item["author-link"]; $profiledata["network"] = $item["network"]; @@ -174,9 +172,9 @@ function display_fetchauthor($a, $item) { $r[0]["about"] = ""; } - $profiledata["photo"] = proxy_url($r[0]["photo"], false, PROXY_SIZE_SMALL); - $profiledata["address"] = bbcode($r[0]["location"]); - $profiledata["about"] = bbcode($r[0]["about"]); + $profiledata["photo"] = $r[0]["photo"]; + $profiledata["address"] = $r[0]["location"]; + $profiledata["about"] = $r[0]["about"]; if ($r[0]["nick"] != "") $profiledata["nickname"] = $r[0]["nick"]; } @@ -185,11 +183,11 @@ function display_fetchauthor($a, $item) { $r = q("SELECT `avatar`, `nick`, `location`, `about` FROM `unique_contacts` WHERE `url` = '%s'", dbesc(normalise_link($profiledata["url"]))); if (count($r)) { if ($profiledata["photo"] == "") - $profiledata["photo"] = proxy_url($r[0]["avatar"], false, PROXY_SIZE_SMALL); + $profiledata["photo"] = $r[0]["avatar"]; if (($profiledata["address"] == "") AND ($profiledata["network"] != NETWORK_DIASPORA)) - $profiledata["address"] = bbcode($r[0]["location"]); + $profiledata["address"] = $r[0]["location"]; if (($profiledata["about"] == "") AND ($profiledata["network"] != NETWORK_DIASPORA)) - $profiledata["about"] = bbcode($r[0]["about"]); + $profiledata["about"] = $r[0]["about"]; if (($profiledata["nickname"] == "") AND ($r[0]["nick"] != "")) $profiledata["nickname"] = $r[0]["nick"]; } @@ -212,7 +210,6 @@ function display_content(&$a, $update = 0) { return; } - require_once("include/bbcode.php"); require_once('include/security.php'); require_once('include/conversation.php'); require_once('include/acl_selectors.php'); From f42a7a3469f02f6786000decbc96bd968db64fa6 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 15 Dec 2015 00:11:19 +0100 Subject: [PATCH 432/443] Just one more place where we had forgotten to use the bbcode function for the about text --- include/items.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/items.php b/include/items.php index 2ac494ba27..eff1366899 100644 --- a/include/items.php +++ b/include/items.php @@ -4402,7 +4402,7 @@ function atom_author($tag,$name,$uri,$h,$w,$photo,$geo) { $o .= "\t".xmlify($r[0]["nick"])."\r\n"; $o .= "\t".xmlify($r[0]["name"])."\r\n"; - $o .= "\t".xmlify($r[0]["about"])."\r\n"; + $o .= "\t".xmlify(bbcode($r[0]["about"]))."\r\n"; $o .= "\t\r\n"; $o .= "\t\t".xmlify($location)."\r\n"; $o .= "\t\r\n"; From 2cf1aaa79153894988ddc9ee8986a7bff0727702 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Tue, 15 Dec 2015 14:31:24 +0100 Subject: [PATCH 433/443] add pager to common friends and allfriends --- mod/allfriends.php | 9 +++++++-- mod/common.php | 17 ++++++++--------- 2 files changed, 15 insertions(+), 11 deletions(-) diff --git a/mod/allfriends.php b/mod/allfriends.php index 49879c7a03..356a389b83 100644 --- a/mod/allfriends.php +++ b/mod/allfriends.php @@ -32,7 +32,12 @@ function allfriends_content(&$a) { $a->page['aside'] = ""; profile_load($a, "", 0, get_contact_details_by_url($c[0]["url"])); - $r = all_friends(local_user(),$cid); + $total = count_all_friends(local_user(), $cid); + + if(count($total)) + $a->set_pager_total($total); + + $r = all_friends(local_user(), $cid, $a->pager['start'], $a->pager['itemspage']); if(! count($r)) { $o .= t('No friends to display.'); @@ -87,8 +92,8 @@ function allfriends_content(&$a) { //'$title' => sprintf( t('Friends of %s'), htmlentities($c[0]['name'])), '$tab_str' => $tab_str, '$contacts' => $entries, + '$paginate' => paginate($a), )); -// $o .= paginate($a); return $o; } diff --git a/mod/common.php b/mod/common.php index 7c12dd39bb..c9409b3ef1 100644 --- a/mod/common.php +++ b/mod/common.php @@ -76,23 +76,22 @@ function common_content(&$a) { if($cid) - $t = count_common_friends($uid,$cid); + $t = count_common_friends($uid, $cid); else - $t = count_common_friends_zcid($uid,$zcid); + $t = count_common_friends_zcid($uid, $zcid); - - $a->set_pager_total($t); - - if(! $t) { + if(count($t)) + $a->set_pager_total($t); + else { notice( t('No contacts in common.') . EOL); return $o; } if($cid) - $r = common_friends($uid,$cid); + $r = common_friends($uid, $cid, $a->pager['start'], $a->pager['itemspage']); else - $r = common_friends_zcid($uid,$zcid); + $r = common_friends_zcid($uid, $zcid, $a->pager['start'], $a->pager['itemspage']); if(! count($r)) { @@ -140,8 +139,8 @@ function common_content(&$a) { '$title' => $title, '$tab_str' => $tab_str, '$contacts' => $entries, + '$paginate' => paginate($a), )); -// $o .= paginate($a); return $o; } From 19a72b30b49b50e9f0c039e2d49e8076b955b8f4 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Tue, 15 Dec 2015 15:13:46 +0100 Subject: [PATCH 434/443] vier: fix missing icons --- view/theme/vier/theme.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/view/theme/vier/theme.php b/view/theme/vier/theme.php index 91c384f805..4afc5409c0 100644 --- a/view/theme/vier/theme.php +++ b/view/theme/vier/theme.php @@ -364,10 +364,10 @@ function vier_community_info() { $r[] = array("photo" => "images/twitter.png", "name" => "Twitter"); if (plugin_enabled("wppost")) - $r[] = array("photo" => "images/wordpress", "name" => "Wordpress"); + $r[] = array("photo" => "images/wordpress.png", "name" => "Wordpress"); if(function_exists("imap_open") AND !get_config("system","imap_disabled") AND !get_config("system","dfrn_only")) - $r[] = array("photo" => "images/mail", "name" => "E-Mail"); + $r[] = array("photo" => "images/mail.png", "name" => "E-Mail"); $tpl = get_markup_template('ch_connectors.tpl'); From 6e03477598763cec48c93ddbaeb1d49997f324f1 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 15 Dec 2015 23:26:58 +0100 Subject: [PATCH 435/443] Sometimes the function "sys_getloadavg" doesn't return an array. This is a workaround. --- boot.php | 12 ++++++++++++ include/cron.php | 9 +++++---- include/cronhooks.php | 9 +++++---- include/delivery.php | 9 +++++---- include/discover_poco.php | 9 +++++---- include/poller.php | 13 ++++++------- index.php | 9 +++++---- 7 files changed, 43 insertions(+), 27 deletions(-) diff --git a/boot.php b/boot.php index 05a334a1fa..cc56949009 100644 --- a/boot.php +++ b/boot.php @@ -1948,3 +1948,15 @@ function validate_include(&$file) { return true; } + +function current_load() { + if (!function_exists('sys_getloadavg')) + return false; + + $load_arr = sys_getloadavg(); + + if (!is_array($load_arr)) + return false; + + return max($load_arr); +} diff --git a/include/cron.php b/include/cron.php index 8bf168ed50..18674817d3 100644 --- a/include/cron.php +++ b/include/cron.php @@ -44,10 +44,11 @@ function cron_run(&$argv, &$argc){ $maxsysload = intval(get_config('system','maxloadavg')); if($maxsysload < 1) $maxsysload = 50; - if(function_exists('sys_getloadavg')) { - $load = sys_getloadavg(); - if(intval($load[0]) > $maxsysload) { - logger('system: load ' . $load[0] . ' too high. cron deferred to next scheduled run.'); + + $load = current_load(); + if($load) { + if(intval($load) > $maxsysload) { + logger('system: load ' . $load . ' too high. cron deferred to next scheduled run.'); return; } } diff --git a/include/cronhooks.php b/include/cronhooks.php index d5b4f3bf6f..8c70008e45 100644 --- a/include/cronhooks.php +++ b/include/cronhooks.php @@ -27,10 +27,11 @@ function cronhooks_run(&$argv, &$argc){ $maxsysload = intval(get_config('system','maxloadavg')); if($maxsysload < 1) $maxsysload = 50; - if(function_exists('sys_getloadavg')) { - $load = sys_getloadavg(); - if(intval($load[0]) > $maxsysload) { - logger('system: load ' . $load[0] . ' too high. Cronhooks deferred to next scheduled run.'); + + $load = current_load(); + if($load) { + if(intval($load) > $maxsysload) { + logger('system: load ' . $load . ' too high. Cronhooks deferred to next scheduled run.'); return; } } diff --git a/include/delivery.php b/include/delivery.php index dc02faaba8..4d87b8bb74 100644 --- a/include/delivery.php +++ b/include/delivery.php @@ -58,10 +58,11 @@ function delivery_run(&$argv, &$argc){ $maxsysload = intval(get_config('system','maxloadavg')); if($maxsysload < 1) $maxsysload = 50; - if(function_exists('sys_getloadavg')) { - $load = sys_getloadavg(); - if(intval($load[0]) > $maxsysload) { - logger('system: load ' . $load[0] . ' too high. Delivery deferred to next queue run.'); + + $load = current_load(); + if($load) { + if(intval($load) > $maxsysload) { + logger('system: load ' . $load . ' too high. Delivery deferred to next queue run.'); return; } } diff --git a/include/discover_poco.php b/include/discover_poco.php index a8e7ec64d0..6293317d3f 100644 --- a/include/discover_poco.php +++ b/include/discover_poco.php @@ -28,10 +28,11 @@ function discover_poco_run(&$argv, &$argc){ $maxsysload = intval(get_config('system','maxloadavg')); if($maxsysload < 1) $maxsysload = 50; - if(function_exists('sys_getloadavg')) { - $load = sys_getloadavg(); - if(intval($load[0]) > $maxsysload) { - logger('system: load ' . $load[0] . ' too high. discover_poco deferred to next scheduled run.'); + + $load = current_load(); + if($load) { + if(intval($load) > $maxsysload) { + logger('system: load ' . $load . ' too high. discover_poco deferred to next scheduled run.'); return; } } diff --git a/include/poller.php b/include/poller.php index 8c102a66b9..fd6f3922aa 100644 --- a/include/poller.php +++ b/include/poller.php @@ -26,14 +26,14 @@ function poller_run(&$argv, &$argc){ unset($db_host, $db_user, $db_pass, $db_data); }; - if(function_exists('sys_getloadavg')) { + $load = current_load(); + if($load) { $maxsysload = intval(get_config('system','maxloadavg')); if($maxsysload < 1) $maxsysload = 50; - $load = sys_getloadavg(); - if(intval($load[0]) > $maxsysload) { - logger('system: load ' . $load[0] . ' too high. poller deferred to next scheduled run.'); + if(intval($load) > $maxsysload) { + logger('system: load ' . $load . ' too high. poller deferred to next scheduled run.'); return; } } @@ -134,9 +134,8 @@ function poller_too_much_workers($stage) { $active = poller_active_workers(); // Decrease the number of workers at higher load - if(function_exists('sys_getloadavg')) { - $load = max(sys_getloadavg()); - + $load = current_load(); + if($load) { $maxsysload = intval(get_config('system','maxloadavg')); if($maxsysload < 1) $maxsysload = 50; diff --git a/index.php b/index.php index 9fe248e8e2..89ed058465 100644 --- a/index.php +++ b/index.php @@ -56,10 +56,11 @@ if(!$install) { $maxsysload_frontend = intval(get_config('system','maxloadavg_frontend')); if($maxsysload_frontend < 1) $maxsysload_frontend = 50; - if(function_exists('sys_getloadavg')) { - $load = sys_getloadavg(); - if(intval($load[0]) > $maxsysload_frontend) { - logger('system: load ' . $load[0] . ' too high. Service Temporarily Unavailable.'); + + $load = current_load(); + if($load) { + if($load > $maxsysload_frontend) { + logger('system: load ' . $load . ' too high. Service Temporarily Unavailable.'); header($_SERVER["SERVER_PROTOCOL"].' 503 Service Temporarily Unavailable'); header('Retry-After: 300'); die("System is currently unavailable. Please try again later"); From 33f354a68ce9a4d3bd63cc9ad26129a0c2befefa Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 16 Dec 2015 00:14:53 +0100 Subject: [PATCH 436/443] Bugfix for the maximum load check in worker. --- include/poller.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/poller.php b/include/poller.php index fd6f3922aa..b1d6099ad3 100644 --- a/include/poller.php +++ b/include/poller.php @@ -72,6 +72,10 @@ function poller_run(&$argv, &$argc){ while ($r = q("SELECT * FROM `workerqueue` WHERE `executed` = '0000-00-00 00:00:00' ORDER BY `created` LIMIT 1")) { + // Count active workers and compare them with a maximum value that depends on the load + if (poller_too_much_workers(3)) + return; + q("UPDATE `workerqueue` SET `executed` = '%s', `pid` = %d WHERE `id` = %d AND `executed` = '0000-00-00 00:00:00'", dbesc(datetime_convert()), intval(getmypid()), @@ -116,10 +120,6 @@ function poller_run(&$argv, &$argc){ // Quit the poller once every hour if (time() > ($starttime + 3600)) return; - - // Count active workers and compare them with a maximum value that depends on the load - if (poller_too_much_workers(3)) - return; } } From 719989249f2c9f4fcdc998d3cee2fbb43124032d Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Thu, 17 Dec 2015 08:27:02 +0100 Subject: [PATCH 437/443] FR: update to the translation --- view/fr/messages.po | 92 ++++++++++++++++++++++----------------------- view/fr/strings.php | 88 +++++++++++++++++++++---------------------- 2 files changed, 90 insertions(+), 90 deletions(-) diff --git a/view/fr/messages.po b/view/fr/messages.po index 7e38a4be31..4c9b2d6568 100644 --- a/view/fr/messages.po +++ b/view/fr/messages.po @@ -22,8 +22,8 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-12-14 07:48+0100\n" -"PO-Revision-Date: 2015-12-14 09:23+0000\n" -"Last-Translator: fabrixxm \n" +"PO-Revision-Date: 2015-12-16 08:20+0000\n" +"Last-Translator: Perig Gouanvic \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" @@ -477,7 +477,7 @@ msgstr "Amis communs" #: mod/contacts.php:852 msgid "View all common friends" -msgstr "" +msgstr "Voir tous les amis communs" #: mod/contacts.php:856 msgid "Repair" @@ -909,7 +909,7 @@ msgstr "Utiliser comme photo de profil" #: mod/ostatus_subscribe.php:14 msgid "Subsribing to OStatus contacts" -msgstr "" +msgstr "Inscription aux contacts OStatus" #: mod/ostatus_subscribe.php:25 msgid "No contact provided." @@ -1897,7 +1897,7 @@ msgstr "Nouvelle photo depuis cette URL" #: mod/crepair.php:179 msgid "Remote Self" -msgstr "" +msgstr "Identité à distance" #: mod/crepair.php:182 msgid "Mirror postings from this contact" @@ -2870,11 +2870,11 @@ msgstr "" #: mod/admin.php:798 msgid "Only search in tags" -msgstr "" +msgstr "Rechercher seulement dans les étiquettes" #: mod/admin.php:798 msgid "On large systems the text search can slow down the system extremely." -msgstr "" +msgstr "La recherche textuelle peut ralentir considérablement les systèmes de grande taille." #: mod/admin.php:800 msgid "New base url" @@ -2884,7 +2884,7 @@ msgstr "Nouvelle URL de base" msgid "" "Change base url for this server. Sends relocate message to all DFRN contacts" " of all users." -msgstr "" +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:802 msgid "RINO Encryption" @@ -2896,7 +2896,7 @@ msgstr "Couche de chiffrement entre les nœuds du réseau." #: mod/admin.php:803 msgid "Embedly API key" -msgstr "" +msgstr "Clé API d'Embedly" #: mod/admin.php:803 msgid "" @@ -3232,7 +3232,7 @@ msgstr "Mot de passe FTP" #: mod/network.php:146 #, php-format msgid "Search Results For: %s" -msgstr "" +msgstr "Résultats de la recherche pour %s" #: mod/network.php:191 mod/search.php:25 msgid "Remove term" @@ -3309,7 +3309,7 @@ msgstr "Groupe inexistant" #: mod/network.php:574 mod/content.php:135 #, php-format msgid "Group: %s" -msgstr "" +msgstr "Group : %s" #: mod/network.php:606 msgid "Private messages to this person are at risk of public disclosure." @@ -3325,7 +3325,7 @@ msgstr "Pas d'amis à afficher." #: mod/events.php:71 mod/events.php:73 msgid "Event can not end before it has started." -msgstr "" +msgstr "L'événement ne peut pas se terminer avant d'avoir commencé." #: mod/events.php:80 mod/events.php:82 msgid "Event title and start time are required." @@ -4471,7 +4471,7 @@ msgstr "Mettre-à-jour l'affichage toutes les xx secondes" #: mod/settings.php:966 msgid "Minimum of 10 seconds. Enter -1 to disable it." -msgstr "" +msgstr "Minimum de 10 secondes. Saisir -1 pour désactiver." #: mod/settings.php:967 msgid "Number of items to display per page:" @@ -4507,7 +4507,7 @@ msgstr "Défilement infini" #: mod/settings.php:974 msgid "Automatic updates only at the top of the network page" -msgstr "" +msgstr "Mises à jour automatiques seulement en haut de la page du réseau." #: mod/settings.php:976 view/theme/cleanzero/config.php:82 #: view/theme/dispy/config.php:72 view/theme/quattro/config.php:66 @@ -5080,7 +5080,7 @@ msgstr "Votre adresse courriel: " #: mod/register.php:274 msgid "Leave empty for an auto generated password." -msgstr "" +msgstr "Laisser ce champ libre pour obtenir un mot de passe généré automatiquement." #: mod/register.php:276 msgid "" @@ -5111,15 +5111,15 @@ msgstr "Système indisponible pour cause de maintenance" #: mod/search.php:100 msgid "Only logged in users are permitted to perform a search." -msgstr "" +msgstr "Seuls les utilisateurs inscrits sont autorisés à lancer une recherche." #: mod/search.php:124 msgid "Too Many Requests" -msgstr "" +msgstr "Trop de requêtes" #: mod/search.php:125 msgid "Only one search per minute is permitted for not logged in users." -msgstr "" +msgstr "Une seule recherche par minute pour les utilisateurs qui ne sont pas connectés." #: mod/search.php:136 include/text.php:1003 include/nav.php:118 msgid "Search" @@ -5429,7 +5429,7 @@ msgstr "Votre genre :" #: mod/profiles.php:714 msgid "Birthday :" -msgstr "" +msgstr "Anniversaire :" #: mod/profiles.php:715 msgid "Street Address:" @@ -5794,7 +5794,7 @@ msgstr "" #: mod/repair_ostatus.php:30 msgid "Error" -msgstr "" +msgstr "Erreur" #: mod/invite.php:27 msgid "Total invitation limit exceeded." @@ -6041,7 +6041,7 @@ msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacance #: mod/photos.php:1569 msgid "Do not rotate" -msgstr "" +msgstr "Pas de rotation" #: mod/photos.php:1570 msgid "Rotate CW (right)" @@ -6072,15 +6072,15 @@ msgstr[1] "" #: mod/photos.php:1648 include/conversation.php:509 msgid "Not attending" -msgstr "" +msgstr "Ne participe pas" #: mod/photos.php:1648 include/conversation.php:509 msgid "Might attend" -msgstr "" +msgstr "Participera peut-être" #: mod/photos.php:1813 msgid "Map" -msgstr "" +msgstr "Carte" #: mod/p.php:9 msgid "Not Extended" @@ -6201,15 +6201,15 @@ msgstr "Cette entrée à été édité" #: object/Item.php:191 msgid "I will attend" -msgstr "" +msgstr "Je vais participer" #: object/Item.php:191 msgid "I will not attend" -msgstr "" +msgstr "Je ne vais pas participer" #: object/Item.php:191 msgid "I might attend" -msgstr "" +msgstr "Je vais peut-être participer" #: object/Item.php:230 msgid "ignore thread" @@ -6360,7 +6360,7 @@ msgstr "Possibilité de créer plusieurs profils" #: include/features.php:61 msgid "Photo Location" -msgstr "" +msgstr "Lieu de prise de la photo" #: include/features.php:61 msgid "" @@ -6613,7 +6613,7 @@ msgstr "éditer" #: include/group.php:285 msgid "Edit groups" -msgstr "" +msgstr "Modifier les groupes" #: include/group.php:287 msgid "Edit group" @@ -6633,7 +6633,7 @@ msgstr "Divers" #: include/datetime.php:141 msgid "YYYY-MM-DD or MM-DD" -msgstr "" +msgstr "AAAA-MM-JJ ou MM-JJ" #: include/datetime.php:271 msgid "never" @@ -6712,7 +6712,7 @@ msgstr "Editer le profil" #: include/identity.php:241 msgid "Atom feed" -msgstr "" +msgstr "Flux Atom" #: include/identity.php:246 msgid "Message" @@ -6821,7 +6821,7 @@ msgstr "Études/Formation:" #: include/identity.php:648 msgid "Forums:" -msgstr "" +msgstr "Forums :" #: include/identity.php:701 include/identity.php:704 include/nav.php:78 msgid "Videos" @@ -6842,7 +6842,7 @@ msgstr "Publier aux courriels" #: include/acl_selectors.php:330 #, php-format msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" +msgstr "Les connecteurs sont désactivés parce que \"%s\" est activé." #: include/acl_selectors.php:336 msgid "Visible to everybody" @@ -6915,17 +6915,17 @@ msgstr "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probab #: include/conversation.php:147 #, php-format msgid "%1$s attends %2$s's %3$s" -msgstr "" +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 "" +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 "" +msgstr "%1$s participe peut-être à %3$s de %2$s" #: include/conversation.php:219 #, php-format @@ -6966,17 +6966,17 @@ msgstr "%s n'aime pas ça." #: include/conversation.php:1041 #, php-format msgid "%s attends." -msgstr "" +msgstr "%s participe" #: include/conversation.php:1044 #, php-format msgid "%s doesn't attend." -msgstr "" +msgstr "%s ne participe pas" #: include/conversation.php:1047 #, php-format msgid "%s attends maybe." -msgstr "" +msgstr "%s participe peut-être" #: include/conversation.php:1057 msgid "and" @@ -6995,7 +6995,7 @@ msgstr "%2$d personnes aiment ça" #: include/conversation.php:1073 #, php-format msgid "%s like this." -msgstr "" +msgstr "%s aime ça." #: include/conversation.php:1076 #, php-format @@ -7005,7 +7005,7 @@ msgstr "%2$d personnes n'aiment pas ça" #: include/conversation.php:1077 #, php-format msgid "%s don't like this." -msgstr "" +msgstr "%s n'aiment pas ça." #: include/conversation.php:1080 #, php-format @@ -7015,7 +7015,7 @@ msgstr "" #: include/conversation.php:1081 #, php-format msgid "%s attend." -msgstr "" +msgstr "%s participent." #: include/conversation.php:1084 #, php-format @@ -7025,7 +7025,7 @@ msgstr "" #: include/conversation.php:1085 #, php-format msgid "%s don't attend." -msgstr "" +msgstr "%s ne participent pas." #: include/conversation.php:1088 #, php-format @@ -7035,7 +7035,7 @@ msgstr "" #: include/conversation.php:1089 #, php-format msgid "%s anttend maybe." -msgstr "" +msgstr "%s participent peut-être." #: include/conversation.php:1128 include/conversation.php:1146 msgid "Visible to everybody" @@ -7079,7 +7079,7 @@ msgstr "Message privé" #: include/conversation.php:1386 msgid "View all" -msgstr "" +msgstr "Voir tout" #: include/conversation.php:1408 msgid "Like" @@ -7108,7 +7108,7 @@ msgstr[1] "" #: include/forums.php:105 include/text.php:1015 include/nav.php:126 #: view/theme/vier/theme.php:259 msgid "Forums" -msgstr "" +msgstr "Forums" #: include/forums.php:107 view/theme/vier/theme.php:261 msgid "External link to forum" diff --git a/view/fr/strings.php b/view/fr/strings.php index 6ebfd5dbba..c3c200ff7c 100644 --- a/view/fr/strings.php +++ b/view/fr/strings.php @@ -100,7 +100,7 @@ $a->strings["Profile"] = "Profil"; $a->strings["Profile Details"] = "Détails du profil"; $a->strings["View all contacts"] = "Voir tous les contacts"; $a->strings["Common Friends"] = "Amis communs"; -$a->strings["View all common friends"] = ""; +$a->strings["View all common friends"] = "Voir tous les amis communs"; $a->strings["Repair"] = "Réparer"; $a->strings["Advanced Contact Settings"] = "Réglages avancés du contact"; $a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\""; @@ -189,7 +189,7 @@ $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["Subsribing to OStatus contacts"] = ""; +$a->strings["Subsribing to OStatus contacts"] = "Inscription aux contacts OStatus"; $a->strings["No contact provided."] = "Pas de contact fourni."; $a->strings["Couldn't fetch information for contact."] = "Impossible de récupérer les informations pour ce contact."; $a->strings["Couldn't fetch friends for contact."] = "Impossible de récupérer les amis de ce contact."; @@ -406,7 +406,7 @@ $a->strings["Friend Confirm URL"] = "Accès public refusé."; $a->strings["Notification Endpoint URL"] = "Aucune photo sélectionnée"; $a->strings["Poll/Feed URL"] = "Téléverser des photos"; $a->strings["New photo from this URL"] = "Nouvelle photo depuis cette URL"; -$a->strings["Remote Self"] = ""; +$a->strings["Remote Self"] = "Identité à distance"; $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."] = "Marquer ce contact comme étant remote_self, friendica republiera alors les nouvelles entrées de ce contact."; $a->strings["Login"] = "Connexion"; @@ -619,13 +619,13 @@ $a->strings["Disable picture proxy"] = "Désactiver le proxy image "; $a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "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."; $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["Only search in tags"] = "Rechercher seulement dans les étiquettes"; +$a->strings["On large systems the text search can slow down the system extremely."] = "La recherche textuelle peut ralentir considérablement les systèmes de grande taille."; $a->strings["New base url"] = "Nouvelle URL de base"; -$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = ""; +$a->strings["Change base url for this server. Sends relocate message to all DFRN contacts of all users."] = "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."; $a->strings["RINO Encryption"] = "Chiffrement RINO"; $a->strings["Encryption layer between nodes."] = "Couche de chiffrement entre les nœuds du réseau."; -$a->strings["Embedly API key"] = ""; +$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["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."; @@ -700,7 +700,7 @@ $a->strings["FTP Host"] = "Hôte FTP"; $a->strings["FTP Path"] = "Chemin FTP"; $a->strings["FTP User"] = "Utilisateur FTP"; $a->strings["FTP Password"] = "Mot de passe FTP"; -$a->strings["Search Results For: %s"] = ""; +$a->strings["Search Results For: %s"] = "Résultats de la recherche pour %s"; $a->strings["Remove term"] = "Retirer le terme"; $a->strings["Saved Searches"] = "Recherches"; $a->strings["add"] = "ajouter"; @@ -721,11 +721,11 @@ $a->strings["Warning: This group contains %s member from an insecure network."] ); $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: %s"] = ""; +$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["No friends to display."] = "Pas d'amis à afficher."; -$a->strings["Event can not end before it has started."] = ""; +$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["Sun"] = "Dim"; $a->strings["Mon"] = "Lun"; @@ -994,7 +994,7 @@ $a->strings["Display Settings"] = "Affichage"; $a->strings["Display Theme:"] = "Thème d'affichage:"; $a->strings["Mobile Theme:"] = "Thème mobile:"; $a->strings["Update browser every xx seconds"] = "Mettre-à-jour l'affichage toutes les xx secondes"; -$a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = ""; +$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:"; $a->strings["Maximum of 100 items"] = "Maximum de 100 éléments"; $a->strings["Number of items to display per page when viewed from mobile device:"] = "Nombre d'éléments a afficher par page pour un appareil mobile"; @@ -1003,7 +1003,7 @@ $a->strings["Calendar"] = "Calendrier"; $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"] = ""; +$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["Theme settings"] = "Réglages du thème graphique"; $a->strings["User Types"] = "Types d'utilisateurs"; $a->strings["Community Types"] = "Genre de communautés"; @@ -1139,16 +1139,16 @@ $a->strings["Membership on this site is by invitation only."] = "L'inscription $a->strings["Your invitation ID: "] = "Votre ID d'invitation: "; $a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Votre nom complet (p. ex. Michel Dupont):"; $a->strings["Your Email Address: "] = "Votre adresse courriel: "; -$a->strings["Leave empty for an auto generated password."] = ""; +$a->strings["Leave empty for an auto generated password."] = "Laisser ce champ libre pour obtenir un mot de passe généré automatiquement."; $a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@\$sitename</strong>'."; $a->strings["Choose a nickname: "] = "Choisir un pseudo: "; $a->strings["Register"] = "S'inscrire"; $a->strings["Import"] = "Importer"; $a->strings["Import your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica"; $a->strings["System down for maintenance"] = "Système indisponible pour cause de maintenance"; -$a->strings["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["Only logged in users are permitted to perform a search."] = "Seuls les utilisateurs inscrits sont autorisés à lancer une recherche."; +$a->strings["Too Many Requests"] = "Trop de requêtes"; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Une seule recherche par minute pour les utilisateurs qui ne sont pas connectés."; $a->strings["Search"] = "Recherche"; $a->strings["Items tagged with: %s"] = ""; $a->strings["Search results for: %s"] = ""; @@ -1221,7 +1221,7 @@ $a->strings["Profile Name:"] = "Nom du profil :"; $a->strings["Your Full Name:"] = "Votre nom complet :"; $a->strings["Title/Description:"] = "Titre / Description :"; $a->strings["Your Gender:"] = "Votre genre :"; -$a->strings["Birthday :"] = ""; +$a->strings["Birthday :"] = "Anniversaire :"; $a->strings["Street Address:"] = "Adresse postale :"; $a->strings["Locality/City:"] = "Ville / Localité :"; $a->strings["Postal/Zip Code:"] = "Code postal :"; @@ -1309,7 +1309,7 @@ $a->strings["Recipient"] = "Destinataire"; $a->strings["Choose what you wish to do to recipient"] = "Choisissez ce que vous voulez faire au destinataire"; $a->strings["Make this post private"] = "Rendez ce message privé"; $a->strings["Resubsribing to OStatus contacts"] = ""; -$a->strings["Error"] = ""; +$a->strings["Error"] = "Erreur"; $a->strings["Total invitation limit exceeded."] = "La limite d'invitation totale est éxédée."; $a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide."; $a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica"; @@ -1367,7 +1367,7 @@ $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"] = ""; +$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"; @@ -1377,9 +1377,9 @@ $a->strings["Attending"] = array( 0 => "", 1 => "", ); -$a->strings["Not attending"] = ""; -$a->strings["Might attend"] = ""; -$a->strings["Map"] = ""; +$a->strings["Not attending"] = "Ne participe pas"; +$a->strings["Might attend"] = "Participera peut-être"; +$a->strings["Map"] = "Carte"; $a->strings["Not Extended"] = ""; $a->strings["Account approved."] = "Inscription validée."; $a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s"; @@ -1407,9 +1407,9 @@ $a->strings["terms of service"] = "conditions d'utilisation"; $a->strings["Website Privacy Policy"] = "Politique de confidentialité du site internet"; $a->strings["privacy policy"] = "politique de confidentialité"; $a->strings["This entry was edited"] = "Cette entrée à été édité"; -$a->strings["I will attend"] = ""; -$a->strings["I will not attend"] = ""; -$a->strings["I might attend"] = ""; +$a->strings["I will attend"] = "Je vais participer"; +$a->strings["I will not attend"] = "Je ne vais pas participer"; +$a->strings["I might attend"] = "Je vais peut-être participer"; $a->strings["ignore thread"] = "ignorer le fil"; $a->strings["unignore thread"] = "Ne plus ignorer le fil"; $a->strings["toggle ignore status"] = "Ignorer le statut"; @@ -1448,7 +1448,7 @@ $a->strings["%d contact in common"] = array( $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"] = ""; +$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."] = ""; $a->strings["Post Composition Features"] = "Caractéristiques de composition de publication"; $a->strings["Richtext Editor"] = "Éditeur de texte enrichi"; @@ -1508,12 +1508,12 @@ $a->strings["A deleted group with this name was revived. Existing item permissio $a->strings["Default privacy group for new contacts"] = "Paramètres de confidentialité par défaut pour les nouveaux contacts"; $a->strings["Everybody"] = "Tout le monde"; $a->strings["edit"] = "éditer"; -$a->strings["Edit groups"] = ""; +$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["Contacts not in any group"] = "Contacts n'appartenant à aucun groupe"; $a->strings["Miscellaneous"] = "Divers"; -$a->strings["YYYY-MM-DD or MM-DD"] = ""; +$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"; @@ -1532,7 +1532,7 @@ $a->strings["%s's birthday"] = "Anniversaire de %s's"; $a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !"; $a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible."; $a->strings["Edit profile"] = "Editer le profil"; -$a->strings["Atom feed"] = ""; +$a->strings["Atom feed"] = "Flux Atom"; $a->strings["Message"] = "Message"; $a->strings["Profiles"] = "Profils"; $a->strings["Manage/edit profiles"] = "Gérer/éditer les profils"; @@ -1559,12 +1559,12 @@ $a->strings["Film/dance/culture/entertainment:"] = "Cinéma/Danse/Culture/Divert $a->strings["Love/Romance:"] = "Amour/Romance:"; $a->strings["Work/employment:"] = "Activité professionnelle/Occupation:"; $a->strings["School/education:"] = "Études/Formation:"; -$a->strings["Forums:"] = ""; +$a->strings["Forums:"] = "Forums :"; $a->strings["Videos"] = "Vidéos"; $a->strings["Events and Calendar"] = "Événements et agenda"; $a->strings["Only You Can See This"] = "Vous seul pouvez voir ça"; $a->strings["Post to Email"] = "Publier aux courriels"; -$a->strings["Connectors disabled, since \"%s\" is enabled."] = ""; +$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Les connecteurs sont désactivés parce que \"%s\" est activé."; $a->strings["Visible to everybody"] = "Visible par tout le monde"; $a->strings["show"] = "montrer"; $a->strings["don't show"] = "cacher"; @@ -1581,9 +1581,9 @@ $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["%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 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 poked %2\$s"] = "%1\$s a sollicité %2\$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"; @@ -1592,21 +1592,21 @@ $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."] = ""; -$a->strings["%s doesn't attend."] = ""; -$a->strings["%s attends maybe."] = ""; +$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."] = ""; +$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."] = ""; +$a->strings["%s don't like this."] = "%s n'aiment pas ça."; $a->strings["%2\$d people attend"] = ""; -$a->strings["%s attend."] = ""; +$a->strings["%s attend."] = "%s participent."; $a->strings["%2\$d people don't attend"] = ""; -$a->strings["%s don't attend."] = ""; +$a->strings["%s don't attend."] = "%s ne participent pas."; $a->strings["%2\$d people anttend maybe"] = ""; -$a->strings["%s anttend maybe."] = ""; +$a->strings["%s anttend maybe."] = "%s participent peut-être."; $a->strings["Visible to everybody"] = "Visible par tout le monde"; $a->strings["Please enter a video link/URL:"] = "Entrez un lien/URL video :"; $a->strings["Please enter an audio link/URL:"] = "Entrez un lien/URL audio :"; @@ -1617,7 +1617,7 @@ $a->strings["permissions"] = "permissions"; $a->strings["Post to Groups"] = "Publier aux groupes"; $a->strings["Post to Contacts"] = "Publier aux contacts"; $a->strings["Private post"] = "Message privé"; -$a->strings["View all"] = ""; +$a->strings["View all"] = "Voir tout"; $a->strings["Like"] = array( 0 => "", 1 => "", @@ -1634,7 +1634,7 @@ $a->strings["Undecided"] = array( 0 => "", 1 => "", ); -$a->strings["Forums"] = ""; +$a->strings["Forums"] = "Forums"; $a->strings["External link to forum"] = ""; $a->strings["view full size"] = "voir en pleine taille"; $a->strings["newer"] = "Plus récent"; From b79d98aea5519f651c3db55ae9b9148e69946102 Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Mon, 21 Dec 2015 09:43:10 +0100 Subject: [PATCH 438/443] quattro: fix PM aside template errors was raised with new "show message list in aside" patch --- view/theme/quattro/dark/style.css | 54 ++++++++++++++++- view/theme/quattro/green/style.css | 54 ++++++++++++++++- view/theme/quattro/lilac/style.css | 60 +++++++++++++++++-- view/theme/quattro/quattro.less | 20 ++++++- view/theme/quattro/templates/message_side.tpl | 14 ++--- 5 files changed, 188 insertions(+), 14 deletions(-) diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index bb255fa460..c5f695679e 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -463,7 +463,7 @@ a:hover { text-decoration: underline; } blockquote { - background: #FFFFFF; + background: #ffffff; padding: 1em; margin-left: 1em; border-left: 1em solid #e6e6e6; @@ -544,6 +544,7 @@ header { margin: 0; padding: 0; /*width: 100%; height: 12px; */ + z-index: 110; color: #ffffff; } @@ -921,6 +922,7 @@ aside .posted-date-selector-months { overflow: auto; height: auto; /*.contact-block-div { width:60px; height: 60px; }*/ + } #contact-block .contact-block-h4 { float: left; @@ -1002,6 +1004,7 @@ aside .posted-date-selector-months { margin-bottom: 2em; /*.action .s10 { width: 10px; overflow: hidden; padding: 0;} .action .s16 { width: 16px; overflow: hidden; padding: 0;}*/ + } .widget h3 { padding: 0; @@ -1305,6 +1308,7 @@ section { height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ + } .comment-edit-preview .contact-photo-menu-button { top: 15px !important; @@ -2221,6 +2225,7 @@ ul.tabs li .active { min-height: 22px; padding-top: 6px; /* a { display: block;}*/ + } #photo-caption { display: block; @@ -2344,6 +2349,53 @@ ul.tabs li .active { .mail-list-wrapper .mail-delete { float: right; } +#message-preview { + margin-top: 1em; + box-sizing: border-box; +} +#message-preview * { + box-sizing: border-box; + white-space: nowrap; +} +#message-preview .mail-list-wrapper .mail-subject { + width: 100%; +} +#message-preview .mail-list-wrapper .mail-date { + font-size: 0.8em; + width: 25%; + text-align: right; +} +#message-preview .mail-list-wrapper .mail-from { + font-size: 0.8em; + width: 75%; +} +#message-preview .mail-list-wrapper .mail-count { + font-size: 0.8em; + width: 100%; +} +#message-preview .mail-list-wrapper .mail-delete { + display: none; +} +#message-preview .mail-list-wrapper .mail-date, +#message-preview .mail-list-wrapper .mail-from, +#message-preview .mail-list-wrapper .mail-count { + opacity: 0.5; + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + -ms-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} +#message-preview .mail-list-wrapper:hover .mail-date, +#message-preview .mail-list-wrapper:hover .mail-from, +#message-preview .mail-list-wrapper:hover .mail-count { + opacity: 1; + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + -ms-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} #mail-display-subject { background-color: #f6f7f8; color: #2d2d2d; diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index 6f68a9598f..aaca41312b 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -463,7 +463,7 @@ a:hover { text-decoration: underline; } blockquote { - background: #FFFFFF; + background: #ffffff; padding: 1em; margin-left: 1em; border-left: 1em solid #e6e6e6; @@ -544,6 +544,7 @@ header { margin: 0; padding: 0; /*width: 100%; height: 12px; */ + z-index: 110; color: #ffffff; } @@ -921,6 +922,7 @@ aside .posted-date-selector-months { overflow: auto; height: auto; /*.contact-block-div { width:60px; height: 60px; }*/ + } #contact-block .contact-block-h4 { float: left; @@ -1002,6 +1004,7 @@ aside .posted-date-selector-months { margin-bottom: 2em; /*.action .s10 { width: 10px; overflow: hidden; padding: 0;} .action .s16 { width: 16px; overflow: hidden; padding: 0;}*/ + } .widget h3 { padding: 0; @@ -1305,6 +1308,7 @@ section { height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ + } .comment-edit-preview .contact-photo-menu-button { top: 15px !important; @@ -2221,6 +2225,7 @@ ul.tabs li .active { min-height: 22px; padding-top: 6px; /* a { display: block;}*/ + } #photo-caption { display: block; @@ -2344,6 +2349,53 @@ ul.tabs li .active { .mail-list-wrapper .mail-delete { float: right; } +#message-preview { + margin-top: 1em; + box-sizing: border-box; +} +#message-preview * { + box-sizing: border-box; + white-space: nowrap; +} +#message-preview .mail-list-wrapper .mail-subject { + width: 100%; +} +#message-preview .mail-list-wrapper .mail-date { + font-size: 0.8em; + width: 25%; + text-align: right; +} +#message-preview .mail-list-wrapper .mail-from { + font-size: 0.8em; + width: 75%; +} +#message-preview .mail-list-wrapper .mail-count { + font-size: 0.8em; + width: 100%; +} +#message-preview .mail-list-wrapper .mail-delete { + display: none; +} +#message-preview .mail-list-wrapper .mail-date, +#message-preview .mail-list-wrapper .mail-from, +#message-preview .mail-list-wrapper .mail-count { + opacity: 0.5; + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + -ms-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} +#message-preview .mail-list-wrapper:hover .mail-date, +#message-preview .mail-list-wrapper:hover .mail-from, +#message-preview .mail-list-wrapper:hover .mail-count { + opacity: 1; + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + -ms-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} #mail-display-subject { background-color: #f6f7f8; color: #2d2d2d; diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index f6093c5c22..5801644952 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -420,7 +420,7 @@ body { font-family: Liberation Sans, helvetica, arial, clean, sans-serif; font-size: 11px; - background-color: #F6ECF9; + background-color: #f6ecf9; color: #2d2d2d; margin: 50px 0 0 0; display: table; @@ -463,7 +463,7 @@ a:hover { text-decoration: underline; } blockquote { - background: #FFFFFF; + background: #ffffff; padding: 1em; margin-left: 1em; border-left: 1em solid #e6e6e6; @@ -544,6 +544,7 @@ header { margin: 0; padding: 0; /*width: 100%; height: 12px; */ + z-index: 110; color: #ffffff; } @@ -921,6 +922,7 @@ aside .posted-date-selector-months { overflow: auto; height: auto; /*.contact-block-div { width:60px; height: 60px; }*/ + } #contact-block .contact-block-h4 { float: left; @@ -1002,6 +1004,7 @@ aside .posted-date-selector-months { margin-bottom: 2em; /*.action .s10 { width: 10px; overflow: hidden; padding: 0;} .action .s16 { width: 16px; overflow: hidden; padding: 0;}*/ + } .widget h3 { padding: 0; @@ -1305,6 +1308,7 @@ section { height: 32px; margin-left: 16px; /*background: url(../../../images/icons/22/user.png) no-repeat center center;*/ + } .comment-edit-preview .contact-photo-menu-button { top: 15px !important; @@ -1749,7 +1753,7 @@ span[id^="showmore-wrap"] { height: 20px; width: 500px; font-weight: bold; - border: 1px solid #F6ECF9; + border: 1px solid #f6ecf9; } #jot #jot-title:-webkit-input-placeholder { font-weight: normal; @@ -1776,7 +1780,7 @@ span[id^="showmore-wrap"] { margin: 0; height: 20px; width: 200px; - border: 1px solid #F6ECF9; + border: 1px solid #f6ecf9; } #jot #jot-category:hover { border: 1px solid #999999; @@ -2221,6 +2225,7 @@ ul.tabs li .active { min-height: 22px; padding-top: 6px; /* a { display: block;}*/ + } #photo-caption { display: block; @@ -2344,6 +2349,53 @@ ul.tabs li .active { .mail-list-wrapper .mail-delete { float: right; } +#message-preview { + margin-top: 1em; + box-sizing: border-box; +} +#message-preview * { + box-sizing: border-box; + white-space: nowrap; +} +#message-preview .mail-list-wrapper .mail-subject { + width: 100%; +} +#message-preview .mail-list-wrapper .mail-date { + font-size: 0.8em; + width: 25%; + text-align: right; +} +#message-preview .mail-list-wrapper .mail-from { + font-size: 0.8em; + width: 75%; +} +#message-preview .mail-list-wrapper .mail-count { + font-size: 0.8em; + width: 100%; +} +#message-preview .mail-list-wrapper .mail-delete { + display: none; +} +#message-preview .mail-list-wrapper .mail-date, +#message-preview .mail-list-wrapper .mail-from, +#message-preview .mail-list-wrapper .mail-count { + opacity: 0.5; + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + -ms-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} +#message-preview .mail-list-wrapper:hover .mail-date, +#message-preview .mail-list-wrapper:hover .mail-from, +#message-preview .mail-list-wrapper:hover .mail-count { + opacity: 1; + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + -ms-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} #mail-display-subject { background-color: #f6f7f8; color: #2d2d2d; diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index 631a63333a..abbf447cbb 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -1599,6 +1599,25 @@ ul.tabs { .mail-delete { float: right; } } +#message-preview { + margin-top: 1em; + box-sizing: border-box; + * { box-sizing: border-box; white-space: nowrap;} + .mail-list-wrapper { + .mail-subject { + width: 100%; + } + .mail-date { font-size: 0.8em; width: 25%; text-align: right} + .mail-from { font-size: 0.8em; width: 75%;} + .mail-count { font-size: 0.8em; width: 100%;} + .mail-delete { display: none;} + + & .mail-date, & .mail-from, & .mail-count { .opaque(0.5); } + &:hover .mail-date, &:hover .mail-from, &:hover .mail-count { .opaque(1); } + } +} + + #mail-display-subject { background-color: @MailDisplaySubjectBackgroundColor; color: @MailDisplaySubjectColor; @@ -1816,4 +1835,3 @@ footer { height: 100px; display: table-row; } .fbrowser.file p { display: inline; white-space: nowrap; } .fbrowser .upload { clear: both; padding-top: 1em;} - diff --git a/view/theme/quattro/templates/message_side.tpl b/view/theme/quattro/templates/message_side.tpl index 084099c548..bd32f74335 100644 --- a/view/theme/quattro/templates/message_side.tpl +++ b/view/theme/quattro/templates/message_side.tpl @@ -1,10 +1,10 @@
    - - - + + {{if $tabs}} +
    + {{$tabs}} +
    + {{/if}} +
    From bb7330cf2e21f3f2ef6de134ad9789e5fa755cf4 Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Mon, 21 Dec 2015 15:51:21 +0100 Subject: [PATCH 439/443] Update CHANGELOG --- CHANGELOG | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 80 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 5b51a5511f..eb4aca286f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,85 @@ +Version 3.4.3 + What's new for the users: + Updates to the documentation (silke, tobiasd, annando, rebeka-catalina) + Updated translations (tobiasd & translation teams) + New "Credits" page (tobiasd) + New custom font icon set (tobiasd, Andi Stadler) + Support to events attendance. Users can mark their participation to an event (rabuzarus, tobiasd, fabrixxm, annando) + Revised templates and used interaction in contacts lists (rabuzarus) + Mobile support for Vier theme (annando, fabrixxm) + Events editing and deletion from stream (annado) + Private forums are mentioned automatically like community forums (rabuzarus) + Show profile pictures and pending notifications on manage page (rabuzarus, annando) + Show Profile photo album only to owner and authenticated contacts (rabuzarus) + User language setting is now between settings in user settings page (fabrixxm) + Search for remote users in form of "@user@domain.tld" is supported (issue #1595) (annando) + Optionally show geo informations of uploaded photos, backport from Red (rabuzarus) + Setting for the first day of the week for events calendar (annando) + Reduced profile view with "show more" link (annando) + Show more informations to users when following a new contact (annando) + Renamed "Statusnet" to "GNU Social" (annando) + Image dialog insert link to image page instead of direct image (fabrixxm) + In registration page make clear that we only need a 'real-looking' name (issue #1898) (tobiasd, n4rky) + Unseen items per groups are shown (issue #1718) (strk, rabuzarus, fabrixxm) + Unseen items in forumlist widget (rabuzarus) + Preview the last five conversations in private message's sidebar (FlxAlbroscheit, fabrixxm) + Don't get notifications about own posts (strk) + Profile page shows a "Subscribe to atom feed" link (annando) + Contact list shows only contacts from supported networks (ananndo) + username@hostname is used instead of full urls (issue #1925) (annando) + Various small OStatus improvements (annando) + Contact's posts are shown in a dedicated page (annando) + Module name is shown in page title to ease browser history navigation (issue #2079) (tobiasd) + What's new for admins: + Forumlist functionality moved from plugin to core (rabuzarus, annando) + Changes on poller/workers limits management (annando) + Diaspora and OStatus can be enabled only if requirements are satisfied (annando) + Support for additional passwords for ejabberd (annando) + Use proxy for profile photos (annando) + 'Reload active themes' in theme admin page (fabrixxm) + Install routine checks for ImageMagick and GIF support (fabrixxm) + Install routine checks for availability of "mcrypt_create_iv()" function, needed for RINO2 (fabrixxm) + Only suported themes are shown in admin page (annando) + Optimized SQL queries (annando) + System optionally perform an optimize pass on tables in cron, with maximum table size and minimum fragmentation level settings (annando) + New access keys in profile and contact pages (rabuzarus, annando) + Support for a new Diaspora command for post retraction (annando) + Show an info message if an empty contact group is shown (issue #1871) (annando) + User setting to disable network page autoupdate (issue #1921) (annando) + Settings to limit or permit access to crawler to search page (annando) + What's new for developers: + Themes can show Events entry in navbar (annando) + Themes can now override colorbox (fabrixxm) + Updated Vagrant development VM (silke, hauke) + New hook 'template_vars' (fabrixxm) + $baseurl variable is passed to all templates by default (fabrixxm) + OStatus delivery code is moved in new function (annando) + Doxygen config file and initial documetation of code (rabuzarus) + Full rewrite of util/php2po.php (fabrixxm) + Bugfixs: + Remote self works again (annando) + Fix feeds mistakenly recognized as OStatus (issue #1914) (annando) + Report invalid feeds to user (issue #1913) (annando) + Fix Update contact data functionality (annando) + Fix proxy function with embedded images (annando) + Fix Diaspora unidirectional connect request (annando) + Fix empty poco response (annando) + Fix API for andStatus (issue#1427, AndStatus issue #241) (annando) + Fix expiration of items (fabrixxm) + Fix javascript contact deletion confirmation dialog (issue #1986) (fabrixxm) + Admin wasn't able to change settings of not currently in use themes. Fixed (issue #2022) (fabrixxm) + Fix rapid repeated requests to GNUSocial instance (issue #2038) (annando) + Fix install routine css when mod_rewrite doesn't works (issue #2071) (fabrixxm) + Fix code to be compliant with minimum required PHP version (issue #2066) (fabrixxm, rabuzarus) + Fix feedback after succesfull registration (issue #2060) (annando) + Fix mention completition popup with TinyMCE (issue #1920) (fabrixxm) + Fix photo cache and proxy when installed in subfolder (ddorian1) + Fix bbcode conversion of the about text for the profile (issue #1607) (annando) + + Version 3.4.2 - Updates to the documentation (tobias, silke, annando) + Updates to the documentation (tobiasd, silke, annando) Updates to the translations (tobiasd & translation teams) Updates to themes frost-mobile, vier, duepuntozero, quattro (annando, tobiasd) Enancements of the communications via OStatus and Diaspora protocols (annando) From d4dd863b4b0b75c34a40300737b4892e7a88be20 Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Mon, 21 Dec 2015 16:19:56 +0100 Subject: [PATCH 440/443] quattro: style managed unread notification --- view/theme/quattro/dark/style.css | 16 ++++++++++++++++ view/theme/quattro/green/style.css | 16 ++++++++++++++++ view/theme/quattro/lilac/style.css | 16 ++++++++++++++++ view/theme/quattro/quattro.less | 18 ++++++++++++++++++ 4 files changed, 66 insertions(+) diff --git a/view/theme/quattro/dark/style.css b/view/theme/quattro/dark/style.css index c5f695679e..1b021687cd 100644 --- a/view/theme/quattro/dark/style.css +++ b/view/theme/quattro/dark/style.css @@ -2113,6 +2113,22 @@ ul.tabs li .active { width: 50px; float: left; } +/* manage page */ +.identity-match-photo { + position: relative; +} +.identity-match-photo .manage-notify { + background-color: #19AEFF; + border-radius: 5px; + font-size: 10px; + padding: 1px 3px; + min-width: 15px; + text-align: right; + position: absolute; + right: 10px; + top: -5px; + color: #ffffff; +} /* videos page */ .videos .video-top-wrapper { width: 200px; diff --git a/view/theme/quattro/green/style.css b/view/theme/quattro/green/style.css index aaca41312b..4c50fb35fa 100644 --- a/view/theme/quattro/green/style.css +++ b/view/theme/quattro/green/style.css @@ -2113,6 +2113,22 @@ ul.tabs li .active { width: 50px; float: left; } +/* manage page */ +.identity-match-photo { + position: relative; +} +.identity-match-photo .manage-notify { + background-color: #19AEFF; + border-radius: 5px; + font-size: 10px; + padding: 1px 3px; + min-width: 15px; + text-align: right; + position: absolute; + right: 10px; + top: -5px; + color: #ffffff; +} /* videos page */ .videos .video-top-wrapper { width: 200px; diff --git a/view/theme/quattro/lilac/style.css b/view/theme/quattro/lilac/style.css index 5801644952..7fb505dec5 100644 --- a/view/theme/quattro/lilac/style.css +++ b/view/theme/quattro/lilac/style.css @@ -2113,6 +2113,22 @@ ul.tabs li .active { width: 50px; float: left; } +/* manage page */ +.identity-match-photo { + position: relative; +} +.identity-match-photo .manage-notify { + background-color: #19AEFF; + border-radius: 5px; + font-size: 10px; + padding: 1px 3px; + min-width: 15px; + text-align: right; + position: absolute; + right: 10px; + top: -5px; + color: #ffffff; +} /* videos page */ .videos .video-top-wrapper { width: 200px; diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index abbf447cbb..d47263b500 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -1404,6 +1404,24 @@ ul.tabs { width: 50px; float: left; } +/* manage page */ +.identity-match-photo { + position: relative; + .manage-notify { + background-color: #19AEFF; + border-radius: 5px; + font-size: 10px; + padding: 1px 3px; + min-width: 15px; + text-align: right; + position: absolute; + right: 10px; + top: -5px; + color: rgb(255, 255, 255); + } +} + + /* videos page */ .videos { .video-top-wrapper { From 770bba021e57b97fee07e0c3b75f5564141ab4de Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Mon, 21 Dec 2015 16:41:55 +0100 Subject: [PATCH 441/443] call resizeIframe() function until size is stable (iframe content finished to load, hopefully) should remove scrollbars on rich oembeds --- js/main.js | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/js/main.js b/js/main.js index f67d7183ce..f106b3daf4 100644 --- a/js/main.js +++ b/js/main.js @@ -1,6 +1,21 @@ function resizeIframe(obj) { obj.style.height = 0; - obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px'; + _resizeIframe(obj, 0); + } + + function _resizeIframe(obj, desth) { + var h = obj.style.height; + var ch = obj.contentWindow.document.body.scrollHeight + 'px'; + if (h==ch) { + return; + } + console.log("_resizeIframe", obj, desth, ch); + if (desth!=ch) { + setTimeout(_resizeIframe, 500, obj, ch); + } else { + obj.style.height = ch; + setTimeout(_resizeIframe, 1000, obj, ch); + } } function openClose(theID) { From 156be7a17b5377ed1460060a9b39e7763b8e7a26 Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Tue, 22 Dec 2015 09:08:53 +0100 Subject: [PATCH 442/443] Update CHANGELOG --- CHANGELOG | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index eb4aca286f..b393899df8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -7,7 +7,7 @@ Version 3.4.3 Support to events attendance. Users can mark their participation to an event (rabuzarus, tobiasd, fabrixxm, annando) Revised templates and used interaction in contacts lists (rabuzarus) Mobile support for Vier theme (annando, fabrixxm) - Events editing and deletion from stream (annado) + Events editing and deletion from stream (annando) Private forums are mentioned automatically like community forums (rabuzarus) Show profile pictures and pending notifications on manage page (rabuzarus, annando) Show Profile photo album only to owner and authenticated contacts (rabuzarus) @@ -41,7 +41,7 @@ Version 3.4.3 Install routine checks for availability of "mcrypt_create_iv()" function, needed for RINO2 (fabrixxm) Only suported themes are shown in admin page (annando) Optimized SQL queries (annando) - System optionally perform an optimize pass on tables in cron, with maximum table size and minimum fragmentation level settings (annando) + System perform an optimize pass on tables in cron, with maximum table size and minimum fragmentation level settings (annando) New access keys in profile and contact pages (rabuzarus, annando) Support for a new Diaspora command for post retraction (annando) Show an info message if an empty contact group is shown (issue #1871) (annando) From 21f044e30569f6688ebd1e900cb11d6081e94b51 Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Tue, 22 Dec 2015 10:45:43 +0100 Subject: [PATCH 443/443] Friendica 3.4.3 --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index cc56949009..af40027b0d 100644 --- a/boot.php +++ b/boot.php @@ -17,7 +17,7 @@ require_once('include/dbstructure.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Lily of the valley'); -define ( 'FRIENDICA_VERSION', '3.4.3-rc' ); +define ( 'FRIENDICA_VERSION', '3.4.3' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DB_UPDATE_VERSION', 1191 ); define ( 'EOL', "
    \r\n" );